/* =========================
   RSTV DIGITAL – CLEAN CSS
   ========================= */

:root{
  --bg:#0b0d12;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);
  --stroke:rgba(255,255,255,.10);

  --text:#ffffff;
  --muted:rgba(255,255,255,.72);

  --dig-purple:#8f6afc;
  --dig-blue:#7b83ff;
  --dig-blue-deep:#568bff;

  --live:#ff2b2b;
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;height:100%}

body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.muted{color:var(--muted)}
.small{font-size:12px}

/* =========================
   TOP BAR
   ========================= */

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(0,0,0,.75);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.topbar__inner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand__logo{
  height:44px;
}

.nav{
  display:flex;
  gap:18px;
}

.nav__link{
  font-weight:800;
  color:var(--muted);
}

.nav__link.is-active,
.nav__link:hover{
  color:#fff;
}

/* =========================
   BUTTONS
   ========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:18px;
  font-weight:900;
  border:1px solid transparent;
  cursor:pointer;
}

.btn--primary{
  background:linear-gradient(90deg,var(--dig-purple),var(--dig-blue));
  box-shadow:0 14px 40px rgba(123,131,255,.25);
  color:#fff;
}

.btn--primary:hover{
  background:linear-gradient(90deg,var(--dig-purple),var(--dig-blue-deep));
}

.btn--ghost{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.14);
  color:#fff;
}

.btn--ghost:hover{
  background:rgba(255,255,255,.08);
}

.btn--sm{
  padding:10px 14px;
  border-radius:16px;
}

/* =========================
   HERO
   ========================= */

.hero{
  padding:56px 0 44px;
  background:
    radial-gradient(900px 480px at 80% 10%, rgba(123,131,255,.45), transparent 60%),
    radial-gradient(760px 420px at 15% 0%, rgba(143,106,252,.45), transparent 60%),
    linear-gradient(180deg, rgba(143,106,252,.12), rgba(123,131,255,.06) 40%, transparent);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.hero__inner{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:26px;
}

@media (max-width:900px){
  .hero__inner{grid-template-columns:1fr}
}

.kicker{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  font-weight:900;
}

.hero h1{
  margin:10px 0 0;
  font-size:54px;
  line-height:1.02;
}

.lead{
  font-size:18px;
  margin-top:12px;
  color:var(--muted);
}

.cta{
  display:flex;
  gap:12px;
  margin-top:18px;
}

.tagline{
  margin-top:18px;
  font-size:18px;
}

/* =========================
   FEATURE CARD
   ========================= */

.featureCard{
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:22px;
  box-shadow:0 30px 90px rgba(0,0,0,.35);
}

.featureCard__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.featureCard__title{
  font-size:32px;
  margin:18px 0 8px;
}

/* =========================
   LIVE PILL
   ========================= */

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
}

.pill--live{
  border-color:rgba(255,43,43,.4);
  background:rgba(255,43,43,.12);
}

.pill--live::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--live);
}

/* =========================
   SECTIONS
   ========================= */

.section{
  padding:44px 0;
}

.section--alt{
  background:rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.section__head{
  display:flex;
  justify-content:space-between;
  margin-bottom:16px;
}

/* =========================
   GRID / TILES
   ========================= */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:16px;
}

.tile{
  background:var(--panel2);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);
  padding:14px;
  transition:.15s ease;
}

.tile:hover{
  transform:translateY(-2px);
  border-color:rgba(123,131,255,.35);
}

.tile__top{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
}

.badge{
  font-size:12px;
  font-weight:900;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
}

.lcn{
  font-size:12px;
  font-weight:900;
  padding:5px 10px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(143,106,252,.25),rgba(123,131,255,.22));
}

.tile__logo{
  height:86px;
  object-fit:contain;
  margin:6px 0 10px;
}

.tile__name{
  margin:0;
}

.tile__tag{
  margin-top:4px;
}

/* =========================
   WATCH PAGE
   ========================= */

.watchhead{
  padding:32px 0 12px;
}

.watchhead__top{
  display:flex;
  gap:12px;
  margin-bottom:8px;
}

.watchhead__row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  flex-wrap:wrap;
}

.watchhead h1{
  margin:0;
  font-size:44px;
}

/* =========================
   PLAYER
   ========================= */

.player{
  background:var(--panel);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:14px;
}

.player__frame{
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  border-radius:14px;
  overflow:hidden;
}

.player__frame video{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* =========================
   REMOVE COPY BUTTON
   ========================= */

/* Hide copy button everywhere (HTML can remain) */
.copybtn{
  display:none !important;
}

/* =========================
   FOOTER
   ========================= */

.footer{
  padding:28px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.45);
}
