/* ==========================================================================
   TIMO 50 - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --- CSS VARIABLES & TOKENS --- */
:root {
    /* Color Palette */
    --bg-dark: #08090d;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glass-hover: rgba(212, 175, 55, 0.3);
    
    /* Gold/Brass Gradients & Accent Colors */
    --gold-primary: #d4af37;
    --gold-light: #fcf6ba;
    --gold-medium: #b38728;
    --gold-dark: #8a6f27;
    --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    --gold-glow: 0 0 15px rgba(212, 175, 55, 0.4);
    --gold-text-glow: 0 0 10px rgba(252, 246, 186, 0.5);
    
    /* Text Colors */
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-muted: #86868b;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
}

/* --- RESET & BASIC STYLING --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Custom Scrollbar for the page */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0b0c10;
}
::-webkit-scrollbar-thumb {
    background: #20222a;
    border-radius: 5px;
    border: 2px solid #0b0c10;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-medium);
}

/* --- PARTICLE CANVAS BACKGROUND --- */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at center, #151722 0%, #050608 100%);
}

/* --- CONTAINER & LAYOUT --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* --- GLASS CONTAINER UTILITY --- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}
.glass-card:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 20px 48px rgba(212, 175, 55, 0.1);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 1rem 2rem 1rem;
}

.hero-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    box-shadow: var(--gold-glow);
    animation: pulseGlow 3s infinite ease-in-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Highlight Quote Frame */
.highlight-quote-card {
    background: rgba(212, 175, 55, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}
.highlight-quote-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.quote-icon-container {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d0f14;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--gold-glow);
}

.gold-trumpet-icon {
    width: 60px;
    height: 24px;
    display: block;
}

.birthday-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    font-style: italic;
    line-height: 1.5;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: var(--gold-text-glow);
}

/* Borders in Quote */
.quote-border-top, .quote-border-bottom {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--gold-primary);
    border-style: solid;
    pointer-events: none;
}
.quote-border-top {
    top: 15px;
    left: 15px;
    border-width: 2px 0 0 2px;
}
.quote-border-bottom {
    bottom: 15px;
    right: 15px;
    border-width: 0 2px 2px 0;
}

/* Scroll indicator link */
.scroll-down {
    margin-top: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
}
.scroll-down:hover {
    color: var(--text-primary);
    text-shadow: var(--gold-text-glow);
}
.arrow-icon {
    animation: bounce 2s infinite ease-in-out;
}

/* --- SECTIONS COMMON STYLING --- */
.section {
    padding: 8rem 0 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* --- CUSTOM AUDIO PLAYER --- */
.player-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Visual wrapper containing spinning record and backdrop visualizer */
.player-visual-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
}

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

.vinyl-wrapper {
    width: 200px;
    height: 200px;
    position: relative;
    z-index: 2;
}

.vinyl-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vinyl {
    width: 100%;
    height: 100%;
    background: #0e0e11;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), inset 0 0 10px rgba(255,255,255,0.05);
    border: 4px solid #1c1d22;
    overflow: hidden;
    transform: rotate(0deg);
}

.vinyl.playing {
    animation: rotateVinyl 8s linear infinite;
}

.vinyl.playing + .vinyl-glow {
    opacity: 1;
}

.vinyl-grooves {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle,
        #111 0px,
        #111 2px,
        #1f1f23 3px,
        #111 4px
    );
    opacity: 0.8;
}

.vinyl-label {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.vinyl-label-center {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: #111;
    line-height: 1;
}

.vinyl-label-text {
    font-size: 0.45rem;
    color: #333;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.player-info {
    text-align: center;
    margin-bottom: 2rem;
    z-index: 2;
}

.player-badge {
    color: var(--gold-primary);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.song-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin: 0.5rem 0 0.2rem 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.song-artist {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Controls structure */
.player-controls-wrapper {
    width: 100%;
    z-index: 2;
}

/* Timeline/Progress */
.timeline-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-display {
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 35px;
    font-variant-numeric: tabular-nums;
}

.progress-bar-bg {
    flex-grow: 1;
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    overflow: visible;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gold-gradient);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    pointer-events: none;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 14px;
    height: 14px;
    background: var(--gold-light);
    border: 2px solid var(--gold-medium);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.1s ease;
    pointer-events: none;
}

.progress-bar-bg:hover .progress-handle {
    opacity: 1;
}

.progress-bar-bg:hover {
    height: 8px;
}

/* Center buttons controls */
.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    margin-bottom: 1.8rem;
}

.btn-control {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-control:hover {
    color: var(--gold-primary);
    transform: scale(1.1);
}

.btn-play-pause {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #111;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.btn-play-pause:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.7);
}

.btn-play-pause svg {
    display: block;
}

/* Volume Slider styling */
.volume-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    max-width: 200px;
    margin: 0 auto;
}

.btn-volume {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}
.btn-volume:hover {
    color: var(--gold-primary);
}

.volume-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-primary);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--gold-light);
}

/* --- LYRICS CARD --- */
.lyrics-card {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.lyrics-header {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.lyrics-note-icon {
    font-size: 1.1rem;
    text-shadow: var(--gold-text-glow);
}

.lyrics-content {
    padding: 3rem 2rem;
    max-height: 480px;
    overflow-y: auto;
    text-align: center;
    scroll-behavior: smooth;
}

.lyrics-block {
    margin-bottom: 3.5rem;
    transition: var(--transition-smooth);
}
.lyrics-block:last-child {
    margin-bottom: 0;
}

.block-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 1.2rem;
}

.lyrics-block p {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-secondary);
}

/* Chorus Special Styling */
.lyrics-block.chorus {
    background: rgba(212, 175, 55, 0.03);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 2.2rem 1.5rem;
    border-radius: 16px;
    margin: 3.5rem auto;
    max-width: 650px;
}
.lyrics-block.chorus p {
    color: var(--text-primary);
    font-weight: 500;
    font-style: italic;
}
.lyrics-block.chorus .block-label {
    color: var(--gold-primary);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

/* Highlighted Block (The Bridge) */
.highlighted-block {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: var(--gold-glow);
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    max-width: 680px;
    margin: 4rem auto;
}

.highlighted-block::before {
    content: "★";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #11131c;
    width: 28px;
    height: 28px;
    line-height: 26px;
    border: 1.5px solid var(--gold-primary);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 0.9rem;
    box-shadow: var(--gold-glow);
}

.highlighted-block .block-label {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.highlighted-text {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.6rem) !important;
    font-weight: 800;
    line-height: 1.6 !important;
    color: var(--gold-light) !important;
    margin-bottom: 1.2rem;
    text-shadow: var(--gold-text-glow);
}

.lyrics-block.outro {
    font-style: italic;
}

/* Custom scrollbar for lyrics content */
.lyrics-content::-webkit-scrollbar {
    width: 6px;
}
.lyrics-content::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.01);
    border-radius: 10px;
}
.lyrics-content::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
}
.lyrics-content::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* --- PHOTO GALLERY GRID --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    background: #121319;
    border: 1px solid var(--border-glass);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

/* Handle landscape/portrait items cleanly */
.gallery-item:nth-child(3) {
    grid-column: span 1;
    aspect-ratio: 4/5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 11, 15, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-hover-overlay span {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    background: rgba(18, 19, 25, 0.8);
    backdrop-filter: blur(4px);
    box-shadow: var(--gold-glow);
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover effects */
.gallery-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-hover-overlay span {
    transform: translateY(0);
}

/* --- FOOTER --- */
.birthday-footer {
    text-align: center;
    padding: 6rem 0 4rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 6rem;
}

.birthday-footer p {
    margin-bottom: 0.5rem;
}

.local-notice {
    font-size: 0.75rem;
    color: rgba(212, 175, 55, 0.4);
}

/* --- LIGHTBOX MODAL --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 6, 8, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 1010;
}
.lightbox-close:hover {
    color: var(--gold-primary);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-primary);
    font-size: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}
.lightbox-nav:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

.lightbox-prev {
    left: 30px;
}
.lightbox-next {
    right: 30px;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 40px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(255,255,255,0.1);
    object-fit: contain;
    animation: zoomIn 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        border-color: rgba(212, 175, 55, 0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
        border-color: rgba(212, 175, 55, 1);
    }
}

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

@keyframes rotateVinyl {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.92);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero {
        min-height: 85vh;
    }
    .player-container {
        padding: 2.5rem 2rem;
    }
    .control-buttons {
        gap: 1.8rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .hero {
        padding-top: 3rem;
    }
    .highlight-quote-card {
        padding: 2.2rem 1.5rem;
    }
    .quote-border-top {
        top: 10px;
        left: 10px;
    }
    .quote-border-bottom {
        bottom: 10px;
        right: 10px;
    }
    .section {
        padding: 5rem 0 3rem 0;
    }
    .player-visual-wrapper {
        height: 220px;
    }
    .vinyl-wrapper {
        width: 160px;
        height: 160px;
    }
    .vinyl-label {
        width: 56px;
        height: 56px;
    }
    .control-buttons {
        gap: 1.5rem;
    }
    .btn-play-pause {
        width: 60px;
        height: 60px;
    }
    .btn-play-pause svg {
        width: 28px;
        height: 28px;
    }
    .lyrics-content {
        padding: 2rem 1rem;
    }
    .lightbox-nav {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    .hero-badge {
        margin-bottom: 1.5rem;
    }
    .highlight-quote-card {
        padding: 2rem 1rem;
    }
    .lyrics-block.chorus, .highlighted-block {
        padding: 1.8rem 1rem;
        margin: 2rem auto;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
