/* ==========================================================================
   SEASONS OF THE GREAT PINES — DESIGN SYSTEM & LAYOUT
   ========================================================================== */

:root, :root[data-theme="moss"] {
    /* MOSS & MIST THEME (Spring/Summer Conifer Forest) */
    --bg-forest: #101c15;
    --bg-forest-rgb: 16, 28, 21;
    --bg-card: rgba(20, 34, 26, 0.48);
    --bg-card-hover: rgba(28, 46, 35, 0.65);
    --border-bark: rgba(234, 230, 223, 0.08);
    --border-bark-hover: rgba(143, 168, 155, 0.35);
    
    --text-primary: #eae6df; /* warm soft birch cream */
    --text-secondary: #9cb2a4; /* desaturated moss sage */
    --text-muted: rgba(156, 178, 164, 0.45);
    
    --accent-leaf: #8fa89b; /* fresh summer pine needle */
    --accent-leaf-glow: rgba(143, 168, 155, 0.16);
    --accent-amber: #d4a373; /* warm glowing sun ray */
    --accent-amber-glow: rgba(212, 163, 115, 0.16);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

:root[data-theme="rust"] {
    /* GOLD & RUST THEME (Golden Autumn Woodlands) */
    --bg-forest: #1f140e;
    --bg-forest-rgb: 31, 20, 14;
    --bg-card: rgba(38, 25, 17, 0.48);
    --bg-card-hover: rgba(50, 33, 22, 0.65);
    --border-bark: rgba(212, 163, 115, 0.08);
    --border-bark-hover: rgba(212, 163, 115, 0.35);
    
    --text-primary: #eae6df;
    --text-secondary: #c9bab0; /* warm desaturated sand */
    --text-muted: rgba(201, 186, 176, 0.45);
    
    --accent-leaf: #d4a373; /* golden autumn birch leaf */
    --accent-leaf-glow: rgba(212, 163, 115, 0.18);
    --accent-amber: #a36a4d; /* copper warm wood glow */
    --accent-amber-glow: rgba(163, 106, 77, 0.18);
}

/* Global Reset & Base Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Unified Smooth Seasonal Transitions */
body, 
.glass-panel, 
.site-header, 
.btn, 
.nav-link, 
.logo, 
.stream-link,
.season-toggle,
.toggle-pill,
.overlay,
.copyright {
    transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                color 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Background Atmosphere */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('assets/bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(12%) contrast(1.02);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-forest);
    opacity: 0.82; /* Blends the conifer backdrop organically */
}

#snow-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.noise-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
    opacity: 0.03;
    pointer-events: none;
    z-index: 2;
    animation: noiseShift 10s steps(8) infinite;
}

@keyframes noiseShift {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-1.5%, 0.5%); }
    40% { transform: translate(0.5%, -1.5%); }
    60% { transform: translate(-1%, 1%); }
    80% { transform: translate(1%, -1%); }
    100% { transform: translate(0, 0); }
}

/* Glassmorphism Panel Base */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-bark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 6px;
}

/* Premium Floating Navigation Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    z-index: 100;
    border-bottom: 1px solid var(--border-bark);
    background: rgba(var(--bg-forest-rgb), 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 300;
    letter-spacing: 0.32em;
    color: var(--text-primary);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255,255,255,0.08);
}

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

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-menu {
    display: flex;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--accent-leaf);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

.nav-link.active {
    color: var(--accent-leaf);
    text-shadow: 0 0 8px var(--accent-leaf-glow);
}

.nav-link.active::after {
    width: 100%;
    background-color: var(--accent-leaf);
}

/* ==========================================================================
   SEASON SWITCHER TOGGLE PILL
   ========================================================================== */
.season-toggle {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-bark);
    border-radius: 20px;
    width: 68px;
    height: 32px;
    padding: 2px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.season-toggle:hover {
    border-color: var(--border-bark-hover);
    background: rgba(255, 255, 255, 0.05);
}

.toggle-pill {
    width: 26px;
    height: 26px;
    background: var(--accent-leaf);
    border-radius: 50%;
    position: absolute;
    left: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-forest);
}

/* Active position sweeps based on CSS theme */
:root[data-theme="moss"] .toggle-pill {
    left: 2px;
}

:root[data-theme="rust"] .toggle-pill {
    left: 38px;
}

.toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

:root[data-theme="moss"] .active-rust { display: none; }
:root[data-theme="rust"] .active-moss { display: none; }

/* SPA Route View Control */
.page-view {
    display: none;
    opacity: 0;
    transform: translateY(15px);
}

.page-view.active {
    display: block;
    animation: viewEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes viewEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Layout Core */
.content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 110px 2rem 60px 2rem;
    min-height: calc(100vh - 120px);
}

/* Premium Button Architecture */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.8rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    cursor: pointer;
}

.primary-btn {
    background: rgba(var(--bg-forest-rgb), 0.15);
    color: var(--text-primary);
    border: 1px solid rgba(var(--bg-forest-rgb), 0.45);
    border-color: var(--accent-leaf);
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.8s ease-in-out;
}

.primary-btn:hover {
    background: rgba(var(--bg-forest-rgb), 0.3);
    box-shadow: 0 0 25px var(--accent-leaf-glow);
    color: #fff;
}

.primary-btn:hover::before {
    left: 100%;
}

.secondary-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-bark);
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

.secondary-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-bark-hover);
    background: rgba(255, 255, 255, 0.01);
}

/* ==========================================================================
   1. HOME VIEW STYLING
   ========================================================================== */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.cover-art-wrapper {
    perspective: 1000px;
    margin-bottom: 2.5rem;
}

.cover-art-container {
    position: relative;
    width: 310px;
    height: 310px;
    border-radius: 4px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.65);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cover-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-10px);
    width: 106%;
    height: 106%;
    background: radial-gradient(circle, var(--accent-leaf-glow) 0%, transparent 70%);
    z-index: 1;
    filter: blur(25px);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 3.8rem;
    letter-spacing: 0.12em;
    font-style: italic;
    color: var(--text-primary);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

/* Floating Ambient Visualizer Panel */
.ambient-player-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 360px;
    padding: 1.1rem 1.5rem;
    margin-bottom: 3rem;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.visualizer-container {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    width: 25px;
}

.visualizer-container .bar {
    width: 3px;
    height: 3px;
    background-color: var(--accent-leaf);
    border-radius: 1px;
    transition: height 0.3s ease;
}

.visualizer-container.playing .bar {
    animation: bounceBar 0.8s ease-in-out infinite alternate;
}

.visualizer-container.playing .bar:nth-child(1) { animation-delay: 0.1s; }
.visualizer-container.playing .bar:nth-child(2) { animation-delay: 0.3s; }
.visualizer-container.playing .bar:nth-child(3) { animation-delay: 0.0s; }
.visualizer-container.playing .bar:nth-child(4) { animation-delay: 0.4s; }
.visualizer-container.playing .bar:nth-child(5) { animation-delay: 0.2s; }

@keyframes bounceBar {
    0% { height: 3px; }
    100% { height: 18px; }
}

.player-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.player-status {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-leaf);
    font-weight: 600;
}

.player-track {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.player-toggle-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-bark);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.player-toggle-btn:hover {
    background: rgba(var(--bg-forest-rgb), 0.3);
    border-color: var(--accent-leaf);
    color: var(--accent-leaf);
}

.hidden {
    display: none !important;
}

.cta-actions {
    margin-bottom: 2rem;
}

.magnetic-wrapper {
    display: inline-block;
}

/* ==========================================================================
   2. RELEASES VIEW STYLING
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 2.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.section-divider {
    width: 40px;
    height: 1px;
    background-color: var(--accent-leaf);
    margin: 1.2rem auto 0 auto;
    opacity: 0.5;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    width: 100%;
}

.release-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.release-card:hover {
    border-color: var(--border-bark-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    background: var(--bg-card-hover);
}

.card-cover-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.card-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(var(--bg-forest-rgb), 0.7) 0%, transparent 40%);
    z-index: 1;
}

.release-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(var(--bg-forest-rgb), 0.7);
    border: 1px solid var(--border-bark);
    color: var(--accent-leaf);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.release-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.release-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.8rem;
    font-weight: 300;
    flex-grow: 1;
}

.release-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-bark);
    border-bottom: 1px solid var(--border-bark);
    padding: 1rem 0;
    margin-bottom: 1.8rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.meta-val {
    font-size: 0.78rem;
    color: var(--text-primary);
    font-weight: 400;
}

.release-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.stream-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.2rem;
    border: 1px solid var(--border-bark);
    border-radius: 2px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.01);
}

.stream-link:hover {
    background: rgba(var(--bg-forest-rgb), 0.25);
    border-color: var(--border-bark-hover);
    color: var(--accent-leaf);
}

.arrow-icon {
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.stream-link:hover .arrow-icon {
    opacity: 1;
    transform: translateX(3px);
}

.release-card .lyrics-trigger {
    width: 100%;
}

/* ==========================================================================
   3. ABOUT VIEW STYLING
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 3.5rem;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.portrait-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
}

.portrait-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 108%;
    height: 108%;
    background: radial-gradient(circle, var(--accent-leaf-glow) 0%, transparent 70%);
    z-index: 1;
    filter: blur(25px);
}

.about-text {
    display: flex;
    flex-direction: column;
}

.bio-intro {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.bio-body {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    color: var(--accent-leaf);
    border-left: 2px solid var(--accent-leaf);
    padding-left: 1.5rem;
    margin: 0.5rem 0 2.5rem 0;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.epk-download-section {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.epk-btn {
    border: 1px solid rgba(212, 163, 115, 0.25);
    background: rgba(212, 163, 115, 0.03);
    color: var(--text-primary);
    font-size: 0.8rem;
    padding: 0.85rem 2rem;
    gap: 0.8rem;
}

.epk-btn:hover {
    border-color: var(--accent-leaf);
    background: rgba(212, 163, 115, 0.1);
    box-shadow: 0 0 25px var(--accent-leaf-glow);
}

.instagram-btn {
    border: 1px solid var(--border-bark);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    font-size: 0.8rem;
    padding: 0.85rem 2rem;
    gap: 0.8rem;
}

.instagram-btn:hover {
    border-color: var(--border-bark-hover);
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   4. SITE FOOTER STYLING
   ========================================================================== */
.site-footer {
    border-top: 1px solid var(--border-bark);
    padding: 3rem 0;
    background: rgba(var(--bg-forest-rgb), 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.contact-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.contact-value {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.contact-value a {
    color: var(--accent-leaf);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-value a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px var(--accent-leaf-glow);
}

.contact-socials {
    margin-top: 0.5rem;
    display: flex;
    gap: 1.2rem;
}

.social-link {
    font-size: 0.8rem;
    color: var(--accent-leaf);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.social-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px var(--accent-leaf-glow);
}

.copyright {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   5. LYRICS MODAL STYLING
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--bg-forest-rgb), 0.85);
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.modal-wrapper {
    width: 100%;
    max-width: 640px;
    padding: 2rem;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay:not(.hidden) .modal-wrapper {
    transform: translateY(0);
}

.modal-content {
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    background: rgba(var(--bg-forest-rgb), 0.75);
    border: 1px solid var(--border-bark);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-bark);
    padding-bottom: 1.2rem;
    margin-bottom: 1.8rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    font-style: italic;
    color: var(--text-primary);
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-body {
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.08) transparent;
}

.modal-body::-webkit-scrollbar {
    width: 4px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lyrics-container {
    text-align: center;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 2.1;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.lyrics-container p {
    margin-bottom: 2rem;
}

.lyrics-container p.incantation {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--accent-leaf);
    line-height: 1.8;
}

/* ==========================================================================
   6. RESPONSIVE STYLING & STAGGER ANIMATIONS
   ========================================================================== */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
    }
    
    .about-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .logo {
        font-size: 1.15rem;
        letter-spacing: 0.25em;
    }
    
    .nav-menu-wrapper {
        gap: 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .content-container {
        padding: 100px 1.5rem 40px 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 0.88rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.85rem 2.2rem;
        font-size: 0.8rem;
    }
    
    .releases-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .modal-content {
        padding: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav-menu-wrapper {
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }
    
    .cover-art-container {
        width: 260px;
        height: 260px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .release-links {
        grid-template-columns: 1fr;
    }
}

/* Staggered Entrance Animations */
.staggered-element {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.staggered-element.in-view {
    opacity: 1;
    transform: translateY(0);
}

.page-view.active .staggered-element:nth-child(1) { transition-delay: 0.1s; }
.page-view.active .staggered-element:nth-child(2) { transition-delay: 0.25s; }
.page-view.active .staggered-element:nth-child(3) { transition-delay: 0.4s; }
.page-view.active .staggered-element:nth-child(4) { transition-delay: 0.55s; }
.page-view.active .staggered-element:nth-child(5) { transition-delay: 0.7s; }
