﻿:root {
  --bg-0: #060510;
  --bg-1: #0a0718;
  --bg-2: #140b27;
  --surface: rgba(20, 15, 39, 0.78);
  --surface-strong: rgba(28, 20, 54, 0.9);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f6f4ff;
  --muted: #bdb7db;
  --violet: #8f46ff;
  --pink: #ff4cb7;
  --cyan: #42d0ff;
  --success: #4cf0a2;
  --danger: #ff6f9b;
  --shadow-xl: 0 22px 42px rgba(0, 0, 0, 0.35);
  --shadow-neon: 0 0 24px rgba(143, 70, 255, 0.28), 0 0 38px rgba(255, 76, 183, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --ease-out: 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scrollbar-color: rgba(170, 89, 255, 0.95) rgba(14, 11, 28, 0.9);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: radial-gradient(circle at 8% -10%, #2a0f56 0%, transparent 42%),
    radial-gradient(circle at 92% -12%, #4f103f 0%, transparent 44%), linear-gradient(160deg, var(--bg-0) 0%, var(--bg-1) 45%, var(--bg-2) 100%);
  overflow-x: hidden;
}

body.perf-balanced {
  --shadow-xl: 0 18px 34px rgba(0, 0, 0, 0.3);
}

body.perf-lite {
  --shadow-xl: 0 10px 20px rgba(0, 0, 0, 0.2);
}

body::-webkit-scrollbar {
  width: 11px;
}

body::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(11, 8, 23, 0.95), rgba(17, 11, 33, 0.95));
}

body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid rgba(14, 11, 28, 0.95);
  background: linear-gradient(180deg, rgba(143, 70, 255, 0.95), rgba(255, 76, 183, 0.95));
  box-shadow: 0 0 12px rgba(143, 70, 255, 0.55), 0 0 18px rgba(255, 76, 183, 0.38);
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(170, 89, 255, 0.98), rgba(255, 112, 195, 0.98));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3.3vw, 3rem);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

img {
  display: block;
  width: 100%;
}

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(30, 18, 59, 0.8), rgba(4, 3, 10, 0.97));
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-orb {
  width: 72px;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-top-color: rgba(143, 70, 255, 0.95);
  border-right-color: rgba(255, 76, 183, 0.95);
  animation: spin 900ms linear infinite;
}

.site-notice {
  position: sticky;
  top: 78px;
  z-index: 39;
  margin: 0 auto;
  width: min(880px, calc(100% - 2rem));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(19, 14, 36, 0.92);
  color: #f3eeff;
  padding: 0.62rem 0.8rem;
  box-shadow: var(--shadow-neon);
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

.fx-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: normal;
}

.bg-layer-main {
  z-index: -3;
  opacity: 0.24;
  background-image: linear-gradient(rgba(255, 255, 255, 0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.036) 1px, transparent 1px);
  background-size: 56px 56px;
}

.bg-layer-glow {
  z-index: -2;
  filter: blur(34px);
  background: radial-gradient(circle at 14% -6%, rgba(143, 70, 255, 0.42), transparent 42%),
    radial-gradient(circle at 90% -10%, rgba(255, 76, 183, 0.35), transparent 43%),
    radial-gradient(circle at 60% 105%, rgba(66, 208, 255, 0.15), transparent 35%);
  animation: none;
}

.bg-layer-noise {
  z-index: -1;
  opacity: 0.06;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 0.7px, transparent 0.8px);
  background-size: 4px 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 7, 16, 0.9);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--violet), var(--pink));
  box-shadow: 0 0 16px rgba(143, 70, 255, 0.72), 0 0 22px rgba(255, 76, 183, 0.56);
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.main-nav a {
  color: #cbc4e8;
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  transition: color var(--ease-out), background var(--ease-out), transform var(--ease-out);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.main-nav .admin-link {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.45rem 0.85rem;
}

.hero {
  padding: 6rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 2.1rem;
  align-items: center;
}

.eyebrow {
  color: #ddceff;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-subtitle {
  margin-top: 1.15rem;
  max-width: 62ch;
}

.cta-group {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.74rem 1.06rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--ease-out), border-color var(--ease-out), box-shadow var(--ease-out),
    background var(--ease-out), opacity var(--ease-out);
}

.btn:hover,
.btn:focus-visible {
  transform: translate3d(0, -2px, 0);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--violet), var(--pink));
  box-shadow: 0 15px 28px rgba(143, 70, 255, 0.33), 0 7px 18px rgba(255, 76, 183, 0.21);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 32px rgba(143, 70, 255, 0.38), 0 9px 22px rgba(255, 76, 183, 0.25);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.hero-media {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  padding: 1.1rem;
  box-shadow: var(--shadow-xl);
}

.hero-media img {
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section {
  padding: 5rem 0;
}

#webradio,
#socials,
#featured-tiktok,
#community,
#stats,
#faq,
#contact {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.radio-layout {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 1.1rem;
}

.radio-status-panel {
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  background: linear-gradient(170deg, rgba(20, 15, 40, 0.86), rgba(22, 16, 43, 0.72));
}

.status-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d7d1ef;
}

.status-badge {
  display: inline-flex;
  justify-self: start;
  border-radius: 999px;
  padding: 0.33rem 0.72rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.status-live {
  background: var(--success);
  color: #062919;
}

.status-offline {
  background: var(--danger);
  color: #451026;
}

.status-note {
  font-size: 0.9rem;
  line-height: 1.45;
}

.status-note strong {
  color: #fff;
}

.radio-status-panel .btn {
  width: 100%;
  justify-content: center;
}

#radioStationName {
  color: #fff;
}

.player-panel {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
  background: linear-gradient(164deg, rgba(18, 14, 36, 0.9), rgba(25, 18, 47, 0.82));
}

.player-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-bottom: 0.15rem;
}

.player-head h3 {
  font-size: 1.34rem;
}

.player-head p {
  color: #dacdfb;
  font-size: 0.92rem;
}

.player-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.player-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 0.8rem;
  align-items: stretch;
}

.player-visual-stack {
  display: grid;
  gap: 0.62rem;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #efe8ff;
  padding: 0.22rem 0.6rem;
  font-size: 0.74rem;
  line-height: 1.2;
}

.mini-badge-live {
  border-color: rgba(76, 240, 162, 0.55);
  background: rgba(76, 240, 162, 0.18);
  color: #c4ffe4;
}

.mini-badge-offline {
  border-color: rgba(255, 111, 155, 0.55);
  background: rgba(255, 111, 155, 0.15);
  color: #ffd2e1;
}

.player-visualizer {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(143, 70, 255, 0.18), rgba(255, 76, 183, 0.12));
  padding: 0.9rem;
  min-height: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.42rem;
}

.player-visualizer-3d {
  width: 100%;
  height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: radial-gradient(circle at 50% 32%, rgba(143, 70, 255, 0.2), rgba(8, 6, 20, 0.86));
}

.player-visualizer span,
.floating-eq span {
  width: 7px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--violet), var(--pink));
  transform-origin: bottom;
  animation: eqWave 1.3s ease-in-out infinite;
  animation-play-state: paused;
  opacity: 0.82;
}

.player-visualizer span:nth-child(2),
.floating-eq span:nth-child(2) {
  animation-delay: 0.14s;
}

.player-visualizer span:nth-child(3),
.floating-eq span:nth-child(3) {
  animation-delay: 0.25s;
}

.player-visualizer span:nth-child(4),
.floating-eq span:nth-child(4) {
  animation-delay: 0.36s;
}

.player-visualizer span:nth-child(5) {
  animation-delay: 0.48s;
}

.player-visualizer span:nth-child(6) {
  animation-delay: 0.6s;
}

#radioPlayerCard.is-playing .player-visualizer span,
.floating-player.is-playing .floating-eq span {
  animation-play-state: running;
}

.radio-audio {
  display: none;
}

.player-control-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.78rem;
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.player-control-title {
  color: #f4efff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.15;
}

.player-control-subtitle {
  color: #cfc5eb;
  font-size: 0.82rem;
  line-height: 1.4;
}

.player-controls {
  display: grid;
  gap: 0.62rem;
}

.player-controls .btn {
  width: 100%;
}

.volume-wrap {
  display: grid;
  width: 100%;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.55rem 0.68rem;
  color: #d8d2f0;
  font-size: 0.88rem;
}

.volume-wrap input {
  width: 100%;
}

.volume-wrap input,
.floating-volume {
  accent-color: var(--violet);
}

#radioPlayerCard.is-playing {
  border-color: rgba(143, 70, 255, 0.58);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.46), 0 0 24px rgba(143, 70, 255, 0.25);
}

.radio-live-stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.82rem;
}

.live-stat-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 0.82rem;
  min-height: 104px;
}

.live-stat-card-wide {
  grid-column: span 3;
}

.live-stat-label {
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #d5ccef;
}

.live-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  color: #fff;
  text-shadow: 0 0 18px rgba(143, 70, 255, 0.32);
}

.live-stat-text {
  color: #f0ebff;
  font-size: 0.95rem;
  line-height: 1.5;
}

.track-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  max-height: 250px;
  overflow: auto;
  padding-right: 0.15rem;
}

.track-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem 0.58rem;
}

.track-main {
  min-width: 0;
  display: grid;
  gap: 0.08rem;
}

.track-main strong {
  color: #f7f2ff;
  font-size: 0.9rem;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.track-main span {
  color: #d5cceb;
  font-size: 0.8rem;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.track-meta {
  flex-shrink: 0;
  color: #d7ccf3;
  font-size: 0.76rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.18rem 0.52rem;
}

.track-item-empty {
  grid-template-columns: 1fr;
}

.track-item-empty span {
  color: #d4c9ef;
  font-size: 0.86rem;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.95rem;
  content-visibility: auto;
  contain-intrinsic-size: 560px;
}

.social-card,
.tiktok-card,
.benefit-card {
  grid-column: span 6;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  contain: layout paint;
  transition: transform var(--ease-out), border-color var(--ease-out);
}

#featured-tiktok .section-heading {
  margin-bottom: 2rem;
}

#featured-tiktok .section-heading h2 {
  max-width: 20ch;
}

#featured-tiktok .section-heading p {
  max-width: 62ch;
}

.tiktok-head-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tiktok-meta-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  font-size: 0.8rem;
  color: #f3edff;
  background: rgba(255, 255, 255, 0.08);
}

.tiktok-meta-pill strong {
  margin-right: 0.36rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
}

.tiktok-meta-pill-soft {
  color: #d9d0f8;
  background: rgba(255, 255, 255, 0.04);
}

.grid-tiktok {
  gap: 1.15rem;
}

.grid-tiktok .tiktok-card {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(164deg, rgba(16, 12, 32, 0.96), rgba(20, 14, 42, 0.9));
  border-color: rgba(255, 255, 255, 0.15);
}

.grid-tiktok .tiktok-card-lead {
  grid-column: span 12;
}

.social-card:hover,
.tiktok-card:hover,
.benefit-card:hover {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(143, 70, 255, 0.47);
}

.card-media {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: linear-gradient(130deg, rgba(143, 70, 255, 0.26), rgba(255, 76, 183, 0.21));
}

.card-content {
  padding: 1rem;
}

.tiktok-media-wrap {
  position: relative;
  overflow: hidden;
}

.tiktok-media-wrap::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(9, 6, 19, 0), rgba(9, 6, 19, 0.72) 55%, rgba(9, 6, 19, 0.92));
  pointer-events: none;
}

.tiktok-media {
  aspect-ratio: 16 / 10;
  transition: transform 380ms var(--ease-out);
}

.grid-tiktok .tiktok-card-lead .tiktok-media {
  aspect-ratio: 16 / 7;
}

.grid-tiktok .tiktok-card:hover .tiktok-media {
  transform: scale(1.03);
}

.tiktok-rank {
  position: absolute;
  top: 0.86rem;
  left: 0.86rem;
  z-index: 2;
  display: inline-flex;
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f8f4ff;
  background: rgba(16, 12, 31, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.tiktok-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 176px;
  padding: 1rem 1rem 1.08rem;
}

.tiktok-content h3 {
  margin: 0;
  font-size: clamp(1.16rem, 1.7vw, 1.42rem);
}

.tiktok-content p {
  color: #dfd8f9;
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tiktok-actions {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.tiktok-badge {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.12);
}

.tiktok-content .btn,
.tiktok-cta {
  margin-top: 0;
}

.tiktok-cta {
  white-space: nowrap;
}

#socials .section-heading {
  margin-bottom: 2rem;
}

#socialCards {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}

#socialCards .social-card {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

#socialCards .card-media {
  aspect-ratio: 16 / 10;
}

.social-content {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.06rem 1.08rem 1.12rem;
}

.social-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.social-headline h3 {
  margin: 0;
  font-size: clamp(1.06rem, 1.6vw, 1.26rem);
}

.social-platform {
  margin-top: 0;
  flex-shrink: 0;
}

.social-description {
  color: #ddd5f7;
  line-height: 1.62;
}

.social-footer {
  margin-top: auto;
  padding-top: 0.78rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: flex-end;
}

.social-cta {
  min-width: 132px;
  text-align: center;
  margin-top: 0;
}

.card-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.36rem;
}

.card-content .btn {
  margin-top: 0.86rem;
}

.badge-muted {
  display: inline-flex;
  margin-top: 0.62rem;
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  font-size: 0.72rem;
  color: #ddd4f7;
  background: rgba(255, 255, 255, 0.09);
}

.benefit-card {
  padding: 1rem;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  background: linear-gradient(145deg, rgba(143, 70, 255, 0.38), rgba(255, 76, 183, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.92rem;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  padding: 0.95rem;
  text-align: center;
}

.stat-value {
  font-size: clamp(1.65rem, 3vw, 2.52rem);
  font-family: 'Outfit', sans-serif;
  color: #fff;
  text-shadow: 0 0 18px rgba(143, 70, 255, 0.35);
}

.stat-label {
  margin-top: 0.45rem;
}

.faq-list {
  display: grid;
  gap: 0.62rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 300ms ease, opacity 300ms ease;
  padding: 0 1rem;
}

.faq-item.open .faq-answer {
  opacity: 1;
  padding-bottom: 0.95rem;
}

.contact-form {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #ded8f4;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.72rem 0.8rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(143, 70, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(143, 70, 255, 0.2);
}

.form-feedback {
  min-height: 1.1rem;
}

.site-footer {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.34);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.footer-brand {
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footer-links a {
  color: #c7c1df;
}

.floating-player {
  position: fixed;
  right: 1.2rem;
  bottom: 1.15rem;
  z-index: 72;
  width: min(278px, calc(100% - 2rem));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(23, 16, 43, 0.86), rgba(31, 22, 58, 0.78));
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35), 0 0 10px rgba(143, 70, 255, 0.16);
  padding: 0.72rem;
  user-select: none;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: none;
}

.floating-aura {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 70, 255, 0.27), transparent 55%);
  opacity: 0.45;
}

.floating-player.is-playing {
  border-color: rgba(143, 70, 255, 0.65);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.4), 0 0 18px rgba(143, 70, 255, 0.28), 0 0 24px rgba(255, 76, 183, 0.16);
}

.floating-player.is-playing .floating-aura {
  animation: pulseAura 1.65s ease-in-out infinite;
}

.floating-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #f8f7ff;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: move;
  touch-action: none;
}

.floating-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 0 12px rgba(143, 70, 255, 0.82);
}

.floating-status {
  margin-top: 0.42rem;
  font-size: 0.79rem;
  color: #d6ceef;
}

.floating-controls {
  margin-top: 0.52rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.42rem;
}

.floating-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.42rem 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--ease-out), border-color var(--ease-out), background var(--ease-out);
}

.floating-btn:hover,
.floating-btn:focus-visible {
  border-color: rgba(143, 70, 255, 0.65);
  background: rgba(143, 70, 255, 0.2);
  transform: translate3d(0, -1px, 0);
}

.floating-eq {
  margin-top: 0.5rem;
  min-height: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
}

.floating-eq span {
  width: 6px;
  height: 20px;
}

.floating-volume {
  margin-top: 0.52rem;
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 460ms ease, transform 460ms ease;
}

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

.reveal-delay-1 {
  transition-delay: 120ms;
}

.hidden {
  display: none !important;
}

body.perf-balanced .floating-player {
  animation: none;
}

body.perf-lite .fx-background,
body.perf-lite .player-visualizer-3d,
body.perf-lite .floating-aura {
  display: none;
}

body.perf-lite .bg-layer-glow {
  animation: none;
  filter: blur(46px);
  opacity: 0.75;
}

body.perf-lite .floating-player {
  animation: none;
  backdrop-filter: none;
}

body.perf-lite .panel,
body.perf-lite .social-card,
body.perf-lite .tiktok-card,
body.perf-lite .benefit-card,
body.perf-lite .stat-card {
  box-shadow: none;
}

body.is-scrolling .site-header {
  background: rgba(8, 7, 16, 0.9);
}

body.is-scrolling .fx-background {
  display: none;
}

body.is-scrolling .bg-layer-glow,
body.is-scrolling .floating-player {
  animation: none;
}

body.is-scrolling .bg-layer-noise {
  opacity: 0;
}

body.is-scrolling .social-card,
body.is-scrolling .tiktok-card,
body.is-scrolling .benefit-card,
body.is-scrolling .panel {
  box-shadow: none;
}

@keyframes eqWave {
  0%,
  100% {
    transform: scaleY(0.42);
  }
  45% {
    transform: scaleY(1.28);
  }
}

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

@keyframes slowDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, -2%, 0) scale(1.03);
  }
}

@keyframes floatBubble {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes pulseAura {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.64;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .radio-layout {
    grid-template-columns: 1fr;
  }

  .social-card,
  .benefit-card,
  .grid-tiktok .tiktok-card {
    grid-column: span 12;
  }

  #socialCards {
    grid-template-columns: 1fr;
  }

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

  .live-stat-card {
    min-height: 0;
  }

  .live-stat-card-wide {
    grid-column: span 3;
  }
}

@media (max-width: 760px) {
  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 1rem;
    right: 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(10, 8, 19, 0.97);
    padding: 0.72rem;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .live-stat-card {
    grid-column: span 1;
  }

  .radio-live-stats {
    grid-template-columns: 1fr;
  }

  .live-stat-card-wide {
    grid-column: span 1;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .floating-player {
    right: 1rem;
    bottom: 1rem;
    animation: none;
    backdrop-filter: none;
  }

  .social-headline {
    flex-direction: column;
    gap: 0.45rem;
  }

  .tiktok-head-meta {
    margin-top: 0.85rem;
  }

  .tiktok-content {
    min-height: 0;
  }

  .tiktok-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tiktok-cta {
    width: 100%;
  }

  .social-footer {
    justify-content: flex-start;
  }

  .social-cta {
    width: 100%;
  }

  .player-shell {
    grid-template-columns: 1fr;
  }

  .player-visualizer-3d {
    height: 120px;
  }

  .bg-layer-noise {
    opacity: 0.05;
  }
}

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