:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f47;
    --dark-bg: #1a1a1a;
    --dark-surface: #2a2a2a;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --accent: #c99d6a;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Dark-only theme tokens */
    --bg: var(--dark-bg);
    --surface: var(--dark-surface);
    --text: var(--text-light);
    --text-secondary: var(--text-muted);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Smooth page transitions between sections */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Parallax scrolling effects */
.hero-background {
    will-change: transform;
}

.hero-content {
    will-change: transform;
}

.music-section {
    position: relative;
}

.about-section {
    position: relative;
}

/* Parallax elements */
.parallax-slow {
    transition: transform 0.1s ease-out;
}

.parallax-medium {
    transition: transform 0.1s ease-out;
}

.parallax-fast {
    transition: transform 0.1s ease-out;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

/* Dark-only site: no theme switching */

/* Player page (mobile-first) */
.player-navbar .logo {
    font-size: 1.25rem;
}

/* Player navbar: 3-column grid to center logo */
.player-navbar .nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.player-navbar .logo {
    grid-column: 2;
    text-align: center;
}

.player-navbar .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.player-navbar .hamburger {
    grid-column: 3;
    justify-self: end;
}

/* Desktop: show nav menu inline, hide hamburger on player page */
@media (min-width: 769px) {
    .player-navbar .nav-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 100%;
        margin-top: 0.5rem;
    }
    
    .player-navbar .hamburger {
        display: none;
    }
}

/* Mobile: hide nav menu by default, show hamburger */
@media (max-width: 768px) {
    .player-navbar .nav-menu {
        display: none;
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        z-index: 1000;
        transition: left 0.3s;
    }
    
    .player-navbar .nav-menu.active {
        left: 0;
        display: flex;
    }
    
    .player-navbar .hamburger {
        display: flex;
    }
}

.player-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.player-back-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.player-page {
    padding-top: 90px; /* clear fixed navbar */
}

body[data-page="player"] .music-links {
    display: none;
}

@media (max-width: 768px) {
    body[data-page="player"] .player-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Hide vinyl record on mobile player page */
    body[data-page="player"] .album-art {
        display: none;
    }
}

/* Player page: compact lyrics container */
body[data-page="player"] #lyrics-content {
    max-width: 680px;
    margin: 0 auto;
    max-height: 320px; /* minimized container height on player page */
    overflow-y: auto;
}

body[data-page="player"] #lyrics-text-content {
    max-height: none; /* let the outer container scroll */
    overflow: visible;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0; /* tighter so more lines fit */
}

@media (max-width: 480px) {
    body[data-page="player"] #lyrics-content {
        max-height: 280px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

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

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2a1810 0%, #1a1a1a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 111, 71, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out;
}

.hero-logo-img {
    width: clamp(120px, 18vw, 250px);
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(212, 165, 116, 0.3));
    transition: var(--transition);
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(212, 165, 116, 0.5));
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 20px rgba(212, 165, 116, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #1a1a1a;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #1a1a1a;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Fade-in animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styling */
section {
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 300;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

/* Music Section */
.music-section {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.music-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 111, 71, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Musical Notes Background */
.music-section::after {
    content: '♪ ♫ ♬ ♩ ♪ ♫ ♬ ♩ ♪ ♫ ♬ ♩';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 2rem;
    color: rgba(212, 165, 116, 0.03);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 2rem;
    line-height: 3rem;
    letter-spacing: 2rem;
    pointer-events: none;
    z-index: 0;
    font-family: 'Cormorant Garamond', serif;
    animation: floatNotes 20s ease-in-out infinite;
}

.music-section .container {
    position: relative;
    z-index: 1;
}

.music-player-container {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.player-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.album-art {
    position: relative;
}

.vinyl-record {
    width: 100%;
    aspect-ratio: 1;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.0) 55%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.0) 60%),
        linear-gradient(45deg, #141414 0%, #2f2f2f 100%);
    border-radius: 50%;
    position: relative;
    /* 3D depth effect */
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.45),
        inset 0 0 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.18);
    animation: rotate 20s linear infinite paused;
    /* Subtle 3D tilt */
    transform: rotateX(5deg) rotateY(-5deg);
}

.vinyl-record.playing {
    animation-play-state: running;
}

.vinyl-record::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background:
        radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.0) 35%),
        radial-gradient(circle, #2a2a2a 0%, #141414 100%);
    border-radius: 50%;
}

/* subtle grooves to make vinyl visible on dark backgrounds */
.vinyl-record::after {
    content: '';
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle,
        rgba(255, 255, 255, 0.045) 0px,
        rgba(255, 255, 255, 0.045) 1px,
        rgba(0, 0, 0, 0) 6px,
        rgba(0, 0, 0, 0) 10px
    );
    opacity: 0.25;
    pointer-events: none;
}

.lyrics-modal {
    display: none;
}

.lyrics-modal.is-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 2500;
    /* Fully opaque so the homepage never shows through */
    background: #0f0f0f;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    /* Allow only vertical pan inside the lyrics experience */
    touch-action: pan-y;
}

.lyrics-modal-content {
    position: absolute;
    inset: 0;
    /* Fully opaque base + Spotify-like tint */
    background-color: #121212;
    background-image:
        radial-gradient(circle at 20% 0%, rgba(212, 165, 116, 0.28) 0%, rgba(212, 165, 116, 0.0) 55%),
        radial-gradient(circle at 90% 30%, rgba(139, 111, 71, 0.20) 0%, rgba(139, 111, 71, 0.0) 60%),
        linear-gradient(180deg, rgba(18,18,18,1) 0%, rgba(18,18,18,1) 55%, rgba(18,18,18,1) 100%);
    color: var(--text);
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    overscroll-behavior: contain;
    overflow-x: hidden;
    touch-action: pan-y;
    overflow: hidden;
}

.lyrics-modal-header {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 0.75rem;
    padding: calc(0.5rem + env(safe-area-inset-top)) 0 0.5rem;
    position: sticky;
    top: 0;
    z-index: 5;
    background: transparent;
}

.lyrics-modal-collapse {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.lyrics-modal-collapse:hover {
    background: rgba(0, 0, 0, 0.35);
    transform: scale(1.05);
}

.lyrics-modal-collapse-icon {
    width: 28px;
    height: 28px;
    display: block;
    color: currentColor;
}

.lyrics-modal-title-wrap {
    text-align: center;
}

.lyrics-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.1;
}

.lyrics-modal-subtitle {
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.lyrics-modal-spacer {
    width: 44px;
    height: 44px;
}

.lyrics-modal-bottom {
    margin-top: auto;
    position: sticky;
    bottom: 0;
    /* Push controls above the mobile browser chrome (URL bar) */
    padding: 0.75rem 0 calc(2.25rem + env(safe-area-inset-bottom));
    background: linear-gradient(to top, rgba(18,18,18,1) 72%, rgba(18,18,18,0));
}

.lyrics-modal-progress {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.lyrics-modal-progress-bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    appearance: none;
    background: rgba(255, 255, 255, 0.25);
    outline: none;
}

.lyrics-modal-progress-bar::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid rgba(0,0,0,0.2);
    cursor: pointer;
}

.lyrics-modal-time {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.lyrics-modal-body {
    margin-top: 0.75rem;
    /* Push lyrics below the header (and iOS safe-area) so they never sit under the nav/status area */
    /* Top padding handled by sticky header; keep a bit of breathing room.
       Extra bottom padding so lyrics never sit under the bottom player controls */
    padding: 0.5rem 1.5rem 9.5rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    overflow-x: hidden;
    touch-action: pan-y;
    flex: 1 1 auto;
    min-height: 0; /* required for iOS flex overflow */
}

/* Hide the site navbar while lyrics modal is open */
body.lyrics-modal-open .navbar {
    display: none !important;
}

/* Spotify-style lyrics typography */
.lyrics-modal-body .lyrics-text-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0.5rem 0.5rem 0.25rem;
}

.lyrics-modal-body .lyric-line {
    font-size: clamp(1.6rem, 5.5vw, 2.6rem);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.02em;
    opacity: 0.55 !important;
    transform: none !important;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.1rem;
}

.lyrics-modal-body .lyric-line.active {
    opacity: 1 !important;
    color: rgba(255, 255, 255, 1);
    text-shadow: none;
}

.lyrics-modal-body .lyric-line.past {
    opacity: 0.25 !important;
}

.lyrics-modal-body .lyric-line.upcoming {
    opacity: 0.55 !important;
}

.lyrics-modal-controls {
    display: flex;
    justify-content: center;
    margin-top: 0.65rem;
}

.lyrics-modal-play {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #0f0f0f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.lyrics-modal-play:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.04);
}

.lyrics-modal-play svg {
    width: 26px;
    height: 26px;
    display: block;
}

/* Mobile sizing: ensure vinyl is visible */
@media (max-width: 768px) {
    .album-art {
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .album-art {
        max-width: 220px;
    }
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
    height: 20%;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vinyl-logo {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 50%;
    /* Logo will spin with the vinyl record since it's inside the rotating element */
    /* Counter-rotate logo so it stays upright */
    animation: counterRotate 20s linear infinite paused;
}

.vinyl-record.playing .vinyl-logo {
    animation-play-state: running;
}

/* Record needle - appears when playing */
.record-needle {
    position: absolute;
    top: -8%;
    right: 15%;
    width: 3px;
    height: 35%;
    background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 2px 2px 0 0;
    transform-origin: bottom center;
    transform: rotate(-25deg);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 10;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        inset -1px 0 2px rgba(255, 255, 255, 0.1);
}

.record-needle::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.record-needle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 8px;
    background: linear-gradient(to bottom, #3a3a3a, #2a2a2a);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.vinyl-record.playing .record-needle {
    opacity: 1;
    transform: rotate(-25deg);
    animation: needleBob 2s ease-in-out infinite;
}

@keyframes needleBob {
    0%, 100% { transform: rotate(-25deg) translateY(0); }
    50% { transform: rotate(-25deg) translateY(-1px); }
}

/* Dust particles floating around vinyl */
.dust-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.dust-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    opacity: 0;
    animation: floatDust 8s ease-in-out infinite;
}

.dust-particle:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.dust-particle:nth-child(2) {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
    animation-duration: 9s;
}

.dust-particle:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 3s;
    animation-duration: 8s;
}

.dust-particle:nth-child(4) {
    top: 40%;
    right: 15%;
    animation-delay: 4.5s;
    animation-duration: 10s;
}

.dust-particle:nth-child(5) {
    top: 80%;
    left: 50%;
    animation-delay: 6s;
    animation-duration: 7.5s;
}

.dust-particle:nth-child(6) {
    top: 25%;
    left: 60%;
    animation-delay: 0.8s;
    animation-duration: 8.5s;
}

.dust-particle:nth-child(7) {
    top: 70%;
    right: 40%;
    animation-delay: 2.2s;
    animation-duration: 9.5s;
}

.dust-particle:nth-child(8) {
    bottom: 30%;
    left: 15%;
    animation-delay: 3.8s;
    animation-duration: 7s;
}

.dust-particle:nth-child(9) {
    top: 50%;
    left: 75%;
    animation-delay: 5.2s;
    animation-duration: 8s;
}

.dust-particle:nth-child(10) {
    top: 10%;
    right: 30%;
    animation-delay: 1.2s;
    animation-duration: 9s;
}

.dust-particle:nth-child(11) {
    bottom: 15%;
    right: 20%;
    animation-delay: 4.8s;
    animation-duration: 7.8s;
}

.dust-particle:nth-child(12) {
    top: 35%;
    left: 45%;
    animation-delay: 2.8s;
    animation-duration: 8.2s;
}

@keyframes floatDust {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }
    20% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
        transform: translate(15px, -20px) scale(1);
    }
    80% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translate(30px, -40px) scale(0.5);
    }
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.player-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.track-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.artist-name {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Error message styles */
.error-message {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    color: #ff6b7a;
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

.error-message .error-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.error-message .error-text {
    flex: 1;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .error-message {
        font-size: 0.8125rem;
        padding: 0.625rem 0.875rem;
    }
}

.audio-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.control-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.play-pause-btn,
.play-pause-btn .play-icon,
.play-pause-btn .pause-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn {
    background: var(--primary-color);
    border: none;
    color: #1a1a1a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-icon {
    width: 22px;
    height: 22px;
    display: block;
    color: currentColor;
}

.control-icon-lg {
    width: 26px;
    height: 26px;
}

.control-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.control-btn.active {
    background: var(--accent);
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.5);
}

.shuffle-icon {
    width: 20px;
    height: 20px;
    display: block;
    color: currentColor;
    transition: var(--transition);
}

.repeat-icon {
    width: 20px;
    height: 20px;
    display: block;
    color: currentColor;
}

.shuffle-btn {
    position: relative;
}

.shuffle-btn.active {
    background: var(--primary-color);
    border: 2px solid var(--accent);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.7), inset 0 0 10px rgba(212, 165, 116, 0.2);
    animation: shufflePulse 2s ease-in-out infinite;
}

.shuffle-btn.active .shuffle-icon {
    color: #1a1a1a;
}

/* Dot indicator under shuffle button when active */
.shuffle-btn.active::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(212, 165, 116, 0.8);
}


.shuffle-btn.active:hover {
    background: var(--accent);
    box-shadow: 0 0 25px rgba(212, 165, 116, 0.9), inset 0 0 15px rgba(212, 165, 116, 0.3);
}

.shuffle-btn.active:hover .shuffle-icon {
    color: #1a1a1a;
}

/* Repeat toggle styling */
.repeat-btn {
    position: relative;
}

.repeat-btn.active {
    background: var(--primary-color);
    border: 2px solid var(--accent);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.7), inset 0 0 10px rgba(212, 165, 116, 0.2);
}

.repeat-btn.active:hover {
    background: var(--accent);
    box-shadow: 0 0 25px rgba(212, 165, 116, 0.9), inset 0 0 15px rgba(212, 165, 116, 0.3);
}

.repeat-btn.active .repeat-icon,
.repeat-btn.active:hover .repeat-icon {
    color: #1a1a1a;
}

/* Dot indicator under repeat button when active (using ::before so it doesn't conflict with repeat-one "1" badge) */
.repeat-btn.active::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(212, 165, 116, 0.8);
}

/* Repeat-One badge (Spotify-like "1" indicator) */
.repeat-btn.repeat-one {
    position: relative;
}

.repeat-btn.repeat-one::after {
    content: "1";
    position: absolute;
    right: 10px;
    bottom: 9px;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    color: #1a1a1a;
    pointer-events: none;
}

/* Queue (Up Next) modal */


@keyframes shufflePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 165, 116, 0.7), inset 0 0 10px rgba(212, 165, 116, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(212, 165, 116, 0.9), inset 0 0 15px rgba(212, 165, 116, 0.3);
    }
}

.lyrics-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.lyrics-fullscreen-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--primary-color);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.lyrics-fullscreen-btn:hover {
    background: rgba(212, 165, 116, 0.12);
    transform: translateY(-50%) scale(1.05);
}

.lyrics-fullscreen-icon {
    width: 18px;
    height: 18px;
    display: block;
    color: currentColor;
}

/* Hide expand lyrics button on desktop - only show on mobile */
@media (min-width: 769px) {
    .lyrics-fullscreen-btn {
        display: none !important;
    }
}

/* Lock lyrics containers to vertical-only interaction (prevents side-to-side swiping) */
#lyrics-content,
#lyrics-text-content {
    overflow-x: hidden;
    touch-action: pan-y;
    overscroll-behavior-x: none;
}

/* Extra safety on the player page: never allow horizontal scrolling */
body[data-page="player"] {
    overflow-x: hidden;
}

/* Fullscreen lyrics mode */
body.lyrics-fullscreen {
    overflow: hidden;
}

body.lyrics-fullscreen #lyrics-content {
    display: block !important;
    position: fixed;
    inset: 0;
    z-index: 2000;
    margin: 0;
    border-radius: 0;
    border: none;
    background: var(--bg);
    padding: 1.25rem 1rem 2rem;
}

body.lyrics-fullscreen #lyrics-text-content {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 1rem;
}

body.lyrics-fullscreen .lyrics-header {
    position: sticky;
    top: 0;
    padding: 1rem 0;
    background: linear-gradient(to bottom, var(--bg) 70%, transparent);
    z-index: 1;
}

body.lyrics-fullscreen .lyrics-title {
    font-size: 1.75rem;
}

.play-pause-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.progress-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--text-secondary);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    appearance: none;
}

.progress-bar::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.progress-bar::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.music-links {
    background: var(--surface);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.music-links h3 {
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 1.5rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    border: 2px solid transparent;
}

.platform-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.platform-link.coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

.platform-icon {
    font-size: 2rem;
}

/* Track List */
.track-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Skeleton loader for tracks */
.track-item.skeleton {
    pointer-events: none;
    border-color: transparent;
}

.track-item.skeleton .track-number,
.track-item.skeleton .track-info h4,
.track-item.skeleton .track-info p,
.track-item.skeleton .track-play-btn {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
    color: transparent;
    min-height: 1em;
}

.track-item.skeleton .track-number {
    width: 30px;
    height: 20px;
}

.track-item.skeleton .track-info h4 {
    width: 60%;
    height: 24px;
    margin-bottom: 8px;
}

.track-item.skeleton .track-info p {
    width: 40%;
    height: 16px;
}

.track-item.skeleton .track-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.track-item:hover {
    border-color: var(--primary-color);
    background: var(--surface);
}

.track-number {
    font-size: 0.875rem;
    color: var(--text-secondary);
    min-width: 30px;
    font-weight: 500;
}

.track-info {
    flex: 1;
}

.track-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text);
    font-size: 1rem;
}

.track-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.track-play-btn {
    background: var(--primary-color);
    border: none;
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-play-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.download-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.download-section h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.download-section p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/* Lyrics Display */
.lyrics-container {
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    touch-action: pan-y;
}

/* Wider lyrics container on desktop */
@media (min-width: 769px) {
    .lyrics-container {
        max-width: 1000px;
    }
}

.lyrics-toggle {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.lyrics-toggle:hover {
    background: var(--primary-color);
    color: #1a1a1a;
}

.lyrics-content {
    margin: 1.5rem auto 0;
    padding: 2rem 2.5rem 2rem;
    background: rgba(212, 165, 116, 0.08);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: 10px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
    width: 100%;
    max-width: 600px;
    touch-action: pan-y;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Wider lyrics content on desktop */
@media (min-width: 769px) {
    .lyrics-content {
        max-width: 900px;
    }
}

[data-theme="dark"] .lyrics-content {
    background: rgba(212, 165, 116, 0.06);
    border-color: rgba(212, 165, 116, 0.2);
}

.lyrics-content::-webkit-scrollbar {
    width: 4px;
}

.lyrics-content::-webkit-scrollbar-track {
    background: transparent;
}

.lyrics-content::-webkit-scrollbar-thumb {
    background: rgba(212, 165, 116, 0.3);
    border-radius: 2px;
}

.lyrics-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.lyrics-text-content {
    color: var(--text);
    line-height: 2.5;
    font-size: 1.15rem;
    text-align: center;
    padding: 1.5rem 1rem 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    touch-action: pan-y;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Minimized lyrics should start at the top (not vertically centered) */
#lyrics-content #lyrics-text-content {
    justify-content: flex-start;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 1rem;
}

.lyrics-text-content p {
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0.3;
    transform: scale(0.9);
    height: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.lyric-line {
    transition: opacity 0.8s ease, transform 0.8s ease, color 0.6s ease;
    cursor: pointer;
    user-select: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.lyric-line:hover {
    opacity: 0.8 !important;
    transform: scale(1.05) !important;
}

/* Past lines - fade out as they scroll up */
.lyric-line.past {
    opacity: 0.2 !important;
    transform: scale(0.85) translateY(-10px) !important;
    color: var(--text-secondary);
}

/* Active/current line - highlighted and centered */
.lyric-line.active {
    opacity: 1 !important;
    transform: scale(1.1) !important;
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(212, 165, 116, 0.4);
    /* Ensure scaled line doesn't get clipped */
    transform-origin: center center;
    will-change: transform;
}

/* Upcoming lines - fade in as they approach */
.lyric-line.upcoming {
    opacity: 0.4 !important;
    transform: scale(0.95) translateY(10px) !important;
    color: var(--text-secondary);
}

.lyrics-placeholder {
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

/* Shows Section */
.shows-section {
    background: var(--surface);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.show-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.show-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary-color);
    color: #1a1a1a;
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.show-info {
    flex: 1;
}

.show-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.show-location {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.show-time {
    color: var(--primary-color);
    font-weight: 500;
}

/* Mailing List Section */
.mailing-section {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(139, 111, 71, 0.1) 100%);
    padding: 5rem 0;
}

.mailing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.mailing-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mailing-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mailing-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mailing-benefits li {
    color: var(--text);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mailing-form {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mailing-form .form-group {
    margin-bottom: 1.5rem;
}

.mailing-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

.epk-download {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.epk-download:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* About Section */
.about-section {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 111, 71, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Musical Notes Background */
.about-section::after {
    content: '♪ ♫ ♬ ♩ ♪ ♫ ♬ ♩ ♪ ♫ ♬ ♩';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 2rem;
    color: rgba(212, 165, 116, 0.03);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 2rem;
    line-height: 3rem;
    letter-spacing: 2rem;
    pointer-events: none;
    z-index: 0;
    font-family: 'Cormorant Garamond', serif;
    animation: floatNotes 20s ease-in-out infinite;
}

@keyframes floatNotes {
    0%, 100% {
        opacity: 0.03;
        transform: translateY(0);
    }
    50% {
        opacity: 0.06;
        transform: translateY(-10px);
    }
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 769px) {
    .about-content {
        grid-template-columns: 1.3fr 0.7fr;
        gap: 5rem;
        align-items: flex-start;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .about-text {
        padding-right: 2rem;
    }
    
    .about-visual {
        position: sticky;
        top: -40px;
        align-self: flex-start;
        padding-top: 2rem;
    }
}

.about-text {
    position: relative;
}

/* Scroll Progress Timeline */
.scroll-progress-timeline {
    margin-bottom: 3rem;
    position: relative;
}

@media (min-width: 769px) {
    .scroll-progress-timeline {
        margin-bottom: 4rem;
        max-width: 90%;
    }
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(212, 165, 116, 0.15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), rgba(212, 165, 116, 0.8));
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.4);
}

.progress-markers {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 0.5rem;
}

.progress-marker {
    position: relative;
    flex: 1;
    text-align: center;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.marker-label {
    transition: color 0.3s ease, transform 0.3s ease;
}

.progress-marker.active {
    opacity: 1;
}

.progress-marker.hover-active {
    opacity: 1;
    transform: scale(1.1);
}

.progress-marker::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: rgba(212, 165, 116, 0.4);
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.progress-marker.active::before {
    background: var(--primary-color);
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 8px rgba(212, 165, 116, 0.6);
}

.progress-marker.hover-active::before {
    background: var(--primary-color);
    transform: translateX(-50%) scale(1.5);
    box-shadow: 0 0 12px rgba(212, 165, 116, 0.8);
    animation: pulseDot 1s ease-in-out infinite;
}

.marker-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.progress-marker.active .marker-label {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-marker.hover-active .marker-label {
    color: var(--primary-color);
    font-weight: 700;
    transform: scale(1.05);
}

.about-section .section-title {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

@media (min-width: 769px) {
    .about-section .section-title {
        margin-bottom: 4rem;
        font-size: clamp(3rem, 5vw, 4.5rem);
    }
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* About Story Timeline */
.about-story {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 769px) {
    .about-story {
        padding-left: 2.5rem;
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .about-story {
        padding-left: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    /* Better mobile chapter spacing */
    .story-chapter {
        margin-bottom: 2rem;
    }
    
    /* Mobile chapter content improvements */
    .chapter-content {
        padding: 1.25rem 1.25rem 1.25rem 0.875rem;
        border-radius: 0 12px 12px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    /* Mobile chapter titles */
    .chapter-title {
        font-size: 1.5rem;
        margin-bottom: 0.625rem;
    }
    
    /* Mobile chapter text */
    .chapter-content p {
        font-size: 0.9375rem;
        line-height: 1.75;
        letter-spacing: 0.01em;
    }
    
    /* Mobile timeline marker improvements */
    .chapter-marker {
        left: -1.5rem;
    }
    
    .marker-dot {
        width: 14px;
        height: 14px;
        border-width: 2.5px;
        box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
    }
    
    .marker-dot::before {
        width: 5px;
        height: 5px;
    }
    
    /* Touch-friendly chapter interaction */
    .story-chapter:active .chapter-content {
        transform: scale(0.98);
        background: rgba(212, 165, 116, 0.08);
    }
    
    /* Mobile progress timeline - match desktop styling */
    .scroll-progress-timeline {
        margin-bottom: 3rem;
        position: relative;
    }
    
    /* Mobile progress markers - match desktop */
    .progress-markers {
        display: flex;
        justify-content: space-between;
        position: relative;
        margin-top: 0.5rem;
    }
    
    .progress-marker {
        position: relative;
        flex: 1;
        text-align: center;
        opacity: 0.4;
        transition: opacity 0.3s ease, transform 0.3s ease;
        min-width: 60px;
    }
    
    .marker-label {
        font-size: 0.75rem;
        color: var(--text-secondary);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: block;
        margin-top: 0.5rem;
        transition: color 0.3s ease;
    }
    
    .progress-marker.active .marker-label {
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .progress-marker.hover-active .marker-label {
        color: var(--primary-color);
        font-weight: 700;
        transform: scale(1.05);
    }
    
    /* Mobile features section */
    .about-features {
        margin-top: 2rem;
        padding-top: 2rem;
        gap: 0.875rem;
    }
    
    .feature {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .feature:active {
        transform: scale(0.97);
        background: rgba(212, 165, 116, 0.08);
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
    }
    
    /* Better mobile section title */
    .about-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .about-story {
        padding-left: 1.25rem;
    }
    
    .chapter-marker {
        left: -1.25rem;
    }
    
    .chapter-content {
        padding: 1rem 1rem 1rem 0.75rem;
    }
    
    .chapter-title {
        font-size: 1.375rem;
    }
    
    .chapter-content p {
        font-size: 0.875rem;
        line-height: 1.7;
    }
    
    .marker-dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
    
    /* Keep timeline matching desktop on small screens */
    .progress-marker {
        min-width: 50px;
    }
    
    .marker-label {
        font-size: 0.6875rem;
    }
    
    .about-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .feature {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }
    
    .feature-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        min-height: 26px;
    }
}

.story-chapter {
    position: relative;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.story-chapter.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.story-chapter:last-child {
    margin-bottom: 0;
}

.story-chapter:hover .chapter-content {
    transform: translateX(5px);
}

.story-chapter:hover .marker-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(212, 165, 116, 0.3);
}

.chapter-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 2px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--surface);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
    animation: pulseDot 2s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marker-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--surface);
    border-radius: 50%;
}

.marker-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(
        to bottom,
        var(--primary-color) 0%,
        rgba(212, 165, 116, 0.3) 100%
    );
    margin-top: 4px;
}

.story-chapter:last-child .marker-line {
    display: none;
}

.chapter-content {
    padding: 1.5rem 1.5rem 1.5rem 1rem;
    background: rgba(212, 165, 116, 0.03);
    border-left: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 769px) {
    .chapter-content {
        padding: 2rem 2rem 2rem 1.5rem;
    }
    
    .chapter-content p {
        font-size: 1.125rem;
        line-height: 1.9;
    }
}

.chapter-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.05), transparent);
    transition: width 0.5s ease;
    z-index: 0;
}

.story-chapter:hover .chapter-content::before {
    width: 100%;
}

.story-chapter:hover .chapter-content {
    background: rgba(212, 165, 116, 0.06);
    border-left-color: var(--primary-color);
}

.chapter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.chapter-content p {
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.story-chapter p {
    margin-bottom: 0;
}

@keyframes pulseDot {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(212, 165, 116, 0.1);
    }
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
}

.about-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease, padding 0.3s ease;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(212, 165, 116, 0.02);
}

.feature.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.feature:hover {
    background: rgba(212, 165, 116, 0.05);
    transform: translateX(5px);
    padding-left: 1.25rem;
}

.feature:nth-child(1) {
    transition-delay: 0.1s;
}

.feature:nth-child(2) {
    transition-delay: 0.3s;
}

.feature:nth-child(3) {
    transition-delay: 0.5s;
}

.feature-icon {
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    flex-shrink: 0;
    color: var(--primary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    shape-rendering: geometricPrecision;
    text-rendering: geometricPrecision;
}

/* Ensure consistent rendering across browsers */
.feature-icon svg path {
    vector-effect: non-scaling-stroke;
}

.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

@media (min-width: 769px) {
    .about-visual {
        height: auto;
        min-height: 500px;
        padding: 3rem 2rem;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

@media (min-width: 769px) {
    .about-visual {
        transform-style: preserve-3d;
        perspective: 1000px;
        position: sticky;
        top: -40px;
        align-self: flex-start;
        height: auto;
        min-height: 400px;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: -60px;
    }
}

.about-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.visual-element {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Vinyl record in About section */
.about-vinyl {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}

.about-vinyl .vinyl-record {
    width: 100%;
    max-width: 300px;
    /* Always spin on homepage (music doesn't play here) */
    animation: rotate 20s linear infinite;
    animation-play-state: running;
    will-change: transform;
}

@media (min-width: 769px) {
    .about-vinyl .vinyl-record {
        transform-style: preserve-3d;
        /* Base 3D tilt - will be enhanced by parallax */
        transform: rotateX(5deg) rotateY(-5deg);
    }
}

/* About section vinyl: always show needle since it always spins */
.about-vinyl .vinyl-record .record-needle {
    opacity: 1;
    animation: needleBob 2s ease-in-out infinite;
}

.about-vinyl .vinyl-record .vinyl-logo {
    animation: counterRotate 20s linear infinite;
    animation-play-state: running;
}

/* Contact Section */
.contact-section {
    background: var(--bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-item p,
.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--text-secondary);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 165, 116, 0.3) 50%,
        transparent 100%
    );
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-follow-blurb {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.5;
    opacity: 0.8;
    display: block; /* Show on desktop */
    text-align: left;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -1rem;
    opacity: 0;
    transition: var(--transition);
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.footer-connect-blurb {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    max-width: 280px;
    text-align: left;
}

.streaming-platforms {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.streaming-platform-item {
    display: flex;
    align-items: center;
}

.streaming-platform-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    width: 100%;
}

.streaming-platform-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.streaming-platform-link:not(.disabled):hover {
    color: var(--primary-color);
}

.streaming-platform-link:not(.disabled):hover svg {
    transform: scale(1.1);
    color: var(--primary-color);
}

.streaming-platform-link.disabled {
    opacity: 0.6;
    cursor: default;
    position: relative;
}

.streaming-platform-link.disabled span:first-of-type {
    color: var(--text-secondary);
}

.coming-soon-badge {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--primary-color);
    background: rgba(212, 165, 116, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-copyright {
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-follow-blurb {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    line-height: 1.5;
    opacity: 0.8;
    display: none; /* Hidden on mobile, shown on desktop */
}

.social-icon-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(139, 111, 71, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon-link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    background: rgba(212, 165, 116, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

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

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


/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .player-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Mobile homepage: catalog-first (hide the big inline player card) */
    body:not([data-page="player"]) .music-player-container > .player-card {
        display: none;
    }

    body:not([data-page="player"]) .music-player-container {
        grid-template-columns: 1fr;
    }

    .control-buttons {
        justify-content: center;
        padding-left: 12px; /* slight nudge right for better visual centering on mobile */
    }

    .album-art {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Ensure vinyl/album art is clearly visible on mobile */
    .album-art {
        display: block;
        margin-bottom: 1.25rem;
    }

    .about-content,
    .contact-content,
    .mailing-content {
        grid-template-columns: 1fr;
    }

    .about-section .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .about-story {
        padding-left: 1.25rem;
    }

    .chapter-marker {
        left: -1.25rem;
    }

    .marker-dot {
        width: 14px;
        height: 14px;
        border-width: 2px;
    }

    .chapter-content {
        padding: 1.5rem 1rem 1.5rem 0.75rem;
        border-left-width: 3px;
        margin-left: 0.5rem;
        border-radius: 0 10px 10px 0;
    }

    .chapter-title {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
        margin-bottom: 1rem;
    }

    .chapter-content p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .story-chapter {
        margin-bottom: 2.5rem;
    }

    .story-chapter:last-child {
        margin-bottom: 1rem;
    }

    .about-visual {
        margin-top: 3rem;
        margin-bottom: 2rem;
        height: auto;
        min-height: 300px;
        padding: 2rem 1rem;
    }

    .about-visual::before {
        width: 280px;
        height: 280px;
    }

    .about-section .section-title::after {
        width: 50px;
        height: 2px;
    }

    .scroll-progress-timeline {
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .progress-bar-container {
        margin-bottom: 0.75rem;
    }

    .progress-markers {
        flex-wrap: wrap;
        gap: 0.25rem;
        row-gap: 0.5rem;
    }

    .marker-label {
        font-size: 0.7rem;
        margin-top: 0.75rem;
        line-height: 1.2;
    }

    .progress-marker::before {
        top: -1.5rem;
        width: 8px;
        height: 8px;
    }

    .progress-marker.hover-active::before {
        transform: translateX(-50%) scale(1.6);
    }

    .about-features {
        margin-top: 2.5rem;
        padding-top: 2rem;
        gap: 1.25rem;
    }

    .feature {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    .feature:hover {
        transform: translateX(8px);
        padding-left: 1.5rem;
    }

    .feature-icon {
        font-size: 1.75rem;
    }

    .about-section::after {
        font-size: 1.25rem;
        letter-spacing: 0.75rem;
        line-height: 1.75rem;
        padding: 1rem;
    }

    /* Make timeline more touch-friendly on mobile */
    .progress-marker {
        min-width: 60px;
        padding: 0.25rem;
        cursor: pointer;
    }

    .story-chapter {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(212, 165, 116, 0.2);
    }

    .shows-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
    
    .footer-follow-blurb {
        display: none; /* Hide on mobile */
    }

    .footer-contact {
        text-align: center;
    }
    
    .footer-connect-blurb {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .streaming-platforms {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .about-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .about-visual {
        margin-top: 2.5rem;
        min-height: 280px;
        padding: 1.5rem 0.5rem;
    }

    .about-visual::before {
        width: 250px;
        height: 250px;
    }

    .chapter-content {
        padding: 1.25rem 0.875rem 1.25rem 0.625rem;
    }

    .chapter-title {
        font-size: 1.125rem;
        margin-bottom: 0.875rem;
    }

    .chapter-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .scroll-progress-timeline {
        margin-bottom: 2rem;
        padding: 0;
    }

    .progress-markers {
        gap: 0.125rem;
        row-gap: 0.75rem;
    }

    .marker-label {
        font-size: 0.625rem;
    }

    .about-story {
        padding-left: 1rem;
    }

    .chapter-marker {
        left: -1rem;
    }

    .story-chapter {
        margin-bottom: 2rem;
    }

    .about-features {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .feature {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    section {
        padding: 3rem 0;
    }

    .player-card {
        padding: 1.5rem;
    }
}
