:root{
  --bg:#0b0d10;
  --panel:#12151b;
  --panel2:#0f1217;
  --text:#e8eef7;
  --muted:#a9b4c3;
  --line:rgba(255,255,255,.08);
  --accent:#ffcc33;
  --accent2:#ff6a3d;
  --radius:16px;
  --wrap:1180px;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(255,204,51,.10), transparent 60%),
              radial-gradient(900px 500px at 95% 10%, rgba(255,106,61,.12), transparent 60%),
              var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 18px}
.sr-only{position:absolute;left:-9999px}

.site-header{
  position:sticky;top:0;z-index:50;
  background: rgba(11,13,16,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-wrap{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}
.brand{display:flex;flex-direction:column;gap:4px}
.tvott-logo{font-weight:900;letter-spacing:.6px}
.tvott-logo__brand{color:var(--accent)}
.tvott-logo__tag{color:var(--text)}
.tvott-slogan{font-size:12px;color:var(--muted)}

.site-nav{display:flex;align-items:center;gap:18px}
.menu{list-style:none;display:flex;gap:14px;padding:0;margin:0}
.menu a{padding:10px 10px;border-radius:10px;color:var(--muted)}
.menu a:hover{background:rgba(255,255,255,.06);color:var(--text)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#111; font-weight:800;
  border:0; cursor:pointer;
}
.btn--ghost{
  background:transparent;color:var(--text);
  border:1px solid var(--line);
}
.btn--ghost:hover{background:rgba(255,255,255,.06)}

.nav-toggle{display:none;background:transparent;border:1px solid var(--line);border-radius:12px;padding:10px;cursor:pointer}
.nav-toggle__bar{display:block;width:20px;height:2px;background:var(--text);margin:4px 0;opacity:.9}

.site-main{padding:24px 0 40px}

.hero-grid{
  display:grid;
  grid-template-columns: 1.8fr 1fr;
  gap:18px;
  align-items:start;
}
.section-title{margin:0 0 10px 0}
.hero-side{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);padding:14px;box-shadow:var(--shadow)}
.mini{display:block;padding:10px;border-radius:12px;border:1px solid transparent}
.mini:hover{background:rgba(255,255,255,.04);border-color:var(--line)}
.mini__title{font-weight:800;line-height:1.2}
.mini__meta{color:var(--muted);font-size:12px;margin-top:6px}

.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.card__media img{width:100%;height:auto;display:block}
.card__body{padding:14px}
.card__title{margin:8px 0 8px;font-size:18px;line-height:1.2}
.card__excerpt{margin:0;color:var(--muted);font-size:14px;line-height:1.5}
.card--lead .card__title{font-size:28px}
.meta{display:flex;align-items:center;gap:10px;color:var(--muted);font-size:12px}
.chip{display:inline-flex;align-items:center;padding:4px 10px;border-radius:999px;background:rgba(255,204,51,.12);color:var(--accent);border:1px solid rgba(255,204,51,.22);font-weight:800}

.section-block{margin-top:26px}
.section-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.section-head h2{margin:0}
.link{color:var(--accent);font-weight:800}
.grid.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}

.page-head{padding:10px 0 16px}
.page-head h1{margin:0 0 8px}
.muted{color:var(--muted);margin:0}

.article{max-width:860px}
.article__head h1{margin:0 0 10px;font-size:34px;line-height:1.1}
.article__meta{color:var(--muted);font-size:13px;display:flex;gap:10px;flex-wrap:wrap}
.article__featured{margin:16px 0 0}
.article__featured img{width:100%;height:auto;border-radius:var(--radius);border:1px solid var(--line)}
.article__content{margin-top:16px;line-height:1.75;color:#dfe7f2}
.article__content a{color:var(--accent)}
.pill-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:18px}
.pill{padding:6px 10px;border-radius:999px;border:1px solid var(--line);color:var(--muted)}
.pill:hover{background:rgba(255,255,255,.06);color:var(--text)}

.form-card{max-width:760px}
.tvott-form{display:grid;gap:12px;background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);padding:16px;box-shadow:var(--shadow)}
.tvott-form label span{display:block;font-weight:800;margin-bottom:6px}
.tvott-form input,.tvott-form textarea,.tvott-form select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  background:var(--panel2);
  border:1px solid var(--line);
  color:var(--text);
}
.notice{border-radius:14px;padding:12px 14px;border:1px solid var(--line);margin-bottom:12px}
.notice--ok{background:rgba(46,204,113,.10);border-color:rgba(46,204,113,.25)}
.notice--bad{background:rgba(255,99,71,.12);border-color:rgba(255,99,71,.28)}

.site-footer{border-top:1px solid var(--line);background:rgba(10,12,15,.6);padding:26px 0 18px}
.footer-grid{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap:18px;
}
.footer-col h4{margin:0 0 10px}
.footer-desc{color:var(--muted);line-height:1.6;margin:10px 0 0}
.menu--footer{flex-direction:column;gap:8px}
.footer-links{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--text)}
.footer-bottom{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;margin-top:16px;color:var(--muted);font-size:12px}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .grid.cards{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .footer-grid{grid-template-columns:1fr 1fr}
}

@media (max-width: 680px){
  .grid.cards{grid-template-columns:1fr}
  .nav-toggle{display:inline-flex}
  .site-nav{
    position:fixed;
    inset:70px 12px auto 12px;
    background:rgba(18,21,27,.98);
    border:1px solid var(--line);
    border-radius:16px;
    padding:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    box-shadow:var(--shadow);
  }
  .site-nav.is-open{display:flex}
  .menu--primary{flex-direction:column}
  .menu a{display:block}
  .footer-grid{grid-template-columns:1fr}
}


/* Plugin: TVOTT Custom News Manager single article wrapper */
.tvott-single-article{max-width:860px;margin:0 auto;padding:0 18px}
.tvott-single-article h1,h2,h3{color:var(--text)}
.tvott-single-article a{color:var(--accent)}


/* Ad slots */
.tvott-ad-wrap{
  margin: 14px auto;
  max-width: var(--wrap);
  padding: 0 18px;
}
.tvott-ad{
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 12px;
}
.tvott-ad__title{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .6px;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}


/* Front Page Hero Banner */
.tvott-hero{
  margin: 8px 0 18px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 260px at 18% 18%, rgba(255,204,51,.20), transparent 55%),
    radial-gradient(700px 240px at 78% 28%, rgba(255,106,61,.16), transparent 60%),
    linear-gradient(180deg, rgba(18,21,27,.92), rgba(11,13,16,.92));
}
.tvott-hero__inner{
  display:grid;
  grid-template-columns: 1.8fr .7fr;
  gap: 18px;
  align-items: stretch;
  padding: 28px 18px;
}
.tvott-hero__content{display:flex;flex-direction:column;justify-content:center}
.tvott-hero__kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 12px;
}
.tvott-hero__title{
  margin: 10px 0 6px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.6px;
}
.tvott-hero__subtitle{
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.65;
  font-size: 16px;
}
.tvott-hero__actions{display:flex;gap:10px;flex-wrap:wrap}
.tvott-hero__badge{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  box-shadow: var(--shadow);
  padding: 16px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.tvott-hero__badgeTop{font-weight: 1000; letter-spacing: 2px; font-size: 12px; color: var(--muted); text-transform: uppercase}
.tvott-hero__badgeMid{font-weight: 1000; font-size: 18px; margin: 6px 0; letter-spacing: 1px}
.tvott-hero__badgeBot{
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,204,51,.95), rgba(255,106,61,.95));
  color: #111;
}

/* Footer polish */
.site-footer{margin-top: 20px}
.footer-col--brand .footer-brand{margin-bottom: 8px}
.footer-social{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
.footer-social a{color: var(--muted)}
.footer-social a:hover{color: var(--text)}
.footer-small{color: var(--muted); font-size: 12px}
.footer-grid{padding: 10px 18px}

@media (max-width: 980px){
  .tvott-hero__inner{grid-template-columns:1fr}
  .tvott-hero__badge{align-items:flex-start;text-align:left}
}
