/* =========================================================
   SSEROV v4 — Dark Brutalist Minimal + Neon Accents
   Fonts: Outfit (display) + Space Mono (mono/accent)
   ========================================================= */

:root {
    --bg:           #050208;
    --bg-elevated:  #0c0815;
    --bg-card:      #0f0a1a;
    --bg-hover:     #150f24;
    --surface:      rgba(139, 92, 246, 0.06);

    --text:         #e8e4f0;
    --text-muted:   #8a82a0;
    --text-dim:     #4a4360;

    --accent:       #8b5cf6;
    --accent-hot:   #a78bfa;
    --accent-glow:  #c4b5fd;
    --accent-deep:  #6d28d9;

    --neon-glow:    0 0 20px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.2);

    --line:         rgba(139, 92, 246, 0.1);
    --line-strong:  rgba(139, 92, 246, 0.25);

    --font-display: 'Outfit', system-ui, sans-serif;
    --font-mono:    'Space Mono', ui-monospace, monospace;

    --max-w:        1320px;
    --px:           clamp(20px, 5vw, 80px);
    --r:            12px;

    --ease:         cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out:     cubic-bezier(0, 0, 0.2, 1);
    --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-display);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-deep); border-radius: 4px; }

/* ---------- Focus visible ---------- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------- Background mesh gradient ---------- */
.bg-mesh {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -4;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(109, 40, 217, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 40% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 90% 90%, rgba(88, 28, 135, 0.1) 0%, transparent 40%);
    animation: meshShift 30s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes meshShift {
    0%   { filter: hue-rotate(0deg); }
    50%  { filter: hue-rotate(8deg); }
    100% { filter: hue-rotate(0deg); }
}

/* ---------- Noise overlay ---------- */
.bg-noise {
    position: fixed; top: -50%; left: -50%;
    width: 200%; height: 200%;
    z-index: 9998;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    animation: grainDrift 8s steps(10) infinite;
    will-change: transform;
}
@keyframes grainDrift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(-10%, -5%); }
    90% { transform: translate(5%, 10%); }
}

/* ---------- Particles Canvas ---------- */
#particlesCanvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -3; pointer-events: none;
}

/* ---------- Custom Cursor ---------- */
.cursor {
    position: fixed; width: 6px; height: 6px;
    background: var(--accent-glow); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transition: opacity 0.3s;
    transform: translate(-50%, -50%);
    will-change: transform;
}
.cursor-ring {
    position: fixed; width: 32px; height: 32px;
    border: 1.5px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%; pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
    will-change: transform;
}
.cursor-hover .cursor-ring { width: 48px; height: 48px; border-color: var(--accent); }

/* ---------- Loader ---------- */
.loader {
    position: fixed; inset: 0; background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-bar {
    width: 200px; height: 2px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 2px; overflow: hidden; margin-bottom: 16px;
}
.loader-fill {
    height: 100%; width: 0;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent-hot));
    border-radius: 2px;
    transition: width 0.15s linear;
}
.loader-text {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

/* ---------- Header ---------- */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    display: flex; align-items: center;
    padding: 0 var(--px);
    height: 64px;
    z-index: 1000;
    transition: background 0.3s, backdrop-filter 0.3s;
}
.header.scrolled {
    background: rgba(5, 2, 8, 0.85);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border-bottom: 1px solid var(--line);
}
.brand {
    font-family: var(--font-mono);
    font-size: 18px; font-weight: 700;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, var(--accent-hot), var(--accent-glow));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: auto;
}
.nav ul { display: flex; list-style: none; gap: 8px; }
.nav a {
    font-size: 13px; font-weight: 500;
    color: var(--text-muted);
    padding: 6px 14px; border-radius: 20px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.02em;
}
.nav a:hover, .nav a.active {
    color: var(--text);
    background: rgba(139, 92, 246, 0.1);
}
.nav a.active { color: var(--accent-hot); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span {
    display: block; width: 22px; height: 1.5px;
    background: var(--text-muted);
    transition: transform 0.3s var(--ease), opacity 0.3s, background 0.2s;
    border-radius: 1px;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Section layout ---------- */
.section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(60px, 10vw, 120px) var(--px);
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.section.in { opacity: 1; transform: none; }

.section-label {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: clamp(32px, 5vw, 56px);
}
.section-label span:first-child {
    font-family: var(--font-mono);
    font-size: 11px; color: var(--accent);
    letter-spacing: 0.12em;
}
.section-label span:last-child {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700; letter-spacing: -0.01em;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
    max-width: var(--max-w); margin: 0 auto;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100svh;
    display: flex; align-items: center;
    padding: 80px var(--px) 60px;
    max-width: var(--max-w); margin: 0 auto;
    position: relative;
    gap: 40px;
}
.hero-bg-glow {
    position: absolute; border-radius: 50%; pointer-events: none;
    width: 600px; height: 600px;
    top: -100px; left: -200px;
    background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
    animation: glowPulse 8s ease-in-out infinite;
}
.hero-bg-glow-2 {
    width: 400px; height: 400px;
    top: auto; bottom: -100px;
    left: auto; right: -100px;
    animation-delay: -4s;
}
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.6; }
}

.hero-lines {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-lines span {
    position: absolute; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, transparent, var(--line), transparent);
    animation: lineFade 4s ease-in-out infinite;
}
.hero-lines span:nth-child(1) { left: 15%; animation-delay: 0s; }
.hero-lines span:nth-child(2) { left: 35%; animation-delay: 0.8s; }
.hero-lines span:nth-child(3) { left: 55%; animation-delay: 1.6s; }
.hero-lines span:nth-child(4) { left: 75%; animation-delay: 2.4s; }
.hero-lines span:nth-child(5) { left: 90%; animation-delay: 3.2s; }
@keyframes lineFade {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.hero-content { flex: 1; max-width: 640px; position: relative; z-index: 1; }

.hero-top {
    display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px; color: var(--text-muted);
    letter-spacing: 0.12em;
}
.hero-eq-mini {
    display: flex; align-items: flex-end; gap: 3px; height: 16px;
}
.hero-eq-mini span {
    display: block; width: 3px; border-radius: 1px;
    background: var(--accent);
    animation: eqBounce 1.2s ease-in-out infinite;
}
.hero-eq-mini span:nth-child(1) { height: 6px;  animation-delay: 0s; }
.hero-eq-mini span:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.hero-eq-mini span:nth-child(3) { height: 8px;  animation-delay: 0.3s; }
.hero-eq-mini span:nth-child(4) { height: 14px; animation-delay: 0.45s; }
.hero-eq-mini span:nth-child(5) { height: 5px;  animation-delay: 0.6s; }
@keyframes eqBounce {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

.hero-title {
    font-size: clamp(64px, 12vw, 130px);
    font-weight: 900; line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}
.hero-letter {
    display: inline-block;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-hot) 60%, var(--accent-glow) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: letterIn 0.6s var(--ease-bounce) both;
}
@keyframes letterIn {
    from { opacity: 0; transform: translateY(30px) rotate(-5deg); }
    to   { opacity: 1; transform: none; }
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: clamp(12px, 1.5vw, 15px);
    color: var(--accent); letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 20px;
}
.hero-desc {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-muted); line-height: 1.7;
    max-width: 480px; margin-bottom: 36px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.25s var(--ease);
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-deep), var(--accent));
    color: #fff;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.5);
}
.btn-outline {
    border: 1.5px solid var(--line-strong);
    color: var(--text-muted);
    background: transparent;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(139,92,246,0.06); }

.hero-stats {
    display: flex; flex-wrap: wrap; gap: 24px 40px;
}
.stat-value {
    font-family: var(--font-mono);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--text), var(--accent-hot));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 12px; color: var(--text-muted);
    letter-spacing: 0.05em; margin-top: 2px;
}

.hero-visual {
    flex: 0 0 400px; height: 400px;
    position: relative;
}
#heroCanvas { width: 100%; height: 100%; }
.hero-ring {
    position: absolute; inset: -20px; border-radius: 50%;
    border: 1px solid var(--line);
    animation: ringRotate 20s linear infinite;
}
.hero-ring-2 {
    inset: -50px;
    border-color: rgba(139,92,246,0.05);
    animation-duration: 35s;
    animation-direction: reverse;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }

.scroll-cue {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
}
.scroll-cue-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
    margin: 0 auto;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: start;
}

/* Photo */
.about-photo-wrap { position: sticky; top: 100px; }
.about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--line-strong);
    filter: saturate(0.9) brightness(0.95);
    transition: filter 0.4s;
    display: block;
}
.about-photo:hover { filter: saturate(1) brightness(1); }
.about-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-dim);
    font-size: 13px;
}
.about-photo-placeholder svg { opacity: 0.3; }

.about-body {
    display: flex; flex-direction: column; gap: 40px;
}
.about-text p {
    color: var(--text-muted);
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-aside {
    display: flex; flex-direction: column; gap: 24px;
}
.about-since {
    font-family: var(--font-mono);
    font-size: 13px; color: var(--text-muted);
    letter-spacing: 0.06em;
}
.about-since strong {
    color: var(--accent-hot);
    font-size: 28px;
    display: block;
    margin-top: 4px;
    letter-spacing: -0.02em;
}
.about-styles h3 {
    font-size: 11px; font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.about-styles ul {
    list-style: none;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.about-styles li {
    font-size: 12px; font-weight: 500;
    color: var(--accent-hot);
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    transition: background 0.2s, border-color 0.2s;
}
.about-styles li:hover { background: rgba(139,92,246,0.15); border-color: rgba(139,92,246,0.4); }

/* ---------- PLAYER ---------- */
.player {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: clamp(24px, 3vw, 36px);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}
.player.is-playing { border-color: var(--line-strong); }
.player-viz {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none; opacity: 0.6;
}

.player-now {
    display: flex; gap: 20px; align-items: center;
    margin-bottom: 28px; position: relative; z-index: 1;
}
.player-cover {
    position: relative; width: 72px; height: 72px;
    border-radius: 12px; overflow: hidden;
    flex-shrink: 0;
}
.player-cover img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.player.is-playing .player-cover img { transform: scale(1.05); }
.player-cover-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139,92,246,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}
.player.is-playing .player-cover-glow { opacity: 1; }

.player-info { flex: 1; min-width: 0; }
.player-genre {
    font-family: var(--font-mono);
    font-size: 10px; font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}
.player-info h3 {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 700;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-bottom: 4px;
}
.player-info p { font-size: 13px; color: var(--text-muted); }

.player-progress {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px; position: relative; z-index: 1;
}
.time {
    font-family: var(--font-mono);
    font-size: 12px; color: var(--text-muted);
    min-width: 40px;
}
.time:last-child { text-align: right; }

.progress-bar {
    flex: 1; height: 4px;
    background: rgba(139,92,246,0.12);
    border-radius: 4px; position: relative;
    cursor: pointer;
    transition: height 0.2s;
}
.progress-bar:hover { height: 6px; }
.progress-fill {
    height: 100%; border-radius: 4px; width: 0;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent-hot));
    transition: width 0.1s linear;
    position: relative;
}
.progress-fill.live-progress {
    width: 100% !important;
    background: linear-gradient(90deg, #ef4444, #f97316);
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.progress-knob {
    position: absolute; right: -6px; top: 50%;
    transform: translate(0, -50%);
    width: 12px; height: 12px;
    background: var(--accent-hot);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(139,92,246,0.6);
    opacity: 0;
    transition: opacity 0.2s;
}
.progress-bar:hover .progress-knob { opacity: 1; }

.player-controls {
    display: flex; align-items: center; gap: 4px;
    position: relative; z-index: 1; flex-wrap: wrap;
}
.ctrl {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--text-muted);
    transition: color 0.2s, background 0.2s;
}
.ctrl:hover { color: var(--text); background: rgba(139,92,246,0.1); }
.ctrl.active { color: var(--accent-hot); }
.ctrl-play {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--accent-deep), var(--accent));
    color: #fff !important;
    margin: 0 4px;
    box-shadow: 0 4px 16px rgba(139,92,246,0.35);
}
.ctrl-play:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(139,92,246,0.5); }
.ctrl-play:active { transform: scale(0.97); }

.volume {
    display: flex; align-items: center; gap: 4px;
    margin-left: auto;
}
#volumeSlider {
    -webkit-appearance: none; appearance: none;
    width: 80px; height: 4px;
    background: rgba(139,92,246,0.15);
    border-radius: 4px; cursor: pointer;
    outline: none;
}
#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 14px; height: 14px;
    background: var(--accent-hot); border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}
#volumeSlider::-webkit-slider-thumb:hover { transform: scale(1.3); }
#volumeSlider::-moz-range-thumb {
    width: 14px; height: 14px;
    background: var(--accent-hot); border-radius: 50%;
    cursor: pointer; border: none;
}

/* Playlist */
.playlist {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px; overflow: hidden;
}
.playlist-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}
.playlist-head h3 { font-size: 14px; font-weight: 600; }
.playlist-count {
    font-family: var(--font-mono);
    font-size: 11px; color: var(--accent);
    background: rgba(139,92,246,0.1);
    padding: 3px 10px; border-radius: 20px;
}

.playlist-item {
    display: grid;
    grid-template-columns: 36px 44px 1fr auto auto;
    align-items: center; gap: 12px;
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(139,92,246,0.04);
    transition: background 0.15s;
}
.playlist-item:last-child { border-bottom: none; }
.playlist-item:hover { background: rgba(139,92,246,0.04); }
.playlist-item.active { background: rgba(139,92,246,0.08); }
.playlist-item.active .pl-title { color: var(--accent-hot); }
.playlist-item.active .pl-num { color: var(--accent); }

.pl-num {
    font-family: var(--font-mono);
    font-size: 11px; color: var(--text-dim);
    text-align: center;
}
.pl-cover img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; }
.pl-meta { min-width: 0; }
.pl-title {
    font-size: 13px; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-bottom: 2px;
    transition: color 0.2s;
}
.pl-sub { font-size: 11px; color: var(--text-muted); }
.pl-genre {
    font-family: var(--font-mono);
    font-size: 10px; color: var(--accent);
    background: rgba(139,92,246,0.1);
    padding: 3px 8px; border-radius: 20px;
    white-space: nowrap;
}
.pl-time {
    font-family: var(--font-mono);
    font-size: 11px; color: var(--text-dim);
    text-align: right; white-space: nowrap;
}

/* Live playlist item */
.playlist-item-live {
    background: rgba(239,68,68,0.05) !important;
    border-left: 2px solid rgba(239,68,68,0.4);
}
.playlist-item-live:hover { background: rgba(239,68,68,0.08) !important; }
.playlist-item-live.active { background: rgba(239,68,68,0.12) !important; border-left-color: #ef4444; }
.playlist-item-live.active .pl-title { color: #f97316; }

.live-dot-mini {
    display: inline-block; width: 8px; height: 8px;
    background: #ef4444; border-radius: 50%;
    box-shadow: 0 0 6px rgba(239,68,68,0.8);
    animation: liveDotBlink 1.5s ease-in-out infinite;
}
@keyframes liveDotBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.pl-cover-live {
    width: 44px; height: 44px;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.pl-live-wave {
    display: flex; align-items: center; gap: 2px; height: 20px;
}
.pl-live-wave span {
    display: block; width: 3px; border-radius: 2px;
    background: #ef4444;
    animation: liveWave 0.8s ease-in-out infinite;
}
.pl-live-wave span:nth-child(1) { height: 8px;  animation-delay: 0s; }
.pl-live-wave span:nth-child(2) { height: 16px; animation-delay: 0.2s; }
.pl-live-wave span:nth-child(3) { height: 10px; animation-delay: 0.4s; }
.pl-live-wave span:nth-child(4) { height: 14px; animation-delay: 0.1s; }
@keyframes liveWave { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1); } }

.pl-live-badge {
    background: rgba(239,68,68,0.1) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239,68,68,0.2);
}

/* ---------- EVENTS ---------- */
.events-list { display: flex; flex-direction: column; gap: 12px; }

.event-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center; gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 24px;
    transition: border-color 0.2s, transform 0.2s var(--ease);
}
.event-card:hover {
    border-color: var(--line-strong);
    transform: translateX(4px);
}
.event-date { text-align: center; }
.event-day {
    font-family: var(--font-mono);
    font-size: 28px; font-weight: 700;
    color: var(--accent-hot);
    line-height: 1;
    display: block;
}
.event-month {
    font-family: var(--font-mono);
    font-size: 10px; color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.event-meta {
    display: flex; flex-wrap: wrap; gap: 8px 16px;
    font-size: 12px; color: var(--text-muted);
}
.event-meta span::before { content: '· '; }
.event-meta span:first-child::before { content: ''; }

.event-status { text-align: right; }
.event-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 10px; border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.event-badge.upcoming { background: rgba(139,92,246,0.15); color: var(--accent-hot); border: 1px solid rgba(139,92,246,0.25); }
.event-badge.sold-out { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.event-badge.available { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }

.event-price { display: block; font-size: 11px; color: var(--text-muted); }

.events-empty {
    text-align: center; padding: 80px 40px;
    background: var(--bg-card); border: 1px solid var(--line); border-radius: 16px;
}
.events-empty-mark {
    font-size: 48px; color: var(--accent);
    opacity: 0.3; margin-bottom: 20px;
}
.events-empty h3 { font-size: 20px; margin-bottom: 8px; }
.events-empty p { color: var(--text-muted); font-size: 14px; }

/* ---------- GALLERY ---------- */
.gallery-filters {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 28px;
}
.filter-btn {
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em;
    padding: 8px 18px; border-radius: 20px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
    background: rgba(139,92,246,0.12);
    border-color: var(--accent);
    color: var(--accent-hot);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.g-item {
    position: relative; border-radius: 12px; overflow: hidden;
    cursor: pointer; aspect-ratio: 4/3;
    background: var(--bg-card);
    border: 1px solid var(--line);
    transition: transform 0.35s var(--ease), border-color 0.2s;
}
.g-item::after {
    content: '';
    position: absolute; inset: 0; border-radius: 12px;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139,92,246,0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.g-item:hover { border-color: var(--line-strong); }
.g-item:hover::after { opacity: 1; }
.g-item img, .g-item video {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.g-item:hover img, .g-item:hover video { transform: scale(1.04); }

.g-badge {
    position: absolute; top: 10px; right: 10px;
    width: 32px; height: 32px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.g-badge svg { width: 14px; height: 14px; margin-left: 2px; }

.g-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,2,8,0.88) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 16px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.g-overlay p { font-size: 11px; color: var(--text-muted); }

.g-hidden { opacity: 0; pointer-events: none; transform: scale(0.95); transition: opacity 0.35s, transform 0.35s; }
.g-item:not(.g-hidden) { opacity: 1; transform: none; }

.g-video-placeholder {
    width: 100%; height: 100%;
    background: var(--bg-elevated);
    display: flex; align-items: center; justify-content: center;
}
.g-video-play-icon { color: rgba(139,92,246,0.5); }
.g-video-fallback {
    width: 100%; height: 100%;
    background: var(--bg-elevated);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px; color: var(--text-dim); font-size: 12px;
}
.gallery-empty {
    text-align: center; padding: 80px; color: var(--text-muted);
    font-size: 15px;
}

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid; grid-template-columns: 300px 1fr;
    gap: 60px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci-item h4 {
    font-family: var(--font-mono);
    font-size: 10px; color: var(--accent);
    letter-spacing: 0.14em;
    text-transform: uppercase; margin-bottom: 8px;
}
.ci-item a {
    font-size: 14px; color: var(--text);
    transition: color 0.2s;
}
.ci-item a:hover { color: var(--accent-hot); }
.ci-item p { font-size: 14px; color: var(--text-muted); }
.ci-socials { display: flex; gap: 12px; margin-top: 4px; }
.ci-socials a {
    width: 40px; height: 40px;
    background: rgba(139,92,246,0.08);
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}
.ci-socials a:hover { background: rgba(139,92,246,0.15); border-color: var(--accent); color: var(--accent-hot); }
.ci-socials svg { width: 18px; height: 18px; }

.contact-form {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-wide { grid-column: 1 / -1; }
.field label {
    font-size: 12px; font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.field label span { color: var(--accent); }
.field input, .field textarea, .field select {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px; color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a82a0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field select option { background: var(--bg-card); color: var(--text); }

.btn-submit { grid-column: 1 / -1; justify-self: start; }

.form-status {
    grid-column: 1 / -1;
    font-size: 13px; padding: 12px 16px; border-radius: 8px;
    display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.form-status.error { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.form-status.sending { background: rgba(139,92,246,0.1); color: var(--accent-hot); border: 1px solid var(--line); }

/* ---------- FOOTER ---------- */
.footer {
    border-top: 1px solid var(--line);
    padding: 40px var(--px);
    max-width: var(--max-w); margin: 0 auto;
}
.footer-inner {
    display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-brand {
    font-family: var(--font-mono); font-size: 16px; font-weight: 700;
    background: linear-gradient(135deg, var(--accent-hot), var(--accent-glow));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: auto;
}
.footer-meta { font-size: 12px; color: var(--text-dim); }
.footer-copy { font-size: 12px; color: var(--text-dim); }

/* ---------- MINI PLAYER ---------- */
.mini-player {
    position: fixed; bottom: -80px; left: 50%;
    transform: translateX(-50%);
    display: flex; align-items: center; gap: 12px;
    background: rgba(12, 8, 21, 0.92);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--line-strong);
    border-radius: 50px;
    padding: 8px 16px;
    z-index: 900;
    transition: bottom 0.4s var(--ease);
    min-width: 320px;
    max-width: calc(100vw - 40px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(139,92,246,0.1);
}
.mini-player.show { bottom: 20px; }
.mini-player img {
    width: 36px; height: 36px;
    border-radius: 8px; object-fit: cover;
    flex-shrink: 0;
}
.mini-info { flex: 1; min-width: 0; }
.mini-title {
    font-size: 12px; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mini-artist { font-size: 10px; color: var(--text-muted); }
.mini-progress {
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: transparent;
    border-radius: 50px 50px 0 0; overflow: hidden;
}
#miniProgressFill {
    height: 100%; width: 0;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent-hot));
    transition: width 0.1s linear;
}
.mini-btn {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: var(--text-muted);
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
}
.mini-btn:hover { color: var(--text); background: rgba(139,92,246,0.1); }
.mini-play {
    width: 38px; height: 38px;
    background: rgba(139,92,246,0.15);
    color: var(--accent-hot) !important;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(3, 1, 6, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox.show { opacity: 1; pointer-events: all; }

.lb-close {
    position: absolute; top: 20px; right: 24px;
    font-size: 28px; color: var(--text-muted);
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
    z-index: 1;
}
.lb-close:hover { color: var(--text); background: rgba(139,92,246,0.1); }

.lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    font-size: 36px; color: var(--text-muted);
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
    z-index: 1;
}
.lb-nav:hover { color: var(--text); background: rgba(139,92,246,0.1); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-content {
    max-width: min(90vw, 1000px);
    max-height: 75vh;
    display: flex; align-items: center; justify-content: center;
}
.lb-content img, .lb-content video {
    max-width: 100%; max-height: 75vh;
    border-radius: 12px;
    object-fit: contain;
}
.lb-info {
    position: absolute; bottom: 32px;
    text-align: center;
}
.lb-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.lb-info p { font-size: 13px; color: var(--text-muted); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
    .section, .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .about-grid { grid-template-columns: 260px 1fr; gap: 40px; }
    .hero-visual { flex: 0 0 300px; height: 300px; }
}

@media (max-width: 900px) {
    .hero { flex-direction: column; min-height: auto; padding-top: 100px; gap: 20px; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-photo-wrap { position: static; }
    .about-photo, .about-photo-placeholder { aspect-ratio: 4/3; max-width: 360px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info { flex-direction: row; flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed; top: 64px; left: 0; right: 0;
        background: rgba(5,2,8,0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--line);
        padding: 16px 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.35s var(--ease), opacity 0.35s;
        pointer-events: none;
    }
    .nav.open { transform: none; opacity: 1; pointer-events: all; }
    .nav ul { flex-direction: column; gap: 0; }
    .nav a { display: block; padding: 14px var(--px); font-size: 15px; border-radius: 0; }
    .menu-toggle { display: flex; }

    .event-card { grid-template-columns: 64px 1fr; gap: 16px; }
    .event-status { grid-column: 1 / -1; display: flex; gap: 12px; align-items: center; }

    .contact-form { grid-template-columns: 1fr; }
    .btn-submit { width: 100%; justify-content: center; }

    .playlist-item { grid-template-columns: 28px 36px 1fr auto; }
    .pl-genre { display: none; }

    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .hero-stats { gap: 20px 28px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .mini-player { min-width: 0; width: calc(100vw - 32px); }
}
