:root {
    --bg-color: #050505;
    --card-bg: #0f0f0f;
    --text-main: #e0e0e0;
    --text-muted: #888;
    --accent-red: #8a0303;
    --accent-red-hover: #b30404;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Texture/Grain Overlay (Optional) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 9999;
}

/* Typography & Layout */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-red);
}

.site-header {
    padding: 2rem;
    text-align: center;
    position: sticky;
    top: 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(5px);
    z-index: 100;
}

.wordmark {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(138, 3, 3, 0.3));
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    display: inline-block;
    color: var(--accent-red);
}

/* Hero */
#hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    max-width: 350px;
    /* Increased to make it distinctly bigger */
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(138, 3, 3, 0.5));
}

.wordmark-hero {
    max-width: 160px;
    /* Decreased size */
    width: auto;
    /* Let natural aspect ratio rule, constrained by max-width */
    height: auto;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* Removed padding, relying on image whitespace */
    object-fit: contain;
}

.hero-buttons button {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    padding: 10px 30px;
    margin: 0 10px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-buttons button:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 0 15px rgba(138, 3, 3, 0.5);
}

/* Singles Grid */
#singles {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.singles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.single-card {
    background: var(--card-bg);
    border: 1px solid #222;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.single-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.single-card img {
    width: 100%;
    display: block;
    /* Removed grayscale filter as requested */
    transition: transform 0.3s;
    /* Keeping transform transition */
}



.single-info {
    padding: 1rem;
    text-align: center;
}

.single-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Lyrics Section */
#lyrics {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lyrics-list {
    list-style: none;
    padding: 0;
}

.lyrics-list li {
    margin: 1rem 0;
}

.lyrics-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: color 0.3s, letter-spacing 0.3s;
}

.lyrics-btn:hover {
    color: var(--accent-red);
    letter-spacing: 2px;
}

/* Footer */
footer {
    padding: 3rem;
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.socials {
    margin-bottom: 1rem;
}

.social-link {
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Modals */
.hidden {
    display: none !important;
}

#modal-overlay,
#lyrics-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s;
}

.modal-content,
.lyrics-modal-content {
    background: #111;
    border: 1px solid #333;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    /* Slightly reduced to ensure it fits comfortably */
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    text-align: center;
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) #111;
}

/* Webkit Scrollbar Styling */
.modal-content::-webkit-scrollbar,
.lyrics-modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track,
.lyrics-modal-content::-webkit-scrollbar-track {
    background: #111;
}

.modal-content::-webkit-scrollbar-thumb,
.lyrics-modal-content::-webkit-scrollbar-thumb {
    background-color: var(--accent-red);
    border-radius: 4px;
}

.lyrics-modal-content {
    max-width: 800px;
    text-align: left;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.modal-cover {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-link {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #444;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-link:hover {
    border-color: var(--accent-red);
    background: var(--accent-red);
    color: #fff;
}

#lyrics-title {
    font-family: var(--font-heading);
    color: var(--accent-red);
    margin-bottom: 2rem;
    text-align: center;
}

#lyrics-body {
    white-space: pre-wrap;
    font-family: var(--font-body);
    line-height: 1.8;
    color: #ddd;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .singles-grid {
        grid-template-columns: 1fr;
    }
}