/* ===== CSS VARIABLES ===== */
:root {
    --accent: #6c3fb5;
    --accent2: #00e5a0;
    --accent3: #ff4da6;
    --accent4: #ff9800;
    --accent5: #2196f3;
    --bg: #0a0a0f;
    --bg2: #0d0d18;
    --bg-section: rgba(8, 8, 14, 0.75);
    --bg-section-alt: rgba(10, 10, 18, 0.8);
    --text: #e0e0e0;
    --text2: #b8b8c8;
    --text3: #8888a0;
    --card-bg: rgba(15, 15, 28, 0.6);
    --card-border: rgba(108, 63, 181, 0.15);
    --card-hover: rgba(20, 20, 40, 0.85);
    --nav-bg: rgba(10, 10, 15, 0.9);
    --glass: rgba(15, 15, 28, 0.7);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 24px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
button {
    background: transparent; color: inherit; font-family: inherit;
    text-align: center; cursor: pointer; border: none; outline: none;
}
.particles-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

/* ===== AURORA SPOTS ===== */
.aurora {
    position: fixed; border-radius: 50%; filter: blur(140px); pointer-events: none; z-index: -2;
    opacity: 0.35; will-change: transform;
}
.aurora-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(108,63,181,0.5), transparent);
    top: -250px; left: -150px;
    animation: auroraFloat1 14s ease-in-out infinite;
}
.aurora-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,229,160,0.4), transparent);
    bottom: -200px; right: -150px;
    animation: auroraFloat2 16s ease-in-out infinite;
}
.aurora-3 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,77,166,0.35), transparent);
    top: 50%; left: 50%;
    animation: auroraFloat3 18s ease-in-out infinite;
}
.aurora-4 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(33,150,243,0.3), transparent);
    top: 20%; right: 10%;
    animation: auroraFloat4 20s ease-in-out infinite;
}
@keyframes auroraFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 25% { transform: translate(100px,80px) scale(1.15); } 50% { transform: translate(-50px,120px) scale(0.9); } 75% { transform: translate(-80px,-40px) scale(1.1); } }
@keyframes auroraFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-90px,-60px) scale(1.2); } 66% { transform: translate(60px,-100px) scale(0.85); } }
@keyframes auroraFloat3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px,-50px) scale(1.25); } }
@keyframes auroraFloat4 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px,60px) scale(1.3); } }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; z-index: 10000; background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-content { text-align: center; }
.preloader-vinyl { margin-bottom: 24px; }
.preloader-disc {
    width: 100px; height: 100px; border-radius: 50%;
    background: radial-gradient(circle at center, #1a1a2e 0%, #1a1a2e 18%, #111 18.5%, #1a1a2e 19%, #111 19.5%, #1a1a2e 20%, #111 20.5%, #1a1a2e 21%, #1a1a2e 65%, #222 66%, #1a1a2e 100%);
    margin: 0 auto;
    animation: preloadSpin 1s linear infinite;
    box-shadow: 0 0 40px rgba(108,63,181,0.5), 0 0 80px rgba(0,229,160,0.15);
}
@keyframes preloadSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.preloader-text {
    font-family: 'Russo One', sans-serif; font-size: 1.5rem;
    background: linear-gradient(135deg, #6c3fb5, #00e5a0);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    letter-spacing: 6px; animation: preloadPulse 1.5s ease-in-out infinite;
}
@keyframes preloadPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.preloader-bar {
    margin-top: 20px; width: 200px; height: 3px; background: rgba(255,255,255,0.08);
    border-radius: 3px; overflow: hidden; margin-left: auto; margin-right: auto;
}
.preloader-bar span {
    display: block; height: 100%; width: 30%;
    background: linear-gradient(90deg, #6c3fb5, #00e5a0, #ff4da6);
    border-radius: 3px; animation: preloadBar 1.2s ease-in-out infinite;
}
@keyframes preloadBar { 0% { width: 10%; margin-left: 0; } 50% { width: 60%; margin-left: 20%; } 100% { width: 10%; margin-left: 90%; } }

/* ===== FLOATING NOTES ===== */
.floating-notes { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.float-note {
    position: absolute; font-size: 1.6rem; opacity: 0;
    animation: noteFloat linear infinite;
    filter: drop-shadow(0 0 6px rgba(0,229,160,0.4));
}
@keyframes noteFloat {
    0% { transform: translateY(0) rotate(0deg) scale(0.8); opacity: 0; }
    10% { opacity: 0.55; }
    90% { opacity: 0.35; }
    100% { transform: translateY(-100vh) rotate(360deg) scale(1.2); opacity: 0; }
}

/* ===== SCROLL SECTIONS ===== */
section {
    position: relative; z-index: 1;
    background: var(--bg-section);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
section:nth-child(odd) { background: var(--bg-section-alt); }

/* ===== CUSTOM CURSOR ===== */
.cursor {
    position: fixed; width: 30px; height: 30px; border: 2px solid var(--accent2);
    border-radius: 50%; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.25s;
    box-shadow: 0 0 16px rgba(0, 229, 160, 0.4);
}
.cursor.hover { width: 52px; height: 52px; border-color: #b08fff; background: rgba(108, 63, 181, 0.1); box-shadow: 0 0 30px rgba(108, 63, 181, 0.6); }
.cursor.playing { border-color: var(--accent3); animation: cursorPulse 0.7s ease-in-out infinite; }
@keyframes cursorPulse {
    0%, 100% { box-shadow: 0 0 14px rgba(255, 77, 166, 0.35); }
    50% { box-shadow: 0 0 32px rgba(255, 77, 166, 0.8); }
}
.cursor-dot {
    position: fixed; width: 7px; height: 7px; background: var(--accent2);
    border-radius: 50%; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px var(--accent2), 0 0 24px var(--accent2);
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; z-index: 1001;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3), var(--accent4), var(--accent5));
    background-size: 200% 100%; animation: progressMove 3s linear infinite;
    transition: width 0.15s linear;
}
@keyframes progressMove { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 1002;
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--accent); color: #fff; border: none; cursor: pointer;
    font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 0 20px rgba(108,63,181,0.5);
}
.scroll-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-to-top:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 0 35px rgba(108,63,181,0.8); background: #8b5cf6; }

/* ===== MINI PLAYER ===== */
.mini-player {
    position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(120px);
    z-index: 1002; display: flex; align-items: center; gap: 16px;
    background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border); border-radius: 50px;
    padding: 10px 24px 10px 10px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
    opacity: 0;
}
.mini-player.visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.mini-player-btn {
    width: 40px; height: 40px; border-radius: 50%; border: none;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    color: #fff; font-size: 0.85rem; cursor: pointer;
    box-shadow: 0 0 15px rgba(108,63,181,0.5);
    transition: all var(--transition); flex-shrink: 0;
}
.mini-player-btn:hover { transform: scale(1.1); }
.mini-player-title { font-weight: 600; font-size: 0.88rem; color: var(--text); white-space: nowrap; max-width: 200px; overflow: hidden; text-overflow: ellipsis; }
.mini-player-wave { display: flex; gap: 2px; align-items: flex-end; height: 18px; }
.mini-player-wave span { display: block; width: 2px; background: var(--accent2); border-radius: 2px; animation: miniWave 0.6s ease-in-out infinite alternate; }
.mini-player-wave span:nth-child(odd) { animation-delay: 0.3s; height: 8px; }
.mini-player-wave span:nth-child(even) { height: 14px; }
@keyframes miniWave { from { transform: scaleY(0.4); } to { transform: scaleY(1); } }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--nav-bg); backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--card-border);
    transition: all var(--transition);
}
.nav.scrolled {
    background: rgba(10, 10, 15, 0.97); border-bottom-color: rgba(0, 229, 160, 0.35);
    box-shadow: 0 4px 40px rgba(108, 63, 181, 0.25);
}
.nav-inner { max-width: 1300px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; height: 72px; }
.nav-logo {
    font-family: 'Russo One', sans-serif; font-size: 1.7rem; text-decoration: none; letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent2), #b08fff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 0 12px rgba(0, 229, 160, 0.5));
    transition: filter var(--transition);
}
.nav-logo:hover { filter: drop-shadow(0 0 22px rgba(0, 229, 160, 0.8)); }
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a {
    color: var(--text3); text-decoration: none; font-size: 0.82rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.8px; position: relative;
    transition: color var(--transition); padding: 6px 0;
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
    background: var(--accent2); border-radius: 2px; transition: width var(--transition); box-shadow: 0 0 10px var(--accent2);
}
.nav-links a:hover { color: #fff; text-shadow: 0 0 14px rgba(0, 229, 160, 0.6); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; cursor: pointer; }
.nav-toggle span { display: block; width: 28px; height: 2.5px; background: var(--text); transition: all 0.3s; border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; background: transparent; overflow: hidden;
}
.hero-waves { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.6; }
.hero-bg-image {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("черное небо.jpg"); background-size: cover; background-position: center;
    opacity: 0.2; z-index: 0; animation: heroBgPulse 8s ease-in-out infinite;
    will-change: transform, opacity;
}
.hero-bg-slideshow {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover; background-position: center; z-index: 0;
    opacity: 0; transition: opacity 1.5s ease; will-change: opacity;
}
.hero-bg-slideshow.active { opacity: 0.25; }
@keyframes heroBgPulse { 0%, 100% { opacity: 0.2; transform: scale(1); } 50% { opacity: 0.32; transform: scale(1.06); } }
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
    background: radial-gradient(ellipse at 30% 20%, rgba(108, 63, 181, 0.4) 0%, transparent 55%),
                radial-gradient(ellipse at 70% 80%, rgba(0, 229, 160, 0.15) 0%, transparent 55%),
                linear-gradient(to top, #0a0a0f 0%, transparent 40%, #0a0a0f 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 24px; animation: fadeInUp 1.2s ease; }
.hero-badge {
    display: inline-block; padding: 6px 20px; border-radius: 50px;
    background: rgba(108,63,181,0.2); border: 1px solid rgba(108,63,181,0.4);
    color: #c4b5fd; font-size: 0.78rem; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 28px;
    backdrop-filter: blur(8px); animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title {
    font-family: 'Russo One', sans-serif; font-size: clamp(3.8rem, 10vw, 8rem);
    letter-spacing: 10px; margin-bottom: 16px; position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 40%, var(--accent2) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 0 50px rgba(108, 63, 181, 0.8)) drop-shadow(0 0 18px rgba(0, 229, 160, 0.5));
}
.hero-title-char {
    display: inline-block;
    animation: charBounce 2s ease-in-out infinite;
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title-char:nth-child(1) { animation-delay: 0s; }
.hero-title-char:nth-child(2) { animation-delay: 0.1s; }
.hero-title-char:nth-child(3) { animation-delay: 0.2s; }
.hero-title-char:nth-child(4) { animation-delay: 0.3s; }
.hero-title-char:nth-child(5) { animation-delay: 0.4s; }
.hero-title-char:nth-child(6) { animation-delay: 0.5s; }
.hero-title-char:nth-child(7) { animation-delay: 0.6s; }
.hero-title-char:nth-child(8) { animation-delay: 0.7s; }
.hero-title-char:nth-child(9) { animation-delay: 0.8s; }
@keyframes charBounce {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-12px); }
    50% { transform: translateY(0); }
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: #c8c8d8; font-weight: 400;
    letter-spacing: 5px; margin-bottom: 14px; text-transform: uppercase;
    text-shadow: 0 0 20px rgba(176, 143, 255, 0.5); min-height: 1.5em;
}
.hero-description { font-size: 1.1rem; color: var(--text3); font-weight: 300; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-btn {
    display: inline-block; padding: 16px 40px; border-radius: 50px;
    color: #fff; text-decoration: none; font-weight: 600; font-size: 0.9rem;
    letter-spacing: 2px; text-transform: uppercase;
    transition: all 0.4s; position: relative; overflow: hidden;
}
.hero-btn-primary {
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    box-shadow: 0 0 35px rgba(108, 63, 181, 0.5), 0 0 60px rgba(108, 63, 181, 0.2);
}
.hero-btn-secondary {
    background: transparent; border: 2px solid rgba(0,229,160,0.4);
    box-shadow: 0 0 15px rgba(0,229,160,0.15);
}
.hero-btn-secondary:hover { border-color: var(--accent2); background: rgba(0,229,160,0.08); }
.hero-btn-glow { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.7s; }
.hero-btn:hover { transform: translateY(-4px); }
.hero-btn-primary:hover { box-shadow: 0 0 50px rgba(108, 63, 181, 0.8), 0 0 80px rgba(0, 229, 160, 0.3), 0 14px 40px rgba(0,0,0,0.6); }
.hero-btn:hover .hero-btn-glow { left: 100%; }
.hero-btn-ripple { position: absolute; inset: 0; pointer-events: none; }
.hero-btn-ripple::after {
    content: ''; position: absolute; inset: -2px; border-radius: 52px;
    border: 2px solid var(--accent2);
    animation: rippleOut 2s ease-out infinite;
    opacity: 0;
}
@keyframes rippleOut { 0% { inset: -2px; opacity: 0.7; } 100% { inset: -16px; opacity: 0; } }
.hero-stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; align-items: center; }
.hero-stat { text-align: center; min-width: 90px; }
.hero-stat-num { display: block; font-family: 'Russo One', sans-serif; font-size: 2rem; background: linear-gradient(135deg, var(--accent2), #fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat-lbl { font-size: 0.72rem; color: var(--text3); text-transform: uppercase; letter-spacing: 2px; }
.hero-stat-divider { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(108,63,181,0.4), transparent); display: block; flex-shrink: 0; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll span { display: block; width: 32px; height: 52px; border: 2px solid rgba(255,255,255,0.2); border-radius: 20px; position: relative; }
.hero-scroll span::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 10px; background: var(--accent2); border-radius: 2px; animation: scrollAnim 2s ease-in-out infinite; box-shadow: 0 0 12px var(--accent2); }
@keyframes scrollAnim { 0%,100% { top: 8px; opacity: 1; } 50% { top: 30px; opacity: 0.2; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-bpm-pulse { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); width: 60px; height: 60px; border-radius: 50%; border: 1px solid rgba(255,77,166,0.3); z-index: 2; pointer-events: none; animation: bpmPulse 1s ease-in-out infinite; }
@keyframes bpmPulse { 0%,100% { transform: translateX(-50%) scale(1); opacity: 0; } 50% { transform: translateX(-50%) scale(1.5); opacity: 0.5; } }

/* ===== SECTION COMMON ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-title {
    font-family: 'Russo One', sans-serif; font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: #fff; text-align: center; margin-bottom: 18px; letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(176, 143, 255, 0.4);
    position: relative; display: inline-block; left: 50%; transform: translateX(-50%);
}
.title-accent {
    background: linear-gradient(135deg, var(--accent2), var(--accent3));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-title::after {
    content: ''; display: block; width: 70px; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
    margin: 14px auto 0; border-radius: 3px; box-shadow: 0 0 14px rgba(0, 229, 160, 0.4);
}
.section-subtitle { text-align: center; color: var(--text3); font-weight: 300; margin-bottom: 56px; font-size: 1.05rem; }

/* ===== ABOUT ===== */
.about { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; margin-bottom: 56px; align-items: start; }
.about-text p { margin-bottom: 18px; color: var(--text2); font-weight: 300; font-size: 1rem; line-height: 1.85; }
.about-intro { font-size: 1.2rem !important; color: #d8d8e8 !important; }
.about-intro strong { color: var(--accent2); font-weight: 700; }
.highlight-name {
    background: linear-gradient(135deg, #c4b5fd, #fff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-weight: 700;
}
.about-quote {
    margin-top: 28px; padding: 20px 24px; border-left: 3px solid var(--accent);
    background: rgba(108,63,181,0.06); border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic; color: #a0a0b8; font-size: 0.95rem; line-height: 1.7;
}
.about-quote cite { display: block; margin-top: 10px; font-style: normal; font-weight: 600; color: var(--accent2); font-size: 0.85rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-content: start; }
.stat {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: var(--radius); padding: 28px 20px; text-align: center;
    transition: all var(--transition); position: relative; overflow: hidden;
    transform-style: preserve-3d; perspective: 1000px;
}
.stat::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,229,160,0.08), transparent 70%);
    opacity: 0; transition: opacity var(--transition);
}
.stat:hover::before { opacity: 1; }
.stat:hover {
    border-color: rgba(0, 229, 160, 0.5); background: rgba(0, 229, 160, 0.05);
    box-shadow: 0 0 35px rgba(0, 229, 160, 0.2), 0 12px 35px rgba(0,0,0,0.4); transform: translateY(-8px);
}
.stat-icon { display: block; font-size: 1.8rem; margin-bottom: 4px; }
.stat-number { display: block; font-family: 'Russo One', sans-serif; font-size: 2.6rem; background: linear-gradient(135deg, var(--accent2), #00c9a0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { display: block; font-size: 0.78rem; color: var(--text3); text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }

/* CHAMELEON LOGO */
.chameleon-logo-container { text-align: center; margin: 40px 0 48px; cursor: pointer; }
.chameleon-logo { filter: drop-shadow(0 0 30px rgba(108, 63, 181, 0.5)); max-width: 260px; transition: transform var(--transition); }
.chameleon-logo-container:hover .chameleon-logo { transform: scale(1.08); }
.chameleon-caption { color: var(--text3); font-size: 0.9rem; margin-top: 12px; letter-spacing: 2px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.chameleon-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--accent2);
    display: inline-block; animation: dotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent2);
}
@keyframes dotPulse { 0%,100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.6); } }

/* AUTHOR */
.author-card {
    display: flex; align-items: center; gap: 28px; padding: 28px 36px;
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: var(--radius-lg); max-width: fit-content; transition: all var(--transition);
    transform-style: preserve-3d; perspective: 1000px; margin: 0 auto;
}
.author-card:hover { border-color: rgba(108, 63, 181, 0.5); box-shadow: 0 0 40px rgba(108, 63, 181, 0.3); }
.author-avatar { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; position: relative; filter: drop-shadow(0 0 16px rgba(108, 63, 181, 0.6)); }
.author-avatar-ring {
    position: absolute; inset: -5px; border-radius: 50%;
    border: 2px solid transparent; border-top-color: var(--accent2);
    animation: ringSpin 3s linear infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.author-info h3 { color: #fff; font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; }
.author-info p { color: var(--text2); font-size: 0.9rem; font-weight: 300; margin-bottom: 10px; }
.author-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.author-tags span {
    padding: 4px 12px; border-radius: 20px; font-size: 0.72rem;
    background: rgba(108,63,181,0.15); border: 1px solid rgba(108,63,181,0.25);
    color: #c4b5fd;
}

/* ===== SONGS / PLAYER ===== */
.songs { padding: 120px 0; }
.player-wrapper { display: flex; align-items: center; justify-content: center; gap: 48px; max-width: 850px; margin: 0 auto 16px; flex-wrap: wrap; }

/* VINYL PLAYER */
.vinyl-player { position: relative; width: 220px; height: 220px; flex-shrink: 0; }
.vinyl-platter { position: relative; width: 220px; height: 220px; }
.vinyl-disc-outer {
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle at center, #1a1a2e 0%, #1a1a2e 18%, #111 18.2%, #1a1a2e 18.5%, #111 19%, #1a1a2e 19.5%, #111 20%, #1a1a2e 20.5%, #111 21%, #1a1a2e 21.5%, #1a1a2e 65%, #222 66%, #1a1a2e 100%);
    box-shadow: 0 0 45px rgba(0,0,0,0.6), 0 0 85px rgba(108,63,181,0.25), inset 0 0 35px rgba(0,0,0,0.4);
    position: relative; transition: transform 0.15s linear;
    animation: vinylShine 3s ease-in-out infinite;
}
@keyframes vinylShine { 0%,100% { box-shadow: 0 0 45px rgba(0,0,0,0.6), 0 0 85px rgba(108,63,181,0.25), inset 0 0 35px rgba(0,0,0,0.4); } 50% { box-shadow: 0 0 55px rgba(0,0,0,0.7), 0 0 110px rgba(108,63,181,0.4), inset 0 0 40px rgba(0,0,0,0.5); } }
.vinyl-disc-outer.spinning { animation: vinylSpin 2s linear infinite, vinylShine 3s ease-in-out infinite; }
@keyframes vinylSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.vinyl-label-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #8b5cf6); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 25px rgba(108,63,181,0.6); z-index: 1; }
.vinyl-label-title { font-family: 'Russo One', sans-serif; font-size: 0.5rem; color: #fff; text-align: center; letter-spacing: 1px; line-height: 1.2; }
.vinyl-shine { position: absolute; top: 15%; left: 20%; width: 35%; height: 20%; background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent); border-radius: 50%; transform: rotate(-25deg); pointer-events: none; z-index: 2; }
.tonearm-assembly { position: absolute; top: -20px; right: -40px; transform-origin: top right; transform: rotate(28deg); transition: transform 0.5s ease; z-index: 3; }
.tonearm-assembly.playing { transform: rotate(16deg); }
.tonearm-base { width: 18px; height: 18px; border-radius: 50%; background: #555; position: absolute; top: 0; right: -8px; box-shadow: 0 0 14px rgba(0,0,0,0.5); }
.tonearm-arm { width: 140px; height: 3px; background: linear-gradient(90deg, #666, #999); position: absolute; top: 8px; right: 8px; transform-origin: right center; border-radius: 2px; }
.tonearm-headshell { width: 14px; height: 10px; background: #777; position: absolute; top: 4px; left: -12px; border-radius: 2px; box-shadow: 0 0 8px rgba(0,0,0,0.4); }

/* PLAYER BOX */
.player {
    width: 100%; max-width: 460px; background: var(--glass);
    border: 1px solid var(--card-border); border-radius: var(--radius-lg);
    padding: 28px; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 35px rgba(108, 63, 181, 0.15), 0 8px 40px rgba(0,0,0,0.35);
}
.player-play-area { display: flex; justify-content: center; margin-bottom: 14px; }
.player-btn-play-lg {
    width: 76px; height: 76px; border-radius: 50%; border: none;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    color: #fff; font-size: 1.5rem; cursor: pointer; position: relative;
    box-shadow: 0 0 40px rgba(108,63,181,0.6), 0 0 25px rgba(0,229,160,0.25);
    transition: all var(--transition); display: flex; align-items: center; justify-content: center;
    animation: btnPulse 2.5s ease-in-out infinite;
}
@keyframes btnPulse { 0%,100% { box-shadow: 0 0 40px rgba(108,63,181,0.6), 0 0 25px rgba(0,229,160,0.25); } 50% { box-shadow: 0 0 60px rgba(108,63,181,0.95), 0 0 40px rgba(0,229,160,0.5); } }
.player-btn-play-lg::before {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3), var(--accent));
    background-size: 300% 300%; animation: playGlow 3s ease-in-out infinite; z-index: -1; opacity: 0.6;
}
@keyframes playGlow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.player-btn-play-lg:hover { transform: scale(1.12); box-shadow: 0 0 55px rgba(108,63,181,0.9), 0 0 35px rgba(0,229,160,0.6); }
.player-btn-play-lg:hover::before { opacity: 1; }
.play-lg-icon { display: block; line-height: 1; }

.player-now-playing { text-align: center; margin-bottom: 14px; }
.player-track-name { font-weight: 600; font-size: 1.1rem; color: #fff; text-shadow: 0 0 14px rgba(0, 229, 160, 0.4); }
.player-controls { display: flex; justify-content: center; align-items: center; gap: 14px; margin-bottom: 18px; }
.player-btn {
    border: 1px solid rgba(255,255,255,0.1); color: #c0c0d0;
    width: 44px; height: 44px; border-radius: 50%;
    transition: all var(--transition); display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.player-btn:hover { border-color: var(--accent2); color: var(--accent2); background: rgba(0, 229, 160, 0.08); box-shadow: 0 0 20px rgba(0, 229, 160, 0.3); transform: scale(1.1); }
.player-btn-shuffle.active-shuffle { color: var(--accent2); border-color: var(--accent2); box-shadow: 0 0 14px rgba(0,229,160,0.4); }
.player-btn.active-repeat { color: var(--accent3); border-color: var(--accent3); box-shadow: 0 0 14px rgba(255,77,166,0.4); }

.player-progress-container { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.player-time { font-size: 0.75rem; color: var(--text3); font-variant-numeric: tabular-nums; min-width: 38px; font-family: 'JetBrains Mono', monospace; }
.player-progress { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 6px; cursor: pointer; position: relative; overflow: visible; }
.player-progress-fill {
    height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
    border-radius: 6px; width: 0%; box-shadow: 0 0 12px rgba(0, 229, 160, 0.5);
    transition: width 0.15s linear; position: relative;
}
.player-progress-thumb {
    position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
    width: 14px; height: 14px; background: #fff; border-radius: 50%;
    box-shadow: 0 0 14px var(--accent2); opacity: 0; transition: opacity 0.2s;
}
.player-progress:hover .player-progress-thumb { opacity: 1; }
.player-speed-row { display: flex; justify-content: center; gap: 6px; margin-bottom: 14px; }
.speed-btn {
    padding: 7px 16px; border-radius: 20px; border: 1px solid var(--card-border);
    background: var(--card-bg); color: var(--text2); font-size: 0.75rem;
    transition: all var(--transition); font-family: 'JetBrains Mono', monospace; font-weight: 500;
    text-align: center;
}
.speed-btn:hover { border-color: var(--accent2); color: var(--accent2); background: rgba(0,229,160,0.08); box-shadow: 0 0 10px rgba(0,229,160,0.15); }
.speed-btn.active { background: linear-gradient(135deg, var(--accent), #8b5cf6); border-color: var(--accent); color: #fff; box-shadow: 0 0 15px rgba(108,63,181,0.4); }

.player-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.player-volume { display: flex; align-items: center; gap: 8px; }
.volume-icon { font-size: 0.9rem; color: var(--text2); cursor: pointer; }
.volume-slider { -webkit-appearance: none; appearance: none; width: 100px; height: 5px; background: rgba(255,255,255,0.08); border-radius: 5px; outline: none; cursor: pointer; }
.volume-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; background: var(--accent2); border-radius: 50%; cursor: pointer; box-shadow: 0 0 12px var(--accent2); }

/* TRACKLIST */
.tracklist { display: grid; gap: 8px; max-width: 680px; margin: 24px auto 0; }
.track-item {
    display: flex; align-items: center; gap: 16px; padding: 14px 20px;
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition);
    position: relative; overflow: hidden; transform-style: preserve-3d; perspective: 1000px;
}
.track-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--accent), var(--accent2), var(--accent3)); border-radius: 0 3px 3px 0; opacity: 0; transition: opacity var(--transition); }
.track-item:hover { background: var(--card-hover); border-color: rgba(108, 63, 181, 0.35); box-shadow: 0 0 28px rgba(108, 63, 181, 0.18); transform: translateX(4px); }
.track-item.active { background: rgba(108, 63, 181, 0.15); border-color: rgba(0, 229, 160, 0.5); box-shadow: 0 0 35px rgba(0, 229, 160, 0.25), 0 0 20px rgba(108, 63, 181, 0.3); }
.track-item.active::before { opacity: 1; }
.track-num { font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; color: #555570; min-width: 28px; text-align: center; }
.track-item.active .track-num { color: var(--accent2); text-shadow: 0 0 12px var(--accent2); }
.track-info { flex: 1; min-width: 0; }
.track-title { font-weight: 600; font-size: 0.95rem; color: #d0d0e0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-item.active .track-title { color: #fff; }
.track-meta { font-size: 0.7rem; color: #6a6a80; margin-top: 3px; }
.track-playing-indicator { display: none; gap: 2px; align-items: flex-end; height: 15px; }
.track-item.active .track-playing-indicator { display: flex; }
.track-item.active .track-num-text { display: none; }
.track-playing-indicator span { display: block; width: 3px; background: var(--accent2); border-radius: 2px; animation: equalizer 0.7s ease-in-out infinite; box-shadow: 0 0 5px var(--accent2); }
.track-playing-indicator span:nth-child(1) { height: 7px; }
.track-playing-indicator span:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.track-playing-indicator span:nth-child(3) { height: 10px; animation-delay: 0.3s; }
.track-playing-indicator span:nth-child(4) { height: 5px; animation-delay: 0.45s; }
@keyframes equalizer { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(0.3); } }

/* ===== VISUALIZER ===== */
.visualizer-section { padding: 100px 0; }
.visualizer-container { max-width: 850px; margin: 0 auto; }
.visualizer-canvas {
    width: 100%; height: auto; border-radius: var(--radius-lg);
    background: rgba(0,0,0,0.4); border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
}
.visualizer-controls { display: flex; justify-content: center; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.vis-mode-btn {
    padding: 12px 24px; border-radius: 25px; border: 1px solid var(--card-border);
    background: var(--card-bg); color: var(--text2); font-size: 0.88rem;
    transition: all var(--transition); font-family: 'Montserrat', sans-serif;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.vis-mode-btn:hover { border-color: var(--accent2); color: var(--accent2); background: rgba(0,229,160,0.06); }
.vis-mode-btn.active { background: linear-gradient(135deg, rgba(0,229,160,0.2), rgba(108,63,181,0.2)); border-color: var(--accent2); color: var(--accent2); box-shadow: 0 0 22px rgba(0,229,160,0.35); }
.vis-icon { font-size: 1rem; font-weight: 700; }

/* ===== COVERS ===== */
.covers { padding: 120px 0; }
.covers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 950px; margin: 0 auto; }
.cover-item {
    border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1;
    border: 2px solid var(--card-border); transition: all var(--transition); cursor: pointer;
    position: relative; background: rgba(10,10,20,0.6);
}
.cover-item:hover { transform: translateY(-8px); border-color: rgba(0, 229, 160, 0.55); box-shadow: 0 12px 40px rgba(0,0,0,0.55), 0 0 30px rgba(0, 229, 160, 0.25); }
.cover-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cover-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 14px; background: linear-gradient(transparent, rgba(0,0,0,0.95)); color: #fff; font-size: 0.75rem; font-weight: 500; opacity: 0; transition: opacity var(--transition); text-align: center; letter-spacing: 1px; }
.cover-item:hover .cover-label { opacity: 1; }

/* ===== LYRICS ===== */
.lyrics { padding: 120px 0; }
.lyrics-accordion { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lyrics-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.lyrics-item:hover { border-color: rgba(108, 63, 181, 0.4); box-shadow: 0 0 24px rgba(108, 63, 181, 0.12); }
.lyrics-header { width: 100%; display: flex; align-items: center; gap: 12px; padding: 20px 28px; background: none; border: none; color: #d8d8e8; font-size: 1.1rem; font-weight: 600; font-family: 'Montserrat', sans-serif; cursor: pointer; text-align: left; }
.lyrics-header-icon { font-size: 1.3rem; flex-shrink: 0; }
.lyrics-header span:nth-child(2) { flex: 1; }
.lyrics-arrow { font-size: 0.7rem; color: var(--text3); transition: transform var(--transition); }
.lyrics-item.open .lyrics-arrow { transform: rotate(180deg); color: var(--accent2); text-shadow: 0 0 8px var(--accent2); }
.lyrics-item.open { border-color: rgba(0, 229, 160, 0.4); box-shadow: 0 0 35px rgba(0, 229, 160, 0.2); background: rgba(20, 20, 40, 0.75); }
.lyrics-body { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.lyrics-body pre { padding: 0 28px 28px; font-family: 'Montserrat', sans-serif; font-size: 0.92rem; line-height: 2; color: #a8a8c0; white-space: pre-wrap; font-weight: 300; }
.lyrics-item.open .lyrics-body { max-height: 6000px; }

/* ===== GALLERY ===== */
.gallery { padding: 120px 0; }
.gallery-filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.gallery-filter {
    padding: 8px 22px; border-radius: 25px; border: 1px solid var(--card-border);
    background: var(--card-bg); color: var(--text2); font-size: 0.82rem; cursor: pointer;
    transition: all var(--transition); font-family: 'Montserrat', sans-serif;
}
.gallery-filter:hover { border-color: var(--accent2); color: var(--accent2); }
.gallery-filter.active { background: rgba(0,229,160,0.15); border-color: var(--accent2); color: var(--accent2); box-shadow: 0 0 15px rgba(0,229,160,0.3); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.gallery-item {
    position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
    aspect-ratio: 1; background: rgba(15, 15, 28, 0.6); transition: all var(--transition);
    border: 2px solid var(--card-border); transform-style: preserve-3d; perspective: 1000px;
}
.gallery-item:hover { transform: translateY(-8px); border-color: rgba(0, 229, 160, 0.5); box-shadow: 0 0 40px rgba(0, 229, 160, 0.25), 0 20px 50px rgba(0,0,0,0.55); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 18px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); color: #fff; font-weight: 500; font-size: 0.9rem; opacity: 0; transform: translateY(12px); transition: all var(--transition); }
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* LIGHTBOX */
.lightbox { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.97); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-close { position: absolute; top: 28px; right: 40px; font-size: 3rem; color: #fff; cursor: pointer; z-index: 2001; transition: all var(--transition); }
.lightbox-close:hover { color: var(--accent2); text-shadow: 0 0 25px var(--accent2); transform: scale(1.15); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; z-index: 2001; padding: 16px; transition: all var(--transition); opacity: 0.5; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; color: var(--accent2); text-shadow: 0 0 20px var(--accent2); }
.lightbox-img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius-sm); box-shadow: 0 30px 80px rgba(0,0,0,0.8); object-fit: contain; }

/* ===== FOOTER ===== */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--card-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: 'Russo One', sans-serif; font-size: 1.8rem; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; filter: drop-shadow(0 0 14px rgba(108, 63, 181, 0.5)); }
.footer-text { color: var(--text2); font-size: 0.9rem; margin-bottom: 16px; }
.footer-waveform { height: 40px; display: flex; align-items: flex-end; gap: 2px; opacity: 0.5; }
.footer-waveform span { flex: 1; background: linear-gradient(to top, var(--accent), var(--accent2)); border-radius: 2px 2px 0 0; animation: footerWave 1.5s ease-in-out infinite alternate; }
.footer-waveform span:nth-child(odd) { animation-delay: 0.3s; }
@keyframes footerWave { from { height: 30%; } to { height: 100%; } }
.footer-links-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.footer-links-col a { display: block; color: var(--text3); text-decoration: none; font-size: 0.82rem; margin-bottom: 8px; transition: color var(--transition); }
.footer-links-col a:hover { color: var(--accent2); }
.footer-genre-tag { display: inline-block; padding: 5px 14px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; font-size: 0.75rem; color: #b0b0c0; letter-spacing: 1px; margin: 0 4px 8px 0; transition: all var(--transition); cursor: pointer; }
.footer-genre-tag:hover { background: rgba(0, 229, 160, 0.1); border-color: rgba(0, 229, 160, 0.5); color: #fff; box-shadow: 0 0 15px rgba(0, 229, 160, 0.25); }
.footer-random-quote { padding: 16px 20px; background: var(--card-bg); border-radius: var(--radius-sm); border-left: 3px solid var(--accent); }
.quote-mark { color: var(--accent2); font-family: 'Russo One', sans-serif; font-size: 1.5rem; opacity: 0.5; }
.quote-text { color: var(--text2); font-style: italic; font-size: 0.88rem; line-height: 1.5; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-copyright { color: #606078; font-size: 0.8rem; }
.footer-city { color: #505068; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 3px; display: flex; align-items: center; gap: 6px; }
.footer-days { color: var(--accent2); font-size: 0.78rem; font-weight: 500; }

/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; z-index: 3000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; }
.modal.open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(6px); }
.modal-content {
    position: relative; background: var(--bg2); border: 1px solid var(--card-border);
    border-radius: var(--radius-lg); padding: 36px; max-width: 420px; width: 90%;
    text-align: center; box-shadow: var(--shadow-lg);
}
.modal-content h3 { font-size: 1.3rem; color: #fff; margin-bottom: 8px; }
.modal-content p { color: var(--text2); margin-bottom: 20px; }
.sleep-options { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 16px; }
.sleep-option {
    padding: 10px 20px; border-radius: 25px; border: 1px solid var(--card-border);
    background: var(--card-bg); color: var(--text2); cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-size: 0.85rem; transition: all var(--transition);
}
.sleep-option:hover { border-color: var(--accent2); color: var(--accent2); }
.sleep-status { color: var(--accent2); font-size: 0.85rem; margin-bottom: 16px; min-height: 1.5em; }
.modal-close {
    padding: 10px 28px; border-radius: 25px; border: 1px solid var(--card-border);
    background: var(--card-bg); color: var(--text2); cursor: pointer;
    font-family: 'Montserrat', sans-serif; transition: all var(--transition);
}
.modal-close:hover { border-color: var(--accent3); color: var(--accent3); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== EASTER EGG: KONAMI DISCO ===== */
body.disco-mode { animation: discoColors 0.3s linear infinite; }
body.disco-mode .aurora { opacity: 0.7 !important; animation-duration: 0.5s !important; }
body.disco-mode .player-btn-play-lg { animation: btnPulse 0.3s ease-in-out infinite; }
body.disco-mode .hero-title { animation: glitch 0.3s infinite; }
@keyframes discoColors {
    0% { background-color: #ff0000; } 16% { background-color: #ff8800; }
    32% { background-color: #ffff00; } 48% { background-color: #00ff00; }
    64% { background-color: #0088ff; } 80% { background-color: #8800ff; }
    100% { background-color: #ff0088; }
}
@keyframes glitch { 0%,100% { transform: none; } 20% { transform: translate(-3px,2px) skew(2deg); } 40% { transform: translate(3px,-1px) skew(-1deg); } 60% { transform: translate(-1px,-2px); } 80% { transform: translate(2px,1px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .cursor, .cursor-dot { display: none; }
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: var(--nav-bg); backdrop-filter: blur(24px); flex-direction: column; align-items: center; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s, padding 0.4s; border-bottom: 1px solid var(--card-border); }
    .nav-links.open { max-height: 400px; padding: 20px 0; }
    .nav-links a { display: block; padding: 14px 0; font-size: 0.9rem; }
    .container { padding: 0 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr; max-width: 420px; }
    .covers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .player { padding: 22px 16px; }
    .track-item { padding: 12px 14px; }
    .hero-btn { padding: 14px 32px; font-size: 0.82rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .author-card { flex-direction: column; text-align: center; }
    .player-wrapper { gap: 24px; }
    .vinyl-player { width: 170px; height: 170px; }
    .vinyl-disc-outer { width: 170px; height: 170px; }
    .vinyl-platter { width: 170px; height: 170px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    section { padding: 80px 0 !important; }
    .hero-stats { gap: 20px; }
    .mini-player { bottom: 20px; padding: 8px 18px 8px 8px; }
    .mini-player-title { max-width: 120px; font-size: 0.78rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.8rem; letter-spacing: 3px; }
    .hero-title-char { animation: none; }
    .section-title { font-size: 1.9rem; }
    .covers-grid { grid-template-columns: repeat(2, 1fr); }
    .player-bottom { flex-direction: column; align-items: center; }
}