:root{
  --ink:#12172B;
  --ink-2:#1B2140;
  --ink-3:#232A4D;
  --amber:#FFB238;
  --amber-dim:#7A5A22;
  --teal:#2DD4BF;
  --paper:#F5F1E8;
  --slate:#8A93B0;
  --line:rgba(245,241,232,0.08);
}
*{box-sizing:border-box; margin:0; padding:0;}
body{
  background:var(--ink);
  color:var(--paper);
  font-family:'Inter',sans-serif;
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
}
h1,h2,h3,.display{ font-family:'Space Grotesk',sans-serif; }
.mono{ font-family:'IBM Plex Mono',monospace; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; }

.wrap{ max-width:1080px; margin:0 auto; padding:0 28px; }

/* ---------- nav ---------- */
nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 28px; max-width:1080px; margin:0 auto;
}
.logo{ display:flex; align-items:center; gap:12px; }
.logo svg{ width:34px; height:34px; }
.logo-text{ font-size:18px; font-weight:700; letter-spacing:0.02em; }
.logo-text span{ color:var(--amber); }
.nav-links{ display:flex; gap:28px; font-size:14px; color:var(--slate); }
.nav-links a:hover{ color:var(--paper); }
.nav-right{ display:flex; align-items:center; gap:14px; }
.btn-admin{
  background:transparent; color:var(--slate); border:1px solid var(--line);
  padding:9px 16px; border-radius:100px; font-size:13px; transition:all .2s;
}
.btn-admin:hover{ color:var(--paper); border-color:var(--slate); }

/* ---------- hero ---------- */
.hero{ padding:48px 0 64px; position:relative; }
.onair{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--teal); margin-bottom:22px; font-weight:600;
}
.dot{ width:7px; height:7px; border-radius:50%; background:var(--teal); animation:pulse 1.6s infinite; }
.dot.off{ background:var(--slate); animation:none; }
@keyframes pulse{ 0%,100%{ opacity:1; box-shadow:0 0 0 0 rgba(45,212,191,0.5);} 50%{ opacity:.5; } }

.hero-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center; }
@media(max-width:760px){ .hero-grid{ grid-template-columns:1fr; } }

.show-title{ font-size:44px; line-height:1.08; font-weight:700; margin-bottom:10px; }
.show-host{ color:var(--slate); font-size:16px; margin-bottom:28px; }

.player-row{ display:flex; align-items:center; gap:20px; }
.play-btn{
  width:64px; height:64px; border-radius:50%; background:var(--amber); color:var(--ink);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition:transform .15s ease;
}
.play-btn:hover{ transform:scale(1.05); }
.play-btn svg{ width:22px; height:22px; }

.eq{ display:flex; align-items:flex-end; gap:4px; height:36px; }
.eq span{ width:4px; background:var(--amber); border-radius:2px; animation:eq 1s ease-in-out infinite; }
.eq span:nth-child(1){ height:14px; animation-delay:-0.9s; }
.eq span:nth-child(2){ height:28px; animation-delay:-0.6s; }
.eq span:nth-child(3){ height:18px; animation-delay:-1.2s; }
.eq span:nth-child(4){ height:34px; animation-delay:-0.3s; }
.eq span:nth-child(5){ height:10px; animation-delay:-0.7s; }
@keyframes eq{ 0%,100%{ transform:scaleY(0.4);} 50%{ transform:scaleY(1);} }
.eq.paused span{ animation-play-state:paused; transform:scaleY(0.25); }

.freq{ font-size:13px; color:var(--slate); margin-left:auto; text-align:right; }
.freq b{ color:var(--paper); font-size:20px; display:block; }

.stats-row{ display:flex; gap:36px; margin-top:36px; }
.stat b{ font-size:22px; display:block; font-family:'Space Grotesk',sans-serif; }
.stat span{ font-size:12px; color:var(--slate); text-transform:uppercase; letter-spacing:0.08em; }

.dial-card{
  background:var(--ink-2); border:1px solid var(--line); border-radius:20px;
  padding:32px; position:relative; overflow:hidden;
}
.dial-ring{
  width:220px; height:220px; margin:0 auto; border-radius:50%;
  border:2px solid var(--line); position:relative;
  background:radial-gradient(circle at 50% 40%, rgba(255,178,56,0.08), transparent 70%);
  display:flex; align-items:center; justify-content:center;
}
.dial-ring::before{
  content:''; position:absolute; inset:14px; border-radius:50%; border:1px dashed rgba(245,241,232,0.12);
}
.dial-needle{ font-family:'IBM Plex Mono',monospace; font-size:30px; font-weight:500; color:var(--amber); }
.dial-caption{ text-align:center; margin-top:18px; color:var(--slate); font-size:13px; }

/* ---------- sections ---------- */
section{ padding:64px 0; border-top:1px solid var(--line); }
.section-head{ display:flex; align-items:baseline; justify-content:space-between; margin-bottom:32px; }
.section-head h2{ font-size:26px; }
.section-head .eyebrow{ color:var(--amber); font-size:12px; letter-spacing:0.12em; text-transform:uppercase; }

.schedule{ display:flex; flex-direction:column; }
.slot{
  display:grid; grid-template-columns:120px 1fr 160px; align-items:center;
  padding:18px 0; border-bottom:1px solid var(--line); gap:16px;
}
.slot:last-child{ border-bottom:none; }
.slot-time{ font-family:'IBM Plex Mono',monospace; color:var(--slate); font-size:14px; }
.slot-name{ font-weight:600; font-size:15px; }
.slot-tag{ font-size:12px; color:var(--slate); }
.slot.now .slot-time{ color:var(--teal); }
.slot.now .slot-name::after{ content:'· agora'; color:var(--teal); font-weight:400; margin-left:8px; font-size:12px; }

.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media(max-width:760px){ .blog-grid{ grid-template-columns:1fr; } }
.post{ background:var(--ink-2); border:1px solid var(--line); border-radius:16px; overflow:hidden; transition:transform .2s; }
.post:hover{ transform:translateY(-3px); }
.post-img{ height:120px; }
.post-body{ padding:20px; }
.post-cat{ font-size:11px; color:var(--amber); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:8px; display:block; }
.post-title{ font-size:16px; font-weight:600; margin-bottom:8px; line-height:1.35; }
.post-date{ font-size:12px; color:var(--slate); }

.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; }
@media(max-width:760px){ .contact-grid{ grid-template-columns:1fr; } }
.field{ margin-bottom:16px; }
.field label{ display:block; font-size:12px; color:var(--slate); margin-bottom:6px; text-transform:uppercase; letter-spacing:0.06em; }
.field input, .field textarea{
  width:100%; background:var(--ink-2); border:1px solid var(--line); border-radius:10px;
  padding:12px 14px; color:var(--paper); font-family:inherit; font-size:14px;
}
.field textarea{ resize:vertical; min-height:90px; }
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--amber); }
.submit-btn{ background:var(--amber); color:var(--ink); padding:12px 26px; border-radius:100px; font-weight:600; font-size:14px; }
.submit-note{ font-size:13px; color:var(--teal); margin-top:10px; display:none; }

.social-list{ display:flex; flex-direction:column; gap:14px; }
.social-item{
  display:flex; align-items:center; gap:14px; padding:14px 16px;
  background:var(--ink-2); border:1px solid var(--line); border-radius:12px; font-size:14px;
}
.social-icon{
  width:34px; height:34px; border-radius:50%; background:var(--ink-3);
  display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; color:var(--amber);
  font-family:'IBM Plex Mono',monospace;
}

footer{ padding:32px 0 48px; text-align:center; color:var(--slate); font-size:13px; }

/* ---------- admin ---------- */
.admin-nav{
  display:flex; align-items:center; justify-content:space-between; padding:22px 28px;
  max-width:1080px; margin:0 auto;
}
.admin-title{ font-size:16px; font-weight:600; }
.admin-title span{ color:var(--slate); font-weight:400; font-size:13px; margin-left:8px; }
.btn-back{
  background:transparent; color:var(--slate); border:1px solid var(--line);
  padding:9px 16px; border-radius:100px; font-size:13px;
}
.btn-back:hover{ color:var(--paper); }

.admin-wrap{ max-width:1080px; margin:0 auto; padding:8px 28px 80px; }
.cards{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:36px; }
@media(max-width:820px){ .cards{ grid-template-columns:repeat(2,1fr); } }
.card{ background:var(--ink-2); border:1px solid var(--line); border-radius:14px; padding:20px; }
.card .label{ font-size:12px; color:var(--slate); text-transform:uppercase; letter-spacing:0.06em; margin-bottom:8px; }
.card .value{ font-size:26px; font-weight:700; font-family:'Space Grotesk',sans-serif; }
.card .value.teal{ color:var(--teal); }
.card .value.amber{ color:var(--amber); }

.panel{ background:var(--ink-2); border:1px solid var(--line); border-radius:16px; padding:26px; margin-bottom:24px; }
.panel h3{ font-size:15px; margin-bottom:20px; }

.bars{ display:flex; align-items:flex-end; gap:10px; height:140px; }
.bar-col{ flex:1; display:flex; flex-direction:column; align-items:center; gap:8px; }
.bar{ width:100%; background:linear-gradient(180deg, var(--amber), var(--amber-dim)); border-radius:4px 4px 0 0; }
.bar-label{ font-size:11px; color:var(--slate); font-family:'IBM Plex Mono',monospace; }

.toggle-row{ display:flex; align-items:center; justify-content:space-between; }
.switch{ width:46px; height:26px; background:var(--ink-3); border-radius:100px; position:relative; transition:background .2s; }
.switch::after{ content:''; position:absolute; width:20px; height:20px; background:var(--slate); border-radius:50%; top:3px; left:3px; transition:all .2s; }
.switch.on{ background:rgba(45,212,191,0.25); }
.switch.on::after{ background:var(--teal); left:23px; }

.editor-row{ display:grid; grid-template-columns:100px 1fr 140px; gap:12px; margin-bottom:10px; }
.editor-row input{
  background:var(--ink-3); border:1px solid var(--line); border-radius:8px; padding:9px 12px;
  color:var(--paper); font-size:13px; font-family:inherit;
}
.editor-row input.mono-in{ font-family:'IBM Plex Mono',monospace; }

.msg-list{ display:flex; flex-direction:column; gap:12px; }
.msg{ padding:14px; background:var(--ink-3); border-radius:10px; }
.msg-top{ display:flex; justify-content:space-between; font-size:12px; color:var(--slate); margin-bottom:6px; }
.msg-body{ font-size:14px; }
.empty{ color:var(--slate); font-size:13px; padding:20px 0; text-align:center; }

.notice{
  background:rgba(255,178,56,0.08); border:1px solid rgba(255,178,56,0.25);
  color:var(--amber); font-size:13px; padding:14px 18px; border-radius:12px; margin-bottom:24px;
}
