:root{
  --bg:#07060d;
  --bg2:#0c0917;
  --surface:rgba(20,14,38,0.76);
  --surface-strong:rgba(27,18,52,0.9);
  --surface-soft:rgba(255,255,255,0.04);
  --border:rgba(255,255,255,0.09);

  --accent:#a855f7;
  --accent2:#ff4ecd;
  --accent3:#7c3aed;

  --accent-soft:rgba(168,85,247,0.16);
  --accent2-soft:rgba(255,78,205,0.16);

  --glow:rgba(168,85,247,0.45);
  --glow2:rgba(255,78,205,0.4);

  --text:#f7f3ff;
  --muted:#b8a9d8;
  --muted-2:#9384b6;

  --shadow:0 18px 60px rgba(0,0,0,0.45);
  --radius:22px;
  --radius-sm:16px;
  --container:1200px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(168,85,247,0.26), transparent 32%),
    radial-gradient(circle at 88% 14%, rgba(255,78,205,0.22), transparent 32%),
    radial-gradient(circle at 50% 80%, rgba(124,58,237,0.14), transparent 40%),
    linear-gradient(180deg, #090612 0%, #07060d 100%);
  overflow-x:hidden;
}

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

button,
input{
  font:inherit;
}

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

.container{
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

.site-shell{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}

.bg-orb{
  position:fixed;
  inset:auto;
  border-radius:50%;
  pointer-events:none;
  filter:blur(80px);
  z-index:0;
  opacity:.75;
}

.bg-orb-1{
  width:420px;
  height:420px;
  top:80px;
  left:-120px;
  background:radial-gradient(circle, rgba(168,85,247,0.45), transparent 70%);
}

.bg-orb-2{
  width:500px;
  height:500px;
  top:220px;
  right:-180px;
  background:radial-gradient(circle, rgba(255,78,205,0.32), transparent 70%);
}

.bg-grid{
  position:fixed;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size:32px 32px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 80%);
  pointer-events:none;
  z-index:0;
}

.topbar{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  background:rgba(7,6,13,0.56);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.topbar-inner{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand-mark{
  width:40px;
  height:40px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-family:"Syne",sans-serif;
  font-weight:800;
  font-size:.76rem;
  color:#fff;
  background:linear-gradient(135deg, var(--accent3), var(--accent2));
  box-shadow:
    0 0 30px rgba(168,85,247,0.3),
    0 0 60px rgba(255,78,205,0.18);
}

.brand-text,
.footer-brand{
  font-family:"Syne",sans-serif;
  font-weight:800;
  letter-spacing:-0.03em;
  font-size:1.22rem;
}

.brand-air{
  color:#fff;
}

.brand-fm{
  color:#ff8fe2;
}

.topnav{
  display:flex;
  align-items:center;
  gap:28px;
}

.topnav a{
  font-size:.92rem;
  color:var(--muted);
  transition:.2s ease;
}

.topnav a:hover{
  color:#fff;
}

.glass{
  position:relative;
  background:var(--surface);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
}

.glass-bright{
  background:var(--surface-strong);
}

.hero{
  position:relative;
  z-index:1;
  padding:52px 0 40px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:32px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#ff9be8;
}

.live-pill{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1);
}

.live-inline{
  color:#ffc0ef;
}

.live-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#ff4d9f;
  box-shadow:
    0 0 0 0 rgba(255,77,159,0.55),
    0 0 18px rgba(255,77,159,0.8);
  animation:pulse-live 1.8s infinite;
}

@keyframes pulse-live{
  0%{
    box-shadow:
      0 0 0 0 rgba(255,77,159,0.55),
      0 0 18px rgba(255,77,159,0.7);
  }
  70%{
    box-shadow:
      0 0 0 10px rgba(255,77,159,0),
      0 0 22px rgba(255,77,159,0.85);
  }
  100%{
    box-shadow:
      0 0 0 0 rgba(255,77,159,0),
      0 0 18px rgba(255,77,159,0.7);
  }
}

.hero-copy{
  padding:36px 0;
}

.hero-title{
  margin:18px 0 16px;
  font-family:"Syne",sans-serif;
  font-size:clamp(3rem, 7vw, 5.9rem);
  line-height:.94;
  letter-spacing:-0.05em;
}

.hero-title span{
  color:#ff82df;
  text-shadow:
    0 0 26px rgba(168,85,247,0.34),
    0 0 52px rgba(255,78,205,0.24);
}

.hero-text{
  max-width:660px;
  font-size:1.08rem;
  line-height:1.8;
  color:var(--muted);
  margin:0 0 28px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:28px;
}

.btn{
  appearance:none;
  border:none;
  cursor:pointer;
  border-radius:999px;
  padding:14px 24px;
  font-weight:700;
  transition:.24s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.btn-sm{
  padding:11px 18px;
  font-size:.92rem;
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:
    0 0 24px rgba(168,85,247,0.32),
    0 0 48px rgba(255,78,205,0.18);
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:
    0 0 36px rgba(168,85,247,0.45),
    0 0 64px rgba(255,78,205,0.26);
}

.btn-secondary{
  color:#fff;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.12);
}

.btn-secondary:hover{
  background:rgba(255,255,255,0.08);
  transform:translateY(-2px);
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.stat-card{
  padding:18px 18px;
  border-radius:18px;
  background:rgba(255,255,255,0.035);
  border:1px solid rgba(255,255,255,0.08);
}

.stat-value{
  font-family:"Syne",sans-serif;
  font-size:1.35rem;
  font-weight:800;
  letter-spacing:-0.03em;
  margin-bottom:6px;
}

.stat-label{
  color:var(--muted);
  font-size:.86rem;
  line-height:1.45;
}

.hero-visual{
  position:relative;
}

.hero-panel{
  border-radius:30px;
  padding:20px;
  overflow:hidden;
}

.hero-panel-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.panel-live{
  display:flex;
  align-items:center;
  gap:10px;
  color:#ffd0f3;
  font-size:.84rem;
  font-weight:700;
}

.panel-clock{
  color:var(--muted);
  font-weight:700;
  font-size:.9rem;
}

.hero-art{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  min-height:280px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.12), transparent 35%),
    linear-gradient(135deg, rgba(168,85,247,0.4), rgba(255,78,205,0.25));
}

.hero-art img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:280px;
}

.hero-art-glow{
  position:absolute;
  inset:auto 0 -28px 0;
  height:120px;
  background:radial-gradient(circle at center, rgba(255,78,205,0.22), transparent 70%);
  filter:blur(18px);
  pointer-events:none;
}

.hero-now{
  padding:18px 4px 6px;
}

.hero-now-label{
  color:var(--muted-2);
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:8px;
}

.hero-now-show{
  font-family:"Syne",sans-serif;
  font-size:1.7rem;
  font-weight:800;
  letter-spacing:-0.03em;
  margin-bottom:6px;
}

.hero-now-meta,
.hero-now-time{
  color:var(--muted);
  font-size:.95rem;
}

.hero-now-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:8px;
}

.hero-mini-player{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:16px;
  padding:16px;
  border-radius:20px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
}

.play-btn{
  appearance:none;
  border:none;
  cursor:pointer;
  flex-shrink:0;
  width:56px;
  height:56px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:
    0 0 26px rgba(168,85,247,0.35),
    0 0 54px rgba(255,78,205,0.18);
  transition:.24s ease;
}

.play-btn:hover{
  transform:scale(1.06);
}

.play-btn i{
  width:21px;
  height:21px;
}

.play-btn-lg{
  width:62px;
  height:62px;
}

.wave-wrap{
  min-width:0;
  flex:1;
}

.waveform{
  display:flex;
  align-items:flex-end;
  gap:4px;
  height:34px;
  margin-bottom:10px;
}

.waveform span{
  width:5px;
  border-radius:999px;
  background:linear-gradient(180deg, #f4a4ff, #ff4ecd);
  height:10px;
  opacity:.9;
}

.waveform.playing span:nth-child(1){animation:wave-1 .78s ease-in-out infinite;}
.waveform.playing span:nth-child(2){animation:wave-2 .92s ease-in-out infinite .08s;}
.waveform.playing span:nth-child(3){animation:wave-3 .7s ease-in-out infinite .14s;}
.waveform.playing span:nth-child(4){animation:wave-4 1s ease-in-out infinite .06s;}
.waveform.playing span:nth-child(5){animation:wave-5 .85s ease-in-out infinite .18s;}
.waveform.playing span:nth-child(6){animation:wave-2 .74s ease-in-out infinite .2s;}
.waveform.playing span:nth-child(7){animation:wave-3 .88s ease-in-out infinite .11s;}

@keyframes wave-1{0%,100%{height:9px}50%{height:28px}}
@keyframes wave-2{0%,100%{height:18px}50%{height:8px}}
@keyframes wave-3{0%,100%{height:12px}50%{height:30px}}
@keyframes wave-4{0%,100%{height:24px}50%{height:9px}}
@keyframes wave-5{0%,100%{height:8px}50%{height:22px}}

.mini-track{
  color:var(--muted);
  font-size:.92rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.section{
  position:relative;
  z-index:1;
  padding:72px 0;
}

.section-tight{
  padding-top:28px;
}

.section-head{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
}

.section-head h2{
  font-family:"Syne",sans-serif;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.02;
  letter-spacing:-0.04em;
  margin:10px 0 14px;
}

.section-head p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}

.feature-card{
  border-radius:24px;
  padding:24px;
  transition:.24s ease;
}

.feature-card:hover,
.stream-card:hover,
.schedule-item:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,0.14);
}

.feature-icon{
  width:50px;
  height:50px;
  border-radius:16px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  color:#fff;
  background:linear-gradient(135deg, rgba(168,85,247,0.22), rgba(255,78,205,0.22));
  border:1px solid rgba(255,255,255,0.12);
}

.feature-icon i{
  width:20px;
  height:20px;
}

.feature-card h3,
.stream-card h3{
  margin:0 0 10px;
  font-family:"Syne",sans-serif;
  font-size:1.1rem;
  letter-spacing:-0.02em;
}

.feature-card p,
.stream-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:.96rem;
}

.player-section{
  position:sticky;
  bottom:0;
  z-index:35;
  padding:0 0 18px;
}

.player-shell{
  border-radius:24px;
  padding:16px 18px;
  display:grid;
  grid-template-columns:280px 1fr 240px;
  gap:20px;
  align-items:center;
}

.player-left{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.player-cover{
  width:58px;
  height:58px;
  border-radius:16px;
  overflow:hidden;
  background:linear-gradient(135deg, var(--accent3), var(--accent2));
  flex-shrink:0;
}

.player-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.track-title{
  font-weight:700;
  font-size:.98rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.track-subtitle{
  margin-top:4px;
  color:var(--muted);
  font-size:.84rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.player-center{
  min-width:0;
}

.player-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:12px;
}

.icon-btn{
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  cursor:pointer;
  background:rgba(255,255,255,0.05);
  color:var(--text);
  display:grid;
  place-items:center;
  transition:.2s ease;
}

.icon-btn:hover{
  background:rgba(255,255,255,0.08);
}

.icon-btn i{
  width:18px;
  height:18px;
}

.player-progress-row{
  display:grid;
  grid-template-columns:48px 1fr 48px;
  gap:10px;
  align-items:center;
}

.time-label{
  font-size:.78rem;
  color:var(--muted);
}

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

.progress-fill{
  height:100%;
  width:0;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow:0 0 18px rgba(255,78,205,0.34);
}

.player-right{
  display:flex;
  justify-content:flex-end;
}

.volume-box{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
}

.volume-box i{
  width:18px;
  height:18px;
}

input[type="range"]{
  appearance:none;
  -webkit-appearance:none;
  width:110px;
  height:4px;
  background:rgba(255,255,255,0.1);
  border-radius:999px;
  outline:none;
}

input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 12px rgba(255,78,205,0.45);
  cursor:pointer;
}

.now-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.now-card,
.queue-card{
  border-radius:26px;
  padding:24px;
}

.card-topline{
  margin-bottom:18px;
}

.current-show-card{
  padding:22px;
  border-radius:22px;
  background:
    linear-gradient(135deg, rgba(168,85,247,0.14), rgba(255,78,205,0.08)),
    rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
}

.current-show-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}

.tag{
  font-size:.74rem;
  font-weight:700;
  padding:7px 12px;
  border-radius:999px;
  letter-spacing:.04em;
  border:1px solid rgba(255,255,255,0.12);
}

.tag-primary{
  background:var(--accent-soft);
  color:#f3ccff;
}

.tag-secondary{
  background:var(--accent2-soft);
  color:#ffc2ed;
}

.current-show-card h3{
  margin:0 0 8px;
  font-family:"Syne",sans-serif;
  font-size:1.75rem;
  letter-spacing:-0.03em;
}

.current-show-host{
  color:var(--muted);
  margin-bottom:14px;
}

.current-show-meta{
  color:var(--muted);
  line-height:1.75;
  margin:0 0 18px;
}

.next-show-label{
  color:#ffc6ee;
  font-weight:600;
}

.queue-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:20px;
}

.queue-head h3{
  margin:8px 0 0;
  font-family:"Syne",sans-serif;
  font-size:1.4rem;
  letter-spacing:-0.03em;
}

.queue-badge,
.stream-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:6px 12px;
  border-radius:999px;
  font-size:.76rem;
  font-weight:700;
  color:#ffd2f4;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
}

.track-queue{
  display:flex;
  flex-direction:column;
  gap:10px;
  max-height:430px;
  overflow:auto;
  padding-right:4px;
}

.track-queue::-webkit-scrollbar{
  width:7px;
}

.track-queue::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,0.14);
  border-radius:999px;
}

.queue-item{
  display:grid;
  grid-template-columns:42px 1fr auto;
  gap:12px;
  align-items:center;
  padding:12px;
  border-radius:18px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  cursor:pointer;
  transition:.2s ease;
}

.queue-item:hover{
  background:rgba(255,255,255,0.06);
}

.queue-item.active{
  background:linear-gradient(135deg, rgba(168,85,247,0.18), rgba(255,78,205,0.12));
  border-color:rgba(255,255,255,0.12);
}

.queue-num{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,0.05);
  color:var(--muted);
  font-weight:700;
  font-size:.88rem;
}

.queue-item.active .queue-num{
  color:#fff;
  background:rgba(255,255,255,0.08);
}

.queue-main{
  min-width:0;
}

.queue-title{
  font-size:.94rem;
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.queue-sub{
  margin-top:4px;
  color:var(--muted);
  font-size:.8rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.queue-meta{
  color:var(--muted);
  font-size:.76rem;
}

.schedule-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}

.schedule-item{
  border-radius:24px;
  padding:20px;
  transition:.24s ease;
}

.schedule-item.active{
  background:
    linear-gradient(135deg, rgba(168,85,247,0.18), rgba(255,78,205,0.1)),
    var(--surface);
  border-color:rgba(255,255,255,0.14);
  box-shadow:
    0 16px 46px rgba(0,0,0,0.38),
    0 0 34px rgba(168,85,247,0.15);
}

.schedule-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.schedule-time{
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#ffc1ef;
}

.schedule-item.active .schedule-time{
  color:#fff;
}

.schedule-title{
  margin:0 0 6px;
  font-family:"Syne",sans-serif;
  font-size:1.15rem;
  letter-spacing:-0.03em;
}

.schedule-host{
  color:var(--muted);
  font-size:.9rem;
}

.schedule-live{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  font-size:.78rem;
  font-weight:700;
  color:#ffd0f2;
}

.stream-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}

.stream-card{
  border-radius:24px;
  padding:24px;
  transition:.24s ease;
}

.footer{
  position:relative;
  z-index:1;
  padding:24px 0 40px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-end;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.7;
}

.footer-live{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-weight:600;
}

body.playing .bg-orb-1{
  animation:orb-breathe-1 7s ease-in-out infinite;
}

body.playing .bg-orb-2{
  animation:orb-breathe-2 8s ease-in-out infinite;
}

@keyframes orb-breathe-1{
  0%,100%{transform:scale(1) translateY(0)}
  50%{transform:scale(1.12) translateY(12px)}
}

@keyframes orb-breathe-2{
  0%,100%{transform:scale(1) translateY(0)}
  50%{transform:scale(1.08) translateY(-10px)}
}

@media (max-width: 1100px){
  .hero-grid,
  .now-grid,
  .feature-grid,
  .stream-grid{
    grid-template-columns:1fr 1fr;
  }

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

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

  .player-right{
    justify-content:flex-start;
  }
}

@media (max-width: 760px){
  .topnav{
    display:none;
  }

  .hero{
    padding-top:28px;
  }

  .hero-grid,
  .feature-grid,
  .now-grid,
  .schedule-grid,
  .stream-grid,
  .hero-stats{
    grid-template-columns:1fr;
  }

  .hero-panel{
    padding:16px;
  }

  .hero-mini-player{
    flex-direction:row;
    align-items:center;
  }

  .player-shell{
    padding:14px;
    gap:14px;
  }

  .player-progress-row{
    grid-template-columns:42px 1fr 42px;
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .section{
    padding:56px 0;
  }
}