*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --bg:#030303;
  --panel:rgba(255,255,255,.055);
  --panel-2:rgba(255,255,255,.085);
  --border:rgba(214,168,70,.35);
  --gold:#d6a846;
  --gold-light:#fff1b8;
  --text:#fff;
  --muted:#b9b9b9;
  --red:#ff2323;
  --green:#21e36b;
}

body{
  min-height:100vh;
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(214,168,70,.22), transparent 32%),
    linear-gradient(135deg,#020202 0%,#101010 55%,#000 100%);
  overflow-x:hidden;
}

.bg-orb{
  position:fixed;
  border-radius:999px;
  filter:blur(70px);
  opacity:.25;
  pointer-events:none;
  z-index:-1;
}

.orb-1{
  width:420px;height:420px;
  background:#d6a846;
  top:-120px;left:-120px;
}

.orb-2{
  width:360px;height:360px;
  background:#7b520d;
  right:-120px;bottom:120px;
}

.site-header{
  width:min(1220px,94%);
  margin:0 auto;
  padding:28px 0 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  width:58px;
  height:58px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid var(--border);
  box-shadow:0 0 24px rgba(214,168,70,.18);
}

.brand h1{
  font-size:clamp(24px,3vw,38px);
  font-weight:900;
  letter-spacing:-1px;
  text-transform:uppercase;
}

.brand h1 span{
  color:var(--gold);
}

.brand p{
  margin-top:5px;
  font-size:13px;
  font-weight:800;
  color:#fff;
}

.live-dot{
  display:inline-block;
  width:11px;
  height:11px;
  margin-right:8px;
  border-radius:50%;
  background:var(--red);
  box-shadow:0 0 18px rgba(255,35,35,.95);
}

.top-social{
  display:flex;
  gap:14px;
}

.top-social a,
.social-large a{
  display:grid;
  place-items:center;
  text-decoration:none;
  color:#fff;
  border:1px solid var(--border);
  background:rgba(255,255,255,.045);
  transition:.25s ease;
}

.top-social a{
  width:58px;
  height:58px;
  border-radius:50%;
  font-size:23px;
}

.top-social a:hover,
.social-large a:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 16px 35px rgba(214,168,70,.2);
  color:var(--gold-light);
}

.app-shell{
  width:min(1220px,94%);
  margin:0 auto;
  padding:34px;
  border:1px solid rgba(214,168,70,.22);
  border-radius:26px;
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.03));
  box-shadow:0 35px 90px rgba(0,0,0,.55);
  backdrop-filter:blur(20px);
}

.hero-title{
  text-align:center;
  padding:12px 0 30px;
}

.status{
  color:var(--gold-light);
  font-weight:900;
  letter-spacing:.8px;
  margin-bottom:14px;
}

.hero-title h2{
  font-size:clamp(34px,6vw,72px);
  line-height:.95;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-2px;
}

.hero-title h2 span{
  background:linear-gradient(180deg,#fff1b8,#d6a846 60%,#8e5e10);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-title p{
  color:var(--muted);
  font-size:20px;
  margin-top:14px;
}

.main-grid{
  display:grid;
  grid-template-columns:2.2fr 1fr;
  gap:24px;
}

.bottom-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:24px;
  margin-top:24px;
}

.panel{
  border:1px solid var(--border);
  background:linear-gradient(180deg,var(--panel-2),rgba(0,0,0,.35));
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 22px 55px rgba(0,0,0,.35);
}

.panel-title{
  display:flex;
  align-items:center;
  gap:12px;
  padding:20px 22px;
  border-bottom:1px solid rgba(214,168,70,.18);
  color:var(--gold-light);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.4px;
}

.panel-title i{
  color:var(--gold);
  font-size:22px;
}

.tv-frame{
  padding:0;
  background:#000;
}

.tv-frame iframe{
  display:block;
  width:100%;
  aspect-ratio:16/9;
  border:0;
}

.chat-frame iframe{
  display:block;
  width:100%;
  height:525px;
  border:0;
  background:#000;
}

.radio-card{
  padding:26px 22px 28px;
  text-align:center;
}

.radio-cover{
  width:150px;
  height:150px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid rgba(214,168,70,.6);
  box-shadow:0 0 40px rgba(214,168,70,.2);
  margin-bottom:18px;
}

.radio-card h3{
  font-size:24px;
  text-transform:uppercase;
}

.radio-card p{
  color:var(--muted);
  margin-top:8px;
}

.onair{
  color:var(--green)!important;
  font-weight:900;
}

#spectrum{
  width:100%;
  height:80px;
  margin:16px 0 10px;
  display:block;
}

.audio-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin:10px 0 20px;
}

.play-btn{
  width:68px;
  height:68px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  background:linear-gradient(135deg,#fff1b8,#d6a846,#93620e);
  color:#070707;
  font-size:24px;
  box-shadow:0 12px 34px rgba(214,168,70,.35);
}

#volumeRange{
  width:45%;
  accent-color:var(--gold);
}

.outline-btn{
  width:100%;
  border:1px solid rgba(214,168,70,.45);
  background:rgba(0,0,0,.28);
  color:#fff;
  padding:15px 16px;
  border-radius:13px;
  text-transform:uppercase;
  letter-spacing:.4px;
  font-weight:800;
  cursor:pointer;
}

.visitor-frame iframe{
  width:100%;
  height:400px;
  border:0;
  display:block;
  background:#000;
}

.social-large{
  padding:28px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.social-large a{
  height:86px;
  border-radius:22px;
  font-size:42px;
}

.social-large .fb{background:linear-gradient(135deg,#1877f2,#0b3d8f);}
.social-large .ig{background:linear-gradient(135deg,#feda75,#d62976,#4f5bd5);}
.social-large .yt{background:linear-gradient(135deg,#ff0000,#960000);}
.social-large .wa{background:linear-gradient(135deg,#25d366,#087a32);}

.apps-box{
  border-top:1px solid rgba(214,168,70,.18);
  padding:22px;
}

.apps-box h3{
  color:var(--gold-light);
  text-transform:uppercase;
  margin-bottom:18px;
}

.app-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.app-buttons a{
  flex:1;
  min-width:130px;
  text-decoration:none;
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  border-radius:12px;
  padding:13px;
  text-align:center;
  font-weight:800;
  background:rgba(255,255,255,.045);
}

.footer{
  width:min(1220px,94%);
  margin:0 auto;
  text-align:center;
  padding:28px 0 40px;
  color:var(--muted);
}

.footer strong,
.footer span{
  color:var(--gold-light);
}

.footer p{
  margin:7px 0;
}

.credit i{
  color:var(--gold);
  margin-right:8px;
}

@media(max-width:950px){
  .main-grid,
  .bottom-grid{
    grid-template-columns:1fr;
  }

  .chat-frame iframe{
    height:470px;
  }

  .visitor-frame iframe{
    height:330px;
  }
}

@media(max-width:640px){
  .site-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .top-social{
    width:100%;
    justify-content:space-between;
  }

  .top-social a{
    width:52px;
    height:52px;
  }

  .app-shell{
    padding:16px;
    border-radius:18px;
  }

  .panel{
    border-radius:18px;
  }

  .hero-title h2{
    letter-spacing:-1px;
  }

  .social-large{
    grid-template-columns:repeat(2,1fr);
  }
}
