/* ERADIOURI – base UI (minimal pro) */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#0f172a;
  color:#e5e7eb;
}
a{color:#7dd3fc;text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:1180px;margin:0 auto;padding:16px}

/* topbar */
.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(2,6,23,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(148,163,184,.18);
}
.topbarIn{display:flex;align-items:center;justify-content:space-between;gap:14px}
.brand{display:flex;align-items:center;gap:10px;font-weight:900;letter-spacing:.2px}
.brandDot{width:12px;height:12px;border-radius:999px;background:linear-gradient(135deg,#60a5fa,#34d399)}
.brandName{color:#e5e7eb}

/* nav */
.nav{display:flex;gap:10px;flex-wrap:wrap}
.navLink{
  padding:8px 10px;
  border-radius:12px;
  color:rgba(229,231,235,.85);
  border:1px solid transparent;
}
.navLink:hover{background:rgba(255,255,255,.06);text-decoration:none}
.navLink.isActive{
  background:rgba(255,255,255,.06);
  border-color:rgba(148,163,184,.25);
  color:#fff;
}

/* buttons */
.btnSm{
  display:inline-flex;align-items:center;justify-content:center;
  padding:8px 12px;border-radius:12px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(148,163,184,.22);
  color:#fff;
}
.btnSm:hover{background:rgba(255,255,255,.10);text-decoration:none}

/* alerts */
.alerts{margin:12px 0}
.alert{
  padding:10px 12px;border-radius:14px;
  border:1px solid rgba(148,163,184,.20);
  background:rgba(255,255,255,.05);
}
.alert.ok{border-color:rgba(52,211,153,.30)}
.alert.err{border-color:rgba(248,113,113,.35)}

/* footer */
.siteFooter{
  margin-top:26px;
  border-top:1px solid rgba(148,163,184,.18);
  background:rgba(2,6,23,.55);
}
.footerIn{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:18px 16px;
}
.footerLogo{display:flex;align-items:center;gap:10px;font-weight:900}
.footerName{color:#e5e7eb}
.footerSmall{margin-top:8px;color:rgba(229,231,235,.65);font-size:13px}
.footerRight{display:flex;gap:12px;flex-wrap:wrap}
.footerLink{color:rgba(229,231,235,.75)}
.footerLink:hover{color:#fff;text-decoration:none}

/* small screens */
@media (max-width:820px){
  .topbarIn{flex-direction:column;align-items:flex-start}
  .topRight{width:100%}
}

/* ===== HOME PRO ===== */
.homeHero{margin-top:10px}
.heroCard{
  border:1px solid rgba(148,163,184,.18);
  background:
    radial-gradient(900px 260px at 15% 10%, rgba(96,165,250,.18), transparent 60%),
    radial-gradient(700px 260px at 85% 30%, rgba(52,211,153,.14), transparent 60%),
    rgba(255,255,255,.04);
  border-radius:22px;
  padding:18px 18px;
}
.heroTitle{font-size:30px;font-weight:950;letter-spacing:.2px}
.heroSub{margin-top:8px;color:rgba(229,231,235,.75);max-width:760px}
.heroActions{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}
.btnPrimary{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:14px;
  background:linear-gradient(135deg, rgba(96,165,250,.95), rgba(52,211,153,.85));
  color:#081225;font-weight:900;
}
.btnPrimary:hover{text-decoration:none;filter:brightness(1.02)}
.btnSoft{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(148,163,184,.20);
  color:#fff;font-weight:800;
}
.btnSoft:hover{text-decoration:none;background:rgba(255,255,255,.09)}

.homeGrid{margin-top:16px;display:flex;flex-direction:column;gap:18px}
.block{
  border:1px solid rgba(148,163,184,.18);
  background:rgba(255,255,255,.03);
  border-radius:22px;
  padding:14px;
}
.blockHead{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-bottom:12px}
.blockTitle{font-size:18px;font-weight:950}
.blockSub{margin-top:4px;color:rgba(229,231,235,.68);font-size:13px}
.linkMore{color:rgba(125,211,252,.95);font-weight:700}
.linkMore:hover{text-decoration:none;opacity:.9}

.gridCards{display:grid;grid-template-columns:repeat(2, minmax(0,1fr));gap:12px}
.gridCards.cols3{grid-template-columns:repeat(3, minmax(0,1fr))}
.gridCards.cols4{grid-template-columns:repeat(4, minmax(0,1fr))}

@media (max-width:1000px){
  .gridCards.cols4{grid-template-columns:repeat(2, minmax(0,1fr))}
  .gridCards.cols3{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width:640px){
  .gridCards{grid-template-columns:1fr}
}

/* ===== RADIO CARD ===== */
.radioCard{
  border:1px solid rgba(148,163,184,.18);
  background:rgba(2,6,23,.45);
  border-radius:18px;
  overflow:hidden;
}
.radioCardTop{
  display:flex;gap:12px;align-items:center;
  padding:12px;
}
.radioCardTop:hover{text-decoration:none;background:rgba(255,255,255,.03)}
.radioLogo{
  width:46px;height:46px;border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(148,163,184,.18);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.radioLogo img{width:100%;height:100%;object-fit:cover;display:block}
.radioMeta{min-width:0}
.radioName{font-weight:950;letter-spacing:.2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.radioTags{margin-top:6px;display:flex;gap:6px;flex-wrap:wrap}
.tag{
  font-size:12px;
  padding:4px 8px;border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(148,163,184,.18);
  color:rgba(229,231,235,.85);
}
.tag.muted{color:rgba(229,231,235,.70)}
.radioCardBot{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:10px 12px;
  border-top:1px solid rgba(148,163,184,.14);
}

/* play / ghost reuse */
.btnPlay{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;
  padding:10px 12px;border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(148,163,184,.22);
  color:#fff;font-weight:900;
  cursor:pointer;
}
.btnPlay:hover{background:rgba(255,255,255,.12)}
.btnGhost{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 12px;border-radius:14px;
  background:transparent;
  border:1px solid rgba(148,163,184,.22);
  color:#fff;
  cursor:pointer;
}
.btnGhost:hover{background:rgba(255,255,255,.07)}

/* ===== Mini Player (placeholder) ===== */
.miniPlayer{
  position:fixed;left:16px;right:16px;bottom:16px;
  border:1px solid rgba(148,163,184,.22);
  background:rgba(2,6,23,.82);
  backdrop-filter: blur(10px);
  border-radius:18px;
  padding:10px 12px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}
.mpLeft{display:flex;align-items:center;gap:10px;min-width:0}
.mpDot{width:10px;height:10px;border-radius:999px;background:linear-gradient(135deg,#60a5fa,#34d399)}
.mpText{min-width:0}
.mpName{font-weight:950;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.mpSub{color:rgba(229,231,235,.65);font-size:12px}
.mpRight{display:flex;gap:10px;align-items:center}

/* ===== Filters bar ===== */
.filtersBar{
  display:flex;gap:10px;flex-wrap:wrap;align-items:center;
  margin-top:10px;
}
.in,.sel{
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(148,163,184,.18);
  color:#e5e7eb;
  outline:none;
}
.in{min-width:220px;flex:1}
.sel{min-width:180px}
.in::placeholder{color:rgba(229,231,235,.55)}

/* ===== Pager ===== */
.pager{display:flex;gap:8px;justify-content:center;margin-top:14px;flex-wrap:wrap}
.pg{
  padding:8px 10px;border-radius:12px;
  border:1px solid rgba(148,163,184,.22);
  background:rgba(255,255,255,.04);
  color:#fff;
}
.pg:hover{text-decoration:none;background:rgba(255,255,255,.08)}
.pg.isActive{background:rgba(255,255,255,.10);border-color:rgba(125,211,252,.45)}
.pg.isDisabled{opacity:.45;pointer-events:none}
