/* =========================================================
   SSEROV v3 — 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:         #8b5cf6;
    --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);
    --spring:       cubic-bezier(0.22, 1.5, 0.36, 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;
}
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: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-deep); border-radius: 6px; }

/* ---------- Animated 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%   { background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%; filter: hue-rotate(0deg); }
    33%  { background-position: 10% 20%, 80% 30%, 20% 80%, 90% 70%; }
    66%  { background-position: 30% 10%, 60% 40%, 40% 70%, 70% 90%; filter: hue-rotate(10deg); }
    100% { background-position: 5% 15%, 90% 10%, 10% 90%, 80% 80%; filter: hue-rotate(0deg); }
}
/* ---------- Noise overlay ---------- */
.bg-noise {
    position: fixed; top: -50%; left: -50%;
    width: 200%; height: 200%;
    z-index: 9998;
    opacity: 0.04;
    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;
}
@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(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}
#particlesCanvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2; pointer-events: none; opacity: 0.4;
}

/* ---------- Cursor ---------- */
.cursor, .cursor-ring {
    position: fixed; pointer-events: none; z-index: 9999;
    top: 0; left: 0; border-radius: 50%;
    mix-blend-mode: difference;
}
.cursor {
    width: 8px; height: 8px;
    background: var(--accent-glow);
    transition: width 0.2s, height 0.2s;
}
.cursor-ring {
    width: 40px; height: 40px;
    border: 1.5px solid var(--accent-glow);
    opacity: 0.5;
    transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
}
body.cursor-hover .cursor { width: 14px; height: 14px; }
body.cursor-hover .cursor-ring { width: 64px; height: 64px; opacity: 0.8; }

/* ---------- Loader ---------- */
.loader {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9000;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-bar {
    width: 200px; height: 2px;
    background: var(--line);
    border-radius: 1px;
    overflow: hidden;
    margin-bottom: 12px;
}
.loader-fill {
    height: 100%; width: 0;
    background: var(--accent);
    box-shadow: var(--neon-glow);
    transition: width 0.1s;
}
.loader-text {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--text-dim);
}

/* ---------- Header ---------- */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px var(--px);
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
.header.scrolled {
    padding: 12px var(--px);
    background: rgba(5, 2, 8, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--line);
}
.brand {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-glow);
    text-shadow: var(--neon-glow);
}
.nav ul { list-style: none; display: flex; gap: 8px; }
.nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 100px;
    transition: all 0.3s;
    position: relative;
}
.nav a:hover, .nav a.active { color: var(--text); background: var(--surface); }
.nav a.active::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
}
.menu-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    width: 24px; padding: 4px 0;
}
.menu-toggle span {
    display: block; height: 2px; width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.active span:first-child  { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:last-child   { transform: translateY(-7px) rotate(-45deg); }

/* =================== HERO =================== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    padding: 140px var(--px) 80px;
    overflow: hidden;
}
.hero-bg-glow {
    position: absolute;
    width: 800px; height: 800px;
    top: -200px; right: -200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    animation: glowDrift 20s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes glowDrift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 60px) scale(1.3); }
}
.hero-content {
    max-width: 800px;
    position: relative; z-index: 2;
}
.hero-top {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}
.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}
.hero-title {
    font-size: clamp(64px, 14vw, 180px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}
.hero-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) rotateX(-40deg);
    animation: letterReveal 0.8s var(--spring) forwards;
    background: linear-gradient(180deg, #fff 20%, var(--accent-glow) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero-letter.space { width: 0.25em; }
@keyframes letterReveal {
    to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}
.hero-tagline {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}
.hero-desc {
    color: var(--text-dim);
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-cta {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 1s forwards;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 1.2s forwards;
}
.stat-value {
    font-family: var(--font-mono);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
/* Hero canvas — 3D orb */
.hero-visual {
    position: absolute;
    top: 50%; right: 5%;
    transform: translateY(-50%);
    width: 400px; height: 400px;
    z-index: 1;
    opacity: 0.6;
}
#heroCanvas { width: 100%; height: 100%; }
/* Кольца вокруг orb */
.hero-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 320px; height: 320px;
    margin: -160px 0 0 -160px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 50%;
    animation: ringRotate 25s linear infinite;
}
.hero-ring::after {
    content: '';
    position: absolute;
    top: -4px; left: 50%;
    width: 8px; height: 8px;
    margin-left: -4px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
}
.hero-ring-2 {
    width: 240px; height: 240px;
    margin: -120px 0 0 -120px;
    border-color: rgba(139, 92, 246, 0.08);
    animation-duration: 18s;
    animation-direction: reverse;
}
@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
/* Второй glow blob */
.hero-bg-glow-2 {
    width: 600px; height: 600px;
    top: auto; right: auto;
    bottom: -200px; left: -150px;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.1) 0%, transparent 70%);
    animation: glowDrift2 18s ease-in-out infinite alternate;
}
@keyframes glowDrift2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -40px) scale(1.2); }
}
/* Вертикальные декоративные линии */
.hero-lines {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: space-evenly;
    pointer-events: none;
    z-index: 0;
}
.hero-lines span {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(139, 92, 246, 0.06) 30%,
        rgba(139, 92, 246, 0.06) 70%,
        transparent 100%
    );
}
/* Mini-эквалайзер в hero */
.hero-eq-mini {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
    margin-left: 16px;
    vertical-align: middle;
}
.hero-eq-mini span {
    width: 3px;
    background: var(--accent);
    border-radius: 1px;
    animation: eqBounce 1s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(139, 92, 246, 0.5);
}
.hero-eq-mini span:nth-child(1) { animation-delay: 0s; height: 40%; }
.hero-eq-mini span:nth-child(2) { animation-delay: 0.1s; height: 70%; }
.hero-eq-mini span:nth-child(3) { animation-delay: 0.2s; height: 100%; }
.hero-eq-mini span:nth-child(4) { animation-delay: 0.15s; height: 55%; }
.hero-eq-mini span:nth-child(5) { animation-delay: 0.25s; height: 85%; }
@keyframes eqBounce {
    0%, 100% { transform: scaleY(0.3); }
    50%      { transform: scaleY(1); }
}
/* Scroll indicator */
.scroll-cue {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
}
.scroll-cue-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
    50%      { opacity: 1; transform: scaleY(1); }
}

/* =================== BUTTONS =================== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600; font-size: 14px;
    letter-spacing: 0.02em;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    position: relative; overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}
.btn:hover::before { left: 100%; }
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.4);
}
.btn-primary:hover {
    background: var(--accent-hot);
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.6), var(--neon-glow);
    transform: translateY(-2px);
}
.btn-outline {
    border-color: var(--line-strong);
    color: var(--text);
}
.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(139, 92, 246, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
}

/* =================== SECTIONS =================== */
.section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 120px var(--px);
    position: relative;
}
/* Glow divider между секциями */
.section-divider {
    width: 100%;
    height: 1px;
    max-width: var(--max-w);
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.25;
    position: relative;
}
.section-divider::after {
    content: '';
    position: absolute;
    top: -20px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 40px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}
.section-label {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 64px;
    font-family: var(--font-mono);
}
.section-label span:first-child {
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
}
.section-label span:last-child {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.02em;
}
/* Reveal */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =================== ABOUT =================== */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}
.about-text p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-aside {
    position: sticky; top: 120px;
    display: flex; flex-direction: column; gap: 32px;
}
.about-since {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-dim);
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: rgba(15, 10, 26, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.about-since strong { color: var(--accent-glow); margin-left: 4px; }
.about-styles h3 {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    margin-bottom: 12px;
}
.about-styles ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.about-styles li {
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--line);
    color: var(--text-muted);
    transition: all 0.3s;
}
.about-styles li:hover {
    border-color: var(--accent);
    color: var(--accent-glow);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

/* =================== LIVE IN PLAYLIST =================== */
.playlist-item-live {
    background: rgba(239, 68, 68, 0.04);
    border-left-color: #ef4444 !important;
}
.playlist-item-live.active {
    background: rgba(239, 68, 68, 0.1) !important;
    border-left-color: #ef4444 !important;
}
.playlist-item-live:hover {
    background: rgba(239, 68, 68, 0.08);
}
.live-dot-mini {
    display: inline-block;
    width: 8px; height: 8px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 8px #ef4444;
    animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.6); }
}
.pl-cover-live {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1a0a2e, rgba(239, 68, 68, 0.15));
}
.pl-live-wave {
    display: flex; align-items: flex-end; gap: 2px; height: 24px;
}
.pl-live-wave span {
    width: 3px;
    background: #ef4444;
    border-radius: 1px;
    animation: eqBounce 0.8s ease-in-out infinite;
}
.pl-live-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.pl-live-wave span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.pl-live-wave span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.pl-live-wave span:nth-child(4) { height: 45%; animation-delay: 0.15s; }
@keyframes eqBounce {
    0%, 100% { transform: scaleY(0.3); }
    50%      { transform: scaleY(1); }
}
.pl-live-badge {
    color: #ef4444 !important;
    font-weight: 700 !important;
}
/* Пульсирующий прогресс-бар при LIVE */
.live-progress {
    animation: liveProgressPulse 2s ease-in-out infinite;
    background: linear-gradient(90deg, var(--accent), #ef4444, var(--accent)) !important;
    background-size: 200% 100% !important;
}
@keyframes liveProgressPulse {
    0%   { background-position: 0% 50%; opacity: 0.7; }
    50%  { background-position: 100% 50%; opacity: 1; }
    100% { background-position: 0% 50%; opacity: 0.7; }
}

/* =================== PLAYER =================== */
.player {
    background: rgba(15, 10, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
/* Animated gradient border glow */
.player::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: 21px;
    background: linear-gradient(
        var(--border-angle, 0deg),
        var(--accent) 0%,
        transparent 30%,
        transparent 70%,
        var(--accent-deep) 100%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s;
    animation: borderSpin 6s linear infinite;
}
.player.is-playing::before { opacity: 1; }
@keyframes borderSpin {
    to { --border-angle: 360deg; }
}
/* Fallback for browsers without @property */
@supports not (background: paint(a)) {
    .player.is-playing::before {
        background: linear-gradient(135deg, var(--accent) 0%, transparent 40%, transparent 60%, var(--accent-deep) 100%);
        opacity: 0.5;
    }
}
.player-viz {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.player.is-playing .player-viz { opacity: 1; }
.player-now {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 24px;
    position: relative; z-index: 1;
}
.player-cover {
    position: relative;
    width: 100px; height: 100px;
    border-radius: 16px;
    overflow: visible;
    flex-shrink: 0;
}
.player-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: relative; z-index: 1;
}
.player-cover-glow {
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    background: var(--accent);
    border-radius: 22px;
    opacity: 0;
    filter: blur(24px);
    z-index: 0;
    transition: opacity 0.6s;
}
.player.is-playing .player-cover-glow {
    opacity: 0.35;
    animation: coverBreathe 3s ease-in-out infinite alternate;
}
@keyframes coverBreathe {
    0%   { opacity: 0.2; transform: scale(0.95); }
    100% { opacity: 0.45; transform: scale(1.05); }
}
.player-info { position: relative; z-index: 1; min-width: 0; flex: 1; }
.player-genre {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    padding: 3px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    margin-bottom: 8px;
}
.player-info h3 {
    font-size: 20px; font-weight: 700;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player-info p { color: var(--text-muted); font-size: 14px; }

/* Progress */
.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: 11px;
    color: var(--text-dim);
    min-width: 48px;
    text-align: center;
}
.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(139, 92, 246, 0.12);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}
.progress-bar:hover { height: 6px; }
.progress-fill {
    height: 100%; width: 0;
    background: var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
    transition: box-shadow 0.3s;
}
.progress-knob {
    position: absolute;
    top: 50%; transform: translate(-50%, -50%) scale(0);
    width: 14px; height: 14px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    transition: transform 0.2s var(--ease-bounce);
}
.progress-bar:hover .progress-knob { transform: translate(-50%, -50%) scale(1); }

/* Controls */
.player-controls {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    position: relative; z-index: 1;
}
.ctrl {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
}
.ctrl:hover { color: var(--text); background: var(--surface); }
.ctrl.active { color: var(--accent); }
.ctrl-play {
    width: 56px; height: 56px;
    background: var(--accent);
    color: #fff !important;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.4);
    margin: 0 8px;
}
.ctrl-play:hover {
    background: var(--accent-hot);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.6), var(--neon-glow);
    transform: scale(1.08);
}
.volume {
    display: flex; align-items: center; gap: 8px;
    margin-left: auto;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 80px; height: 4px;
    background: var(--line);
    border-radius: 4px;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

/* Playlist */
.playlist {
    background: rgba(15, 10, 26, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
}
.playlist-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
}
.playlist-head h3 { font-size: 16px; font-weight: 600; }
.playlist-count { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); }
.playlist-items { max-height: 480px; overflow-y: auto; }
.playlist-item {
    display: grid;
    grid-template-columns: 36px 48px 1fr auto auto;
    align-items: center;
    gap: 14px;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border-left: 3px solid transparent;
}
.playlist-item:hover {
    background: var(--surface);
    transform: translateX(4px);
}
.playlist-item.active {
    background: rgba(139, 92, 246, 0.08);
    border-left-color: var(--accent);
}
.pl-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    text-align: center;
}
.playlist-item.active .pl-num { color: var(--accent-glow); }
.pl-cover {
    width: 48px; height: 48px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg);
}
.pl-cover img { width: 100%; height: 100%; object-fit: cover; }
.pl-meta { min-width: 0; }
.pl-title {
    font-size: 14px; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pl-sub { font-size: 12px; color: var(--text-dim); }
.pl-genre {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.pl-time {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
}

/* =================== EVENTS =================== */
.events-list {
    display: flex; flex-direction: column; gap: 2px;
    border-radius: 20px;
    overflow: hidden;
}
.event-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 32px;
    background: rgba(15, 10, 26, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s var(--ease);
    border-left: 3px solid transparent;
}
.event-card:hover {
    background: var(--bg-hover);
    border-left-color: var(--accent);
    transform: translateX(6px);
}
.event-date { font-family: var(--font-display); }
.event-day {
    display: block;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-glow);
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}
.event-month {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-top: 4px;
}
.event-info h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.event-meta {
    display: flex; gap: 16px; flex-wrap: wrap;
    font-size: 13px; color: var(--text-muted);
}
.event-meta span::before {
    content: '·';
    margin-right: 8px;
    color: var(--accent);
}
.event-meta span:first-child::before { display: none; }
.event-status { text-align: right; }
.event-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.event-badge.upcoming { background: var(--surface); color: var(--accent-glow); border: 1px solid var(--line); }
.event-badge.available { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.2); }
.event-badge.sold-out  { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
.event-price { display: block; font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.events-empty {
    text-align: center; padding: 80px 24px;
    background: var(--bg-card); border-radius: 20px;
}
.events-empty-mark {
    font-size: 48px; color: var(--accent); margin-bottom: 16px;
    text-shadow: var(--neon-glow);
}
.events-empty h3 { margin-bottom: 8px; }
.events-empty p { color: var(--text-muted); font-size: 15px; }

/* =================== GALLERY =================== */
.gallery-filters {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 32px;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 13px; font-weight: 500;
    cursor: pointer;
    transition: all 0.35s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--line-strong); }
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.g-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    transition: transform 0.5s var(--ease), opacity 0.4s, box-shadow 0.4s, border-color 0.3s;
    padding-bottom: 125%;
    height: 0;
}
.g-item.g-hidden {
    opacity: 0 !important;
    transform: scale(0.85) !important;
    pointer-events: none;
}
.g-item:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(139, 92, 246, 0.25), 0 0 60px rgba(139, 92, 246, 0.08);
}
/* Сияние внутри карточки при hover */
.g-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    pointer-events: none;
}
.g-item:hover::after { opacity: 1; }
.g-item img, .g-item video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.g-item:hover img, .g-item:hover video { transform: scale(1.06); }
.g-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(5, 2, 8, 0.92) 0%, rgba(5, 2, 8, 0.3) 40%, transparent 60%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s, backdrop-filter 0.4s;
    z-index: 2;
}
.g-item:hover .g-overlay {
    opacity: 1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.g-overlay h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.g-overlay p { font-size: 13px; color: var(--text-muted); }
.g-badge {
    position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(5, 2, 8, 0.7);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    z-index: 2;
}
.g-badge svg { width: 14px; height: 14px; }
.gallery-empty {
    grid-column: 1 / -1; text-align: center;
    padding: 80px 24px; color: var(--text-muted);
}
.g-video-fallback {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: var(--bg-elevated); color: var(--text-dim); gap: 8px;
}
.g-video-fallback svg { opacity: 0.3; }
.g-video-fallback span { font-size: 11px; opacity: 0.6; }
/* Красивая заглушка видео на мобилках */
.g-video-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(139, 92, 246, 0.08) 100%);
}
.g-video-play-icon {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--accent-glow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s var(--ease);
}
.g-item:hover .g-video-play-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
    box-shadow: var(--neon-glow);
}

/* =================== CONTACT =================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.ci-item {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: rgba(15, 10, 26, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.ci-item:hover { border-color: var(--accent); box-shadow: 0 0 30px rgba(139, 92, 246, 0.1); transform: translateY(-2px); }
.ci-item h4 {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    margin-bottom: 8px;
}
.ci-item a, .ci-item p { font-size: 15px; color: var(--text-muted); }
.ci-item a:hover { color: var(--accent-glow); }
.ci-socials { display: flex; gap: 12px; }
.ci-socials a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: all 0.3s;
}
.ci-socials a:hover {
    border-color: var(--accent);
    background: var(--surface);
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}
.ci-socials svg { width: 18px; height: 18px; }
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-wide { grid-column: 1 / -1; }
.field label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    font-family: var(--font-mono);
}
.field input, .field textarea, .field select {
    padding: 14px 16px;
    background: rgba(15, 10, 26, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: var(--r);
    color: var(--text);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.2), inset 0 0 12px rgba(139, 92, 246, 0.05);
}
.btn-submit { grid-column: 1 / -1; justify-self: start; }
.form-status {
    grid-column: 1 / -1;
    font-size: 14px;
    padding: 12px;
    border-radius: var(--r);
    display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.form-status.error   { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

/* =================== LIGHTBOX =================== */
.lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 500;
    background: rgba(5, 2, 8, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex; align-items: center; justify-content: center;
    padding: 60px 20px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.show { opacity: 1; visibility: visible; }
.lb-content {
    max-width: 90vw; max-height: 80vh;
    display: flex; align-items: center; justify-content: center;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.5s var(--ease-bounce);
}
.lightbox.show .lb-content { transform: scale(1) translateY(0); }
.lb-content img, .lb-content video {
    max-width: 100%; max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 80px rgba(139, 92, 246, 0.1);
}
.lb-info {
    position: absolute;
    bottom: 24px; left: 50%; transform: translateX(-50%);
    text-align: center; max-width: 600px; width: calc(100% - 40px);
}
.lb-info h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.lb-info p { color: var(--text-muted); font-size: 14px; }
.lb-close, .lb-nav {
    position: absolute;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--line-strong);
    color: var(--text);
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    backdrop-filter: blur(12px);
}
.lb-close:hover, .lb-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: var(--neon-glow);
}
.lb-close { top: 24px; right: 24px; font-size: 28px; }
.lb-close:hover { transform: rotate(90deg); }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-nav:hover { transform: translateY(-50%) scale(1.1); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* =================== MINI PLAYER =================== */
.mini-player {
    position: fixed;
    bottom: -100px;
    left: 50%; transform: translateX(-50%);
    z-index: 200;
    display: flex; align-items: center; gap: 12px;
    padding: 10px 16px;
    background: rgba(15, 10, 26, 0.9);
    border: 1px solid var(--line);
    border-radius: 100px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: bottom 0.5s var(--ease);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    max-width: 500px;
    width: calc(100% - 40px);
}
.mini-player.show { bottom: 24px; }
.mini-player.show::before {
    content: '';
    position: absolute;
    top: -8px; left: 10%; right: 10%; height: 16px;
    background: var(--accent);
    filter: blur(20px);
    opacity: 0.2;
    border-radius: 50%;
}
.mini-player img {
    width: 36px; height: 36px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.mini-info { flex: 1; min-width: 0; }
.mini-title {
    font-size: 13px; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mini-artist { font-size: 11px; color: var(--text-dim); }
.mini-progress {
    position: absolute;
    bottom: 0; left: 16px; right: 16px;
    height: 2px;
    background: var(--line);
    border-radius: 1px;
}
.mini-progress > div {
    height: 100%; width: 0;
    background: var(--accent);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}
.mini-btn {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.2s;
    flex-shrink: 0;
}
.mini-btn:hover { color: var(--text); }
.mini-play {
    background: var(--accent);
    color: #fff !important;
    width: 36px; height: 36px;
}
.mini-play:hover { background: var(--accent-hot); }

/* =================== FOOTER =================== */
.footer {
    border-top: 1px solid var(--line);
    padding: 48px var(--px);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 2px;
    background: var(--accent);
    filter: blur(4px);
    opacity: 0.4;
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.footer-brand {
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-glow);
    text-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
}
.footer-meta { color: var(--text-dim); font-size: 13px; }
.footer-copy { color: var(--text-dim); font-size: 12px; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
    .hero { flex-direction: column; padding-top: 120px; }
    .hero-visual { display: none; }
    .hero-lines { display: none; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-aside { position: static; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(5, 2, 8, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        display: flex; align-items: center; justify-content: center;
        opacity: 0; visibility: hidden;
        transition: opacity 0.4s, visibility 0.4s;
        z-index: 99;
    }
    .nav.open { opacity: 1; visibility: visible; }
    .nav ul { flex-direction: column; align-items: center; gap: 16px; }
    .nav a { font-size: 24px; font-weight: 600; }
    .hero-title { font-size: clamp(48px, 14vw, 120px); }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-value { font-size: 28px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .event-card {
        grid-template-columns: 80px 1fr;
        gap: 16px; padding: 20px;
    }
    .event-status { grid-column: 1 / -1; text-align: left; }
    .event-day { font-size: 36px; }
    .contact-form { grid-template-columns: 1fr; }
    .playlist-item {
        grid-template-columns: 32px 40px 1fr auto;
        padding: 10px 16px;
    }
    .pl-genre { display: none; }
    .pl-cover { width: 40px; height: 40px; }
    .section { padding: 80px var(--px); }
    .player { padding: 24px; border-radius: 16px; }
    .player-cover { width: 72px; height: 72px; border-radius: 12px; }
    .player-cover img { border-radius: 12px; }
    .volume { display: none; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .filter-btn { white-space: nowrap; flex-shrink: 0; }
    .gallery-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor, .cursor-ring { display: none !important; }
    body { cursor: auto !important; }
    .g-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(5, 2, 8, 0.88) 0%, rgba(5, 2, 8, 0.2) 50%, transparent 70%);
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
    }
    .g-item::after { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .hero-letter { opacity: 1 !important; transform: none !important; }
}
