﻿:root {
    --bg-1: #0d0d0f;
    --bg-2: #15161a;
    --bg-3: #1b1d22;
    --text: #e8e8ea;
    --muted: #a7a9ad;
    --accent: #c6b8a4;
    --accent-2: #8d8274;
    --card: #15171b;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: radial-gradient(1200px 800px at 70% -10%, #24262c 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-1), var(--bg-2) 60%, var(--bg-3));
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

.noise {
    position: fixed;
    inset: 0;
    background-image: repeating-radial-gradient(circle at 20% 20%, rgba(255,255,255,0.03) 0 1px, transparent 1px 2px);
    mix-blend-mode: soft-light;
    opacity: 0.09;
    pointer-events: none;
    z-index: 0;
    animation: noiseShift 14s steps(8) infinite;
}

main, .site-header, .site-footer {
    position: relative;
    z-index: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100vw - 24px));
    margin: 0 auto;
}

img,
svg,
video {
    max-width: 100%;
}

.site-header {
    position: relative;
    backdrop-filter: blur(12px);
    background: rgba(13, 13, 15, 0.75);
    border-bottom: 1px solid var(--border);
    z-index: 10;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled {
    background: rgba(10, 11, 14, 0.9);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(255,255,255,0.14);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 12px;
    flex-wrap: wrap;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 1rem;
}

.logo.small {
    letter-spacing: 0.12em;
}

.nav {
    display: none;
    gap: 24px;
    font-size: 0.95rem;
}

.nav a.active {
    color: var(--accent);
}

.mini-player {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(21, 22, 26, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    min-width: 260px;
    flex: 1;
}

.mini-meta {
    min-width: 140px;
    flex: 1;
}

.mini-title {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    animation: marquee 14s linear infinite;
}

.mini-progress {
    position: relative;
    height: 4px;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 6px;
}

.mini-progress span {
    position: absolute;
    inset: 0;
    width: 10%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width 0.2s ease;
}

.icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #111218;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mini-vol {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mini-vol input[type="range"] {
    width: 80px;
    accent-color: var(--accent);
}

.mini-source select {
    background: #0f1013;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 6px 8px;
    font-size: 0.8rem;
}

.mini-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ext-link {
    font-weight: 700;
    color: var(--accent);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-cta {
    display: none;
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 5vw 24px;
    background: rgba(13, 13, 15, 0.95);
    border-bottom: 1px solid var(--border);
}

.mobile-nav.is-open {
    display: flex;
}

.hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-lights,
.hero-haze,
.hero-slide-bg,
.hero-crowd {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-lights {
    background:
        radial-gradient(40% 80% at 12% 10%, rgba(95, 128, 220, 0.16), transparent 72%),
        radial-gradient(35% 70% at 88% 0%, rgba(209, 145, 78, 0.14), transparent 74%),
        radial-gradient(35% 80% at 56% 18%, rgba(118, 151, 255, 0.08), transparent 78%);
    filter: blur(26px);
    animation: beamMove 18s ease-in-out infinite alternate;
}

.hero-haze {
    background: radial-gradient(46% 48% at 68% 35%, rgba(255, 160, 95, 0.1), transparent 76%),
                radial-gradient(48% 56% at 30% 58%, rgba(105, 145, 255, 0.11), transparent 78%);
    filter: blur(36px);
    opacity: 0.7;
    animation: hazeMove 20s ease-in-out infinite alternate;
}

.hero-slide-bg {
    inset: -18% -12%;
    background-image: linear-gradient(130deg, rgba(9, 11, 16, 0.86), rgba(9, 11, 16, 0.42)), var(--hero-slide-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    filter: saturate(0.82) brightness(0.58);
    transform: scale(1.14);
    transition: opacity 0.7s ease;
    z-index: 0;
}

.hero.has-bg .hero-slide-bg {
    opacity: 0.72;
}

.hero-crowd {
    background:
      radial-gradient(120% 95% at 50% 125%, rgba(0,0,0,0.7) 0 48%, transparent 55%),
      radial-gradient(10% 22% at 16% 102%, rgba(0,0,0,0.54), transparent 72%),
      radial-gradient(10% 24% at 30% 104%, rgba(0,0,0,0.6), transparent 70%),
      radial-gradient(11% 20% at 44% 103%, rgba(0,0,0,0.52), transparent 70%),
      radial-gradient(11% 21% at 58% 104%, rgba(0,0,0,0.55), transparent 70%),
      radial-gradient(10% 24% at 71% 104%, rgba(0,0,0,0.58), transparent 70%),
      radial-gradient(10% 23% at 84% 103%, rgba(0,0,0,0.55), transparent 70%);
    opacity: 0.24;
    filter: blur(6px);
    transform: translateY(var(--crowd-y, 0px));
    transition: transform 0.15s linear;
}

.hero-grid {
    display: grid;
    gap: 36px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin: 8px 0 12px;
}

.hero-content p {
    color: var(--muted);
    max-width: 520px;
    line-height: 1.6;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.36em;
    font-size: 0.8rem;
    color: var(--accent-2);
    margin: 0;
}

.slider {
    position: relative;
    min-height: 210px;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.is-active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero-play-btn {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 999px;
    font-size: 1rem;
    line-height: 1;
    color: #0f1116;
    background: linear-gradient(160deg, #d8ccb9, #b8a990);
    border: 1px solid rgba(216, 204, 185, 0.55);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.hero-play-btn:hover {
    background: linear-gradient(160deg, #e3d7c4, #c4b69d);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(216, 204, 185, 0.3) inset;
}

.hero-eq {
    margin-top: 18px;
    height: 26px;
    display: inline-flex;
    align-items: flex-end;
    gap: 6px;
    opacity: 0.65;
}

.hero-eq span {
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(198,184,164,0.86), rgba(141,130,116,0.4));
    animation: eqPulse 1.35s ease-in-out infinite;
}

.hero-eq span:nth-child(1) { height: 9px; animation-delay: 0.05s; }
.hero-eq span:nth-child(2) { height: 18px; animation-delay: 0.32s; }
.hero-eq span:nth-child(3) { height: 12px; animation-delay: 0.62s; }
.hero-eq span:nth-child(4) { height: 20px; animation-delay: 0.25s; }
.hero-eq span:nth-child(5) { height: 13px; animation-delay: 0.82s; }

.hero-vinyl {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-side-image {
    position: absolute;
    inset: 2% 4% 2% 4%;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 26px 62px rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

.hero-side-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.2), rgba(8, 10, 14, 0.56));
}

.hero-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
}

.vinyl-shell {
    --vinyl-size: min(320px, 70vw);
    --ring-gap: 0px;
    --ring-radius: calc((var(--vinyl-size) / 2) + var(--ring-gap));
    position: relative;
    width: calc(var(--vinyl-size) + 74px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.vinyl-ring-eq {
    --bars: 64;
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: drop-shadow(0 0 18px rgba(198, 184, 164, 0.08));
    z-index: 1;
}

.vinyl-ring-eq::before {
    content: "";
    position: absolute;
    inset: calc(50% - var(--ring-radius));
    border-radius: 50%;
    border: 1px solid rgba(198, 184, 164, 0.26);
    opacity: 0.28;
}

.vinyl-ring-eq span {
    --amp: 0.12;
    position: absolute;
    left: calc(50% - 1.75px);
    top: calc(50% - 24px);
    width: 3.5px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(198,184,164,0.95), rgba(141,130,116,0.22));
    transform-origin: 50% 100%;
    transform: rotate(calc((360deg / var(--bars)) * var(--i))) translateY(calc(var(--ring-radius) * -1)) scaleY(calc(0.9 + (var(--amp) * 1.95)));
    opacity: calc(0.34 + (var(--amp) * 0.62));
    transition: transform 55ms linear, opacity 55ms linear, filter 90ms ease;
    filter: drop-shadow(0 0 0 rgba(198, 184, 164, 0));
}

.vinyl {
    width: var(--vinyl-size);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2a2c31 0%, #15171a 45%, #0d0e11 100%);
    position: relative;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.7), var(--shadow);
    animation: spin var(--spin, 10s) linear infinite;
    cursor: grab;
    touch-action: none;
    user-select: none;
    z-index: 2;
}

body.is-playing .vinyl-ring-eq span {
    filter: drop-shadow(0 0 10px rgba(198, 184, 164, 0.32));
}

body.is-playing .vinyl-ring-eq::before {
    opacity: 0.7;
    box-shadow: 0 0 24px rgba(198, 184, 164, 0.16);
}

.vinyl.pulse {
    animation: spin var(--spin, 10s) linear infinite, vinylPulse 2.4s ease-out 1;
}

.vinyl::before {
    content: "";
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    background: radial-gradient(circle, #1a1b20 0%, #0f1013 55%, #0a0b0e 100%);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}

.vinyl::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 210deg, rgba(255,255,255,0.15), transparent 40%, transparent 70%, rgba(255,255,255,0.08));
    mix-blend-mode: screen;
    opacity: 0.35;
}

.vinyl-label {
    position: absolute;
    inset: 38%;
    border-radius: 50%;
    background: linear-gradient(145deg, #c6b8a4, #8d8274);
    color: #121316;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
}

.vinyl.is-boosted {
    --spin: 6s;
}

.vinyl:hover {
    --spin: 7s;
}

.vinyl.is-scratching {
    animation: none !important;
    cursor: grabbing;
    box-shadow: inset 0 0 34px rgba(0,0,0,0.75), 0 0 34px rgba(198,184,164,0.16);
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.slider-dots button {
    width: 32px;
    height: 4px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
}

.slider-dots button.active {
    background: var(--accent);
}

.section {
    padding: 70px 0;
}

.section[id],
.hero[id] {
    scroll-margin-top: 92px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-head p {
    color: var(--muted);
}

.card-grid {
    display: grid;
    gap: 20px;
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-body {
    padding: 24px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px 24px;
    color: var(--muted);
}

.card.highlight {
    padding: 24px;
    background: linear-gradient(160deg, #1c1e23, #121316);
}

.big {
    font-size: 1.4rem;
    font-weight: 600;
}

.muted {
    color: var(--muted);
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.tags span {
    background: rgba(255,255,255,0.08);
    color: var(--muted);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
}

.feature-grid {
    display: grid;
    gap: 20px;
}

.feature-card {
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #14161a;
}

.two-col {
    display: grid;
    gap: 24px;
}

.player-shell {
    display: grid;
    gap: 24px;
}

.player-controls {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

.control-row {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr auto 0.8fr;
    gap: 14px;
    align-items: center;
}

.progress-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
}

.progress-bar {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
    cursor: pointer;
}

.progress-bar div {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width 0.1s linear;
}

.player-list {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

.list-head {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    align-items: center;
}

.list-head input[type="search"] {
    flex: 1 1 240px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #0f1013;
    color: var(--text);
}

.list-head select {
    width: auto;
    min-width: 170px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #0f1013;
    color: var(--text);
}

.list-info {
    white-space: nowrap;
    color: var(--muted);
    font-size: 0.9rem;
}

.track-list {
    display: grid;
    gap: 10px;
    max-height: 460px;
    overflow: auto;
}

.track {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #121319;
    cursor: pointer;
}

.track:hover {
    border-color: var(--accent);
}

.track .meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.track-title { font-weight: 600; }
.track-artist { color: var(--muted); font-size: 0.9rem; }
.track-duration { color: var(--muted); font-size: 0.85rem; }

.source-select {
    display: flex;
    align-items: center;
    gap: 8px;
}

.source-select select {
    background: #0f1013;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 6px 8px;
}

.now-title {
    font-weight: 700;
}

.transport {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.volume {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.volume input[type="range"] {
    width: 120px;
}

.player-access-grid {
    display: grid;
    gap: 18px;
}

.player-auth-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

.player-auth-card h2,
.player-auth-card h3 {
    margin: 0 0 8px;
}

.player-auth-card p {
    margin: 0 0 12px;
    color: var(--muted);
}

.player-auth-card label {
    display: block;
    margin: 10px 0 6px;
    font-size: 0.9rem;
    color: var(--muted);
}

.player-auth-card input,
.player-auth-card select,
.player-auth-card textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #101218;
    color: var(--text);
}

.player-auth-card textarea {
    resize: vertical;
    min-height: 90px;
}

.player-auth-card .btn {
    margin-top: 12px;
}

.player-auth-row {
    display: grid;
    gap: 12px;
}

.player-membership-shell {
    display: grid;
    gap: 16px;
}

.player-membership-head {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.player-membership-head h2 {
    margin: 0;
}

.player-membership-head p {
    margin: 0;
    color: var(--muted);
}

.player-plan-grid {
    display: grid;
    gap: 14px;
}

.player-plan-card {
    background: #13151b;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
}

.player-plan-card h3 {
    margin: 0 0 8px;
}

.player-plan-card p {
    margin: 0;
    color: var(--muted);
}

.plan-price {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text) !important;
    margin-bottom: 8px !important;
}

.player-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.player-sub-active .alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.player-table-wrap {
    overflow: auto;
}

.player-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.player-table th,
.player-table td {
    padding: 10px 8px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 0.9rem;
}

.player-table th {
    color: var(--muted);
    font-weight: 600;
}

.cta-box {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
    background: var(--accent);
    color: #121316;
    box-shadow: 0 8px 22px rgba(198,184,164,0.2);
}

.btn:active {
    transform: scale(0.96);
}

.btn.glow {
    position: relative;
    overflow: hidden;
}

.btn.glow::before {
    content: "";
    position: absolute;
    inset: -32%;
    background: radial-gradient(circle, rgba(198,184,164,0.28), transparent 56%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.btn.glow::after {
    content: "";
    position: absolute;
    inset: -58%;
    border-radius: 999px;
    border: 1px solid rgba(198,184,164,0.2);
    transform: scale(0.7);
    opacity: 0;
    pointer-events: none;
}

.btn.glow:hover::before {
    opacity: 1;
}

.btn.glow:hover::after {
    animation: ctaRipple 1s ease-out infinite;
}

.btn-xs {
    padding: 8px 12px;
    font-size: 0.78rem;
}

.btn-ghost {
    border-color: rgba(255,255,255,0.2);
    color: var(--text);
}

.btn-small {
    padding: 8px 14px;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.text-link {
    color: var(--accent);
    font-weight: 600;
}

.page-hero {
    padding: 50px 0 20px;
}

.filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.chip {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.chip.active {
    background: rgba(198,184,164,0.2);
    border-color: var(--accent);
}

.contact .form label {
    display: block;
    margin-bottom: 14px;
    font-weight: 600;
}

.contact input,
.contact textarea {
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    background: #101115;
    color: var(--text);
}

.alert {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.alert.success {
    background: rgba(100, 170, 120, 0.2);
    border: 1px solid rgba(100, 170, 120, 0.4);
}

.alert.error {
    background: rgba(190, 90, 90, 0.2);
    border: 1px solid rgba(190, 90, 90, 0.4);
}

.hp {
    position: absolute;
    left: -9999px;
}

.contact-cards {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-card {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #121419;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 30px 0 20px;
    background: rgba(10, 10, 12, 0.9);
    position: relative;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.mixes .card:hover {
    transform: scale(1.03) translateY(-3px);
    border-color: rgba(198,184,164,0.24);
    box-shadow: 0 26px 64px rgba(0,0,0,0.52);
}

.footer-grid {
    display: grid;
    gap: 20px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.powered {
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-speaker {
    position: absolute;
    bottom: calc(100% + 6px);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    pointer-events: none;
    opacity: 0.92;
    z-index: 2;
    transform-origin: bottom center;
}

.speaker-left { left: 4px; }
.speaker-right { right: 4px; flex-direction: row-reverse; }

.speaker-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
}

.speaker-waves {
    display: inline-flex;
    gap: 5px;
}

.speaker-waves span {
    display: block;
    width: 3px;
    height: 12px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    border-radius: 999px;
    opacity: 0.5;
    animation: waveIdle 3s ease-in-out infinite;
}

.speaker-waves span:nth-child(2) { animation-delay: 0.2s; }
.speaker-waves span:nth-child(3) { animation-delay: 0.4s; }

body.is-playing .speaker-waves span {
    opacity: 0.95;
    animation-name: wavePlay;
    animation-duration: 0.62s;
}

@keyframes waveIdle {
    0%, 100% { transform: translateY(1px) scaleY(0.72); }
    50% { transform: translateY(-1px) scaleY(1.02); }
}

@keyframes wavePlay {
    0%, 100% { transform: translateY(2px) scaleY(0.62); }
    50% { transform: translateY(-3px) scaleY(1.35); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-20%); }
}

.bottom-player {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: 8px;
    height: 36px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 3px 8px;
    background: linear-gradient(180deg, rgba(10, 12, 18, 0.36), rgba(8, 10, 14, 0.44));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    z-index: 60;
    overflow: visible;
}

.bp-controls {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.bp-btn {
    width: 23px;
    height: 23px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(17, 18, 24, 0.42);
    color: var(--text);
    font-size: 0.7rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, background 0.18s ease;
}

.bp-btn:hover {
    background: rgba(26, 28, 35, 0.7);
}

.bp-btn:active {
    transform: scale(0.95);
}

.bp-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.bp-title {
    font-size: 0.72rem;
    color: #d8dadf;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bp-progress {
    position: relative;
    height: 2px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
    cursor: pointer;
}
.bp-progress span {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.bp-volume-wrap {
    position: relative;
}

.bp-btn-volume {
    font-size: 0.75rem;
}

.bp-volume-pop {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) scale(0.96);
    background: rgba(12, 13, 17, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 6px 9px;
    min-width: 118px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.bp-volume-wrap.is-open .bp-volume-pop {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1);
}

.bp-volume {
    width: 96px;
    margin: 0;
    accent-color: var(--accent);
    background: transparent;
}

body { padding-bottom: 60px; }

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.duration {
    font-size: 0.85rem;
}

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

@keyframes noiseShift {
    0% { background-position: 0 0; }
    25% { background-position: 9px -8px; }
    50% { background-position: -11px 6px; }
    75% { background-position: 6px 12px; }
    100% { background-position: 0 0; }
}

@keyframes beamMove {
    0% { transform: translate3d(-2%, 0, 0) scale(1); }
    100% { transform: translate3d(3%, -1.5%, 0) scale(1.06); }
}

@keyframes hazeMove {
    0% { transform: translate3d(-2%, 2%, 0) scale(1); }
    100% { transform: translate3d(3%, -2%, 0) scale(1.08); }
}

@keyframes eqPulse {
    0%, 100% { transform: scaleY(0.55); opacity: 0.56; }
    45% { transform: scaleY(1.35); opacity: 0.95; }
}

@keyframes ctaRipple {
    0% { transform: scale(0.7); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0; }
}

@keyframes vinylPulse {
    0% { box-shadow: inset 0 0 30px rgba(0,0,0,0.7), 0 0 0 rgba(198,184,164,0); }
    45% { box-shadow: inset 0 0 30px rgba(0,0,0,0.7), 0 0 44px rgba(198,184,164,0.18); }
    100% { box-shadow: inset 0 0 30px rgba(0,0,0,0.7), 0 0 0 rgba(198,184,164,0); }
}

@media (min-width: 900px) {
    .nav {
        display: flex;
    }

    .nav-cta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-toggle {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
    }

    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .two-col {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .player-access-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .player-plan-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .player-auth-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 0.8fr;
    }
}

@media (max-width: 520px) {
    .hero {
        padding-top: 60px;
    }

    .section[id],
    .hero[id] {
        scroll-margin-top: 76px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .vinyl-shell {
        --vinyl-size: min(270px, 74vw);
        --ring-gap: 0px;
        width: calc(var(--vinyl-size) + 62px);
    }
}

@media (max-width: 899px) {
    .mini-player {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .mini-source, .mini-links, .mini-vol input[type="range"] {
        display: none;
    }

    .mini-progress {
        width: 100%;
    }

    .mini-meta {
        flex: 1 1 60%;
    }

    .nav-cta {
        display: none !important;
    }

    .control-row {
        grid-template-columns: 1fr;
    }

    .progress-row {
        grid-template-columns: auto 1fr auto;
    }

    .volume {
        justify-content: flex-start;
    }

    .speaker-icon {
        width: 38px;
        height: 38px;
    }

    .footer-speaker {
        display: none;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-bottom: 16px;
    }

    .speaker-left {
        left: 2px;
    }

    .speaker-right {
        right: 2px;
    }

    .speaker-icon {
        width: 34px;
        height: 34px;
    }

    .speaker-waves span {
        width: 2px;
        height: 9px;
    }

    .bottom-player {
        left: 6px;
        right: 6px;
        bottom: 8px;
        height: 38px;
        padding: 4px 8px;
    }

    .bp-btn {
        width: 24px;
        height: 24px;
    }

    .bp-volume {
        width: 84px;
    }

    body {
        padding-bottom: 64px;
    }
}

@media (max-width: 760px) {
    .hero {
        padding: 54px 0 26px;
    }

    .hero-grid {
        gap: 16px;
    }

    .hero-vinyl {
        display: none;
    }

    .slider {
        min-height: auto;
    }

    .slide {
        position: relative;
        inset: auto;
        opacity: 1;
        transform: none;
        display: none;
    }

    .slide.is-active,
    .slide:first-child {
        display: block;
    }

    .slider-dots,
    .hero-eq {
        display: none;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 8.2vw, 2.4rem);
        line-height: 1.12;
    }

    .hero-content p {
        max-width: 100%;
    }

    .bottom-player {
        left: 4px;
        right: 4px;
        bottom: 6px;
        height: 40px;
        padding: 4px 8px;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .bp-controls {
        gap: 3px;
    }

    .bp-meta {
        min-width: 0;
    }

    .bp-title {
        font-size: 0.68rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

