/* ===================================
   Gravel & Dust Records
   Premium Stylesheet
   =================================== */

/* CSS Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: rgba(20, 20, 20, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.03);

    --accent: #c4702a;
    --accent-light: #e8934a;
    --accent-glow: rgba(196, 112, 42, 0.4);
    --accent-subtle: rgba(196, 112, 42, 0.1);

    --text-primary: #f5f5f0;
    --text-secondary: #b0b0a8;
    --text-muted: #606060;
    --text-dim: #404040;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(196, 112, 42, 0.3);

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

    --container-width: 1200px;
    --section-padding: 120px 0;
    --card-radius: 12px;
    --radius-sm: 6px;
    --radius-lg: 16px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* Film Grain Overlay - Refined */
.grain-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2%, -4%); }
    20% { transform: translate(-6%, 2%); }
    30% { transform: translate(3%, -10%); }
    40% { transform: translate(-2%, 10%); }
    50% { transform: translate(-6%, 4%); }
    60% { transform: translate(6%, 0%); }
    70% { transform: translate(0%, 6%); }
    80% { transform: translate(1%, 14%); }
    90% { transform: translate(-4%, 4%); }
}

/* ===================================
   Navigation - Premium
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-expo);
    transform: translateY(-100%);
    opacity: 0;
}

.nav.visible {
    transform: translateY(0);
    opacity: 1;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: var(--accent-light);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

@media (max-width: 600px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.65rem;
    }

    .nav-container {
        padding: 0 20px;
    }
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
}

/* Section Title - Premium */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 64px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    border-radius: 2px;
}

/* ===================================
   Hero Section - Premium
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #e8e6e1;
    overflow: hidden;
}

/* Ambient background glow */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-subtle) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

/* Subtle grid pattern */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
}

/* Hero Background Slideshow */
.hero-bg {
    display: none;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0;
    filter: blur(8px) brightness(0.3);
    animation: heroSlide 18s infinite;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 6s;
}

.hero-slide:nth-child(3) {
    animation-delay: 12s;
}

@keyframes heroSlide {
    0% { opacity: 0; }
    5% { opacity: 1; }
    33.33% { opacity: 1; }
    38.33% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-content {
    text-align: center;
    padding: 24px;
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: min(550px, 85vw);
    height: auto;
    margin-bottom: 40px;
    animation: logoFloat 6s ease-in-out infinite;
    transition: transform 0.4s var(--ease-out-expo);
}

.hero-logo:hover {
    transform: scale(1.02) translateY(-4px);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.tagline {
    font-family: var(--font-mono);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #333;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 0.5s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #666;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.scroll-indicator span {
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1s forwards;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #999, transparent);
    position: relative;
    overflow: hidden;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--accent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { transform: translateY(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(40px); opacity: 0; }
}

/* Hero Social Links */
.hero-social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1.2s forwards;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #333;
    transition: all 0.3s var(--ease-out-expo);
}

.hero-social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-out-expo);
}

.hero-social-link:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #a35d22 100%);
    border-color: var(--accent);
    color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(196, 112, 42, 0.3);
}

.hero-social-link:hover svg {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .hero-social-links {
        gap: 12px;
    }

    .hero-social-link {
        width: 40px;
        height: 40px;
    }

    .hero-social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* ===================================
   About Section - Premium
   =================================== */
.about {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.about-content {
    max-width: 800px;
}

.about-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0 0 24px 0;
}

.about-subline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 16px 0;
}

.about-tagline {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin: 0 0 50px 0;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin: 0;
}

.about-social {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.about-social .social-link {
    width: 44px;
    height: 44px;
}

@media (max-width: 600px) {
    .about-social {
        flex-wrap: wrap;
    }
}

.about-social {
    display: flex;
    gap: 16px;
    margin-top: 50px;
}

.about-social .social-link {
    width: 48px;
    height: 48px;
}

@media (max-width: 600px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-social {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===================================
   Lyrics Section
   =================================== */
.lyrics-section {
    padding: 100px 24px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.lyrics-section::before {
    content: '"';
    position: absolute;
    top: -40px;
    right: 5%;
    font-family: var(--font-heading);
    font-size: 40rem;
    color: var(--accent);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
}

.lyrics-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 80px;
}

.lyric-item {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    position: relative;
}

.lyric-item cite {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    font-style: normal;
    margin-top: 12px;
    text-transform: uppercase;
}

.lyric-large {
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--text-primary);
    text-align: left;
    letter-spacing: -0.01em;
}

.lyric-medium {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-secondary);
    text-align: right;
    padding-left: 20%;
}

.lyric-accent {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    color: var(--accent);
    text-align: center;
    letter-spacing: 0.02em;
}

.lyric-small {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    text-align: left;
    padding-right: 30%;
}

/* Staggered scroll animations */
.lyric-item.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lyric-item:nth-child(1) { transition-delay: 0s; }
.lyric-item:nth-child(2) { transition-delay: 0.15s; }
.lyric-item:nth-child(3) { transition-delay: 0.3s; }
.lyric-item:nth-child(4) { transition-delay: 0.45s; }

.lyric-item.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.lyric-small.visible {
    opacity: 0.8;
}

@media (max-width: 600px) {
    .lyrics-section {
        padding: 60px 20px;
    }

    .lyrics-grid {
        gap: 60px;
    }

    .lyric-medium {
        padding-left: 0;
        text-align: left;
    }

    .lyric-small {
        padding-right: 0;
    }
}

/* ===================================
   Artist Showcase - Domestic Disturbance
   =================================== */
.artist-showcase {
    background-color: var(--bg-primary);
}

/* Full-width Image Banner */
.artist-image-banner {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
}

.artist-image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.artist-image-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
    pointer-events: none;
}

/* Artist Content */
.artist-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--content-padding) 80px;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.artist-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.dd-logo {
    max-width: 380px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.genre-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    padding: 8px 16px;
    border: 1px solid var(--border-accent);
    border-radius: 2px;
}

.artist-bio {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.bio-lead {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.bio-statement {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.bio-examples {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.bio-examples span {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    padding: 8px 0;
    position: relative;
}

.bio-examples span:not(:last-child)::after {
    content: '/';
    position: absolute;
    right: -16px;
    color: var(--border-subtle);
}

/* Member Cards */
.members-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.member-card {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out-expo);
}

.member-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.member-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    margin-bottom: 24px;
    border: 3px solid var(--border-subtle);
    transition: all 0.4s var(--ease-out-expo);
}

.member-card:hover img {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.member-card h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.member-role {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.member-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.member-desc .accent {
    color: var(--text-primary);
    font-weight: 400;
}

@media (max-width: 900px) {
    .artist-image-banner {
        height: 50vh;
    }

    .artist-content {
        margin-top: -60px;
    }

    .members-row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .artist-image-banner {
        height: 45vh;
    }

    .dd-logo {
        max-width: 280px;
    }

    .artist-bio {
        font-size: 1rem;
    }

    .member-card img {
        width: 150px;
        height: 150px;
    }
}

/* ===================================
   Behind the Scenes Section
   =================================== */
.behind-the-scenes {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
}

.bts-intro {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 48px;
}

.bts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 900px) {
    .bts-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 400px;
        margin: 0 auto;
    }
}

.bts-card {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease-out-expo);
}

.bts-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px var(--accent-glow);
}

.bts-image-wrapper {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.bts-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s var(--ease-out-expo);
}

.bts-card:hover .bts-image-wrapper img {
    transform: scale(1.05);
}

.bts-caption {
    padding: 20px 24px;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-subtle);
}

.bts-caption p {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.bts-card:hover .bts-caption p {
    color: var(--text-primary);
}

/* ===================================
   Releases Section - Premium
   =================================== */
.releases {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 900px) {
    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 500px) {
    .releases-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }
}

.release-card {
    position: relative;
    display: block;
    border-radius: var(--card-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s var(--ease-out-expo);
}

.release-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 50%, transparent 50%, var(--accent) 100%);
    border-radius: calc(var(--card-radius) + 2px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.release-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px var(--accent-glow);
}

.release-card:hover::before {
    opacity: 0.6;
}

.release-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.release-card:hover img {
    transform: scale(1.08);
}

.release-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
}

.release-card:hover .release-overlay {
    opacity: 1;
}

.release-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    transform: translateY(10px);
    transition: transform 0.4s var(--ease-out-expo);
}

.release-card:hover .release-title {
    transform: translateY(0);
}

.release-artist {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    margin-top: 6px;
    text-transform: uppercase;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s var(--ease-out-expo) 0.05s;
}

.release-card:hover .release-artist {
    transform: translateY(0);
    opacity: 1;
}

/* Release Platform Links */
.release-links {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 16px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
}

.release-card:hover .release-links {
    opacity: 1;
}

.release-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out-expo);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(10px);
}

.release-card:hover .release-link {
    transform: translateY(0);
}

.release-card:hover .release-link:nth-child(1) {
    transition-delay: 0.05s;
}

.release-card:hover .release-link:nth-child(2) {
    transition-delay: 0.1s;
}

.release-card:hover .release-link:nth-child(3) {
    transition-delay: 0.15s;
}

.release-link svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s var(--ease-out-expo);
}

.release-link:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #a35d22 100%);
    border-color: var(--accent);
    color: var(--text-primary);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 24px rgba(196, 112, 42, 0.4);
}

.release-link:hover svg {
    transform: scale(1.1);
}

.coming-soon-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--border-subtle);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(10px);
    transition: all 0.3s var(--ease-out-expo);
}

.release-card:hover .coming-soon-label {
    transform: translateY(0);
}

/* ===================================
   Footer Section - Premium
   =================================== */
.footer {
    padding: var(--section-padding);
    background-color: var(--bg-primary);
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-link svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s var(--ease-out-expo);
}

.social-link:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px var(--accent-glow);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover svg {
    color: var(--bg-primary);
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 40px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 400;
}

.ai-disclosure {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-style: italic;
    letter-spacing: 0.02em;
}

/* ===================================
   Scroll Animations - Premium
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s var(--ease-out-expo),
        transform 0.8s var(--ease-out-expo);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for grid items */
.releases-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.releases-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.releases-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.releases-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }
.releases-grid .fade-in:nth-child(5) { transition-delay: 0.4s; }
.releases-grid .fade-in:nth-child(6) { transition-delay: 0.5s; }

.member-card.fade-in:nth-child(1) { transition-delay: 0s; }
.member-card.fade-in:nth-child(2) { transition-delay: 0.15s; }
.member-card.fade-in:nth-child(3) { transition-delay: 0.3s; }

/* ===================================
   Selection & Scrollbar
   =================================== */
::selection {
    background-color: var(--accent);
    color: var(--bg-primary);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ===================================
   Reduced Motion
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .grain-overlay {
        display: none;
    }
}
