:root{
  --bg:#303331;
  --card:#242725;
  --card-dark:#1c1e1d;
  --muted:#a3aba5;
  --accent:#00ff87;
  --accent-strong:#10b981;
  --accent-soft:#34d399;
  --success:#34e08a;
  --glass: rgba(255,255,255,0.05);
  --container:1200px;
  --radius:12px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,Segoe UI,Arial,sans-serif;
  background:linear-gradient(180deg, #303331 0%, #262927 60%, #1e201f 100%);
  background-color:#303331;
  color:#f0f5f1;
  -webkit-font-smoothing:antialiased;
}
.container{max-width:var(--container);margin:0 auto;padding:0 20px}
.site-header{position:relative;background:transparent;padding:18px 0;}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.logo{font-weight:700;color:var(--accent);text-decoration:none;font-size:20px;display:flex;align-items:center;transition:transform .2s ease, filter .2s ease;}
.logo:hover{transform:translateY(-1px) scale(1.02);filter:drop-shadow(0 4px 12px rgba(0,255,135,0.25));}
.logo-img{height:46px;width:auto;display:block;}
.btn-icon{
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.12);
  padding: 0;
  height: 46px;
  width: 46px;
  min-height: 46px;
  min-width: 46px;
  border-radius: 50%;
  color: inherit;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-icon:hover{
  transform: scale(1.08) rotate(12deg);
  border-color: rgba(0, 255, 135, 0.55);
  background: rgba(0, 255, 135, 0.08);
  box-shadow: 0 0 18px rgba(0, 255, 135, 0.35), inset 0 0 10px rgba(0, 255, 135, 0.12);
}
.btn-icon:active{
  transform: scale(0.95);
}
.hero{padding:56px 0 32px}
.hero-inner{display:grid;gap:14px}
.hero h1{font-size:32px;margin:0}
.subtitle{color:var(--muted);margin:0}
.search{margin-top:12px}
#search{width:100%;padding:12px 14px;border-radius:10px;border:0;background:rgba(255,255,255,0.03);color:inherit}

.hero-banner{padding:24px 0 10px}
.hero-banner-inner{display:grid;grid-template-columns:1.4fr .9fr;gap:28px;align-items:center;background:linear-gradient(135deg, rgba(108,99,255,0.18), rgba(14,165,233,0.08));border:1px solid rgba(168,85,247,0.18);border-radius:22px;padding:32px;box-shadow:0 18px 45px rgba(2,6,23,0.55)}
.eyebrow{display:inline-block;padding:7px 12px;border-radius:999px;background:rgba(52,224,138,0.08);border:1px solid rgba(52,224,138,0.2);color:#9bf7c1;font-size:12px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase}
.hero-copy h1{margin:14px 0 12px;font-size:clamp(2rem,3vw,3.4rem);line-height:1.08;color:#f8fbff}
.hero-copy p{margin:0;color:#dfeaf7;line-height:1.7;font-size:1.05rem;max-width:620px}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:22px}
.primary-btn,.secondary-btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 20px;border-radius:12px;text-decoration:none;font-weight:700;transition:transform .2s ease,box-shadow .2s ease}
.primary-btn{background:linear-gradient(135deg, var(--accent), var(--accent-strong));color:white;box-shadow:0 10px 22px rgba(108,99,255,0.35)}
.secondary-btn{background:rgba(255,255,255,0.04);color:#eff7ff;border:1px solid rgba(255,255,255,0.08)}
.primary-btn:hover,.secondary-btn:hover{transform:translateY(-2px)}
.hero-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.metric-card{background:rgba(48,51,49,0.75);border:1px solid rgba(255,255,255,0.08);border-radius:16px;padding:18px 16px;text-align:center}
.metric-card strong{display:block;font-size:1.6rem;color:#fff}
.metric-card span{display:block;font-size:.82rem;color:var(--muted);margin-top:6px}

.streams{padding:28px 0}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:18px}
.card{background:linear-gradient(180deg,rgba(255,255,255,0.02),transparent);border-radius:12px;overflow:hidden;box-shadow:0 6px 18px rgba(2,6,23,0.6);cursor:pointer;transition:transform .18s ease,box-shadow .18s ease}
.card:hover{transform:translateY(-6px);box-shadow:0 12px 32px rgba(2,6,23,0.7)}
.thumb{display:none}
.meta{padding:20px 16px}
.meta h3{margin:0 0 6px 0;font-size:16px}
.viewer{margin:0;color:var(--muted);font-size:13px}

.site-footer{padding:18px 0;text-align:center;color:var(--muted);font-size:13px}

/* Article hero image styling */
.content-article{padding:28px 20px 36px}
.article-hero-image{max-width:980px;margin:18px auto 28px;border-radius:14px;overflow:hidden;box-shadow:0 14px 40px rgba(2,6,23,0.6)}
.article-hero-image img,.article-hero-image picture{width:100%;height:auto;display:block}
.article-hero-image img{width:100%;height:360px;object-fit:cover;display:block}

@media (max-width:720px){
  .article-hero-image img{height:180px}
  .content-article header h1{font-size:22px}
  .content-article{padding:18px 14px}
}
.content-article header h1{margin:0 0 12px 0;font-size:28px}
.content-article header p{color:var(--muted);line-height:1.6}

.comparison-section{margin:26px 0 12px}
.table-wrap{overflow-x:auto;margin-top:16px;border-radius:16px;border:1px solid rgba(0,255,135,0.2);background:linear-gradient(180deg, rgba(48,51,49,0.95), rgba(36,39,37,0.96));box-shadow:0 18px 32px rgba(0,0,0,0.35)}
.comparison-table{width:100%;border-collapse:collapse;min-width:640px}
.comparison-table th,
.comparison-table td{padding:16px 18px;border-bottom:1px solid rgba(167,139,250,0.12);text-align:left;vertical-align:top}
.comparison-table th{background:linear-gradient(135deg, rgba(108,99,255,0.28), rgba(59,130,246,0.18));color:#f4f7ff;font-size:14px;letter-spacing:0.04em;text-transform:uppercase}
.comparison-table td{color:#c8d2e6;line-height:1.6}
.comparison-table tbody tr:nth-child(even){background:rgba(255,255,255,0.02)}
.comparison-table tbody tr:hover{background:rgba(167,139,250,0.08)}
.comparison-table td:first-child{font-weight:700;color:#ffffff}

/* Small screens */
@media (max-width:520px){
  .hero h1{font-size:22px}
  .thumb{height:110px}
  .comparison-table th,
  .comparison-table td{padding:12px 10px}
  .hero-metrics{grid-template-columns:repeat(2,1fr)}
  .announce-inner{font-size:13px;line-height:1.5}
  kbd{padding:2px 6px;font-size:11px}
}

/* Light theme */
:root.light{
  --bg:#eef3f8;
  --card:#ffffff;
  --muted:#5f6d82;
  --accent:#5b4fe5;
  --accent-strong:#6d5ef6;
  --accent-soft:#8d7dff;
  --success:#1ca66a;
  --glass:rgba(15,23,42,0.04);
}
body.light{background:linear-gradient(180deg,#f2f5fb 0%, #edf1f7 58%, #e8edf7 100%);color:#0f172a}
body.light .logo{color:#4d47c7}
body.light .announcement{background:rgba(19,74,58,0.06)}
body.light .announce-inner{background:rgba(34,197,94,0.08);color:#0d5a3b;border-color:rgba(32,138,101,0.18)}
body.light .panel-inner{background:rgba(255,255,255,0.8);border-color:rgba(148,163,184,0.18);box-shadow:0 10px 28px rgba(15,23,42,0.08)}
body.light .stream-item{background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(240,244,251,0.98));border-color:rgba(148,163,184,0.22);box-shadow:0 8px 20px rgba(15,23,42,0.07)}
body.light .stream-title{color:#0f172a}
body.light .status{background:linear-gradient(135deg, rgba(16,185,129,0.15), rgba(5,150,105,0.18));border-color:rgba(16,185,129,0.4);color:#065f46;box-shadow:0 0 14px rgba(16,185,129,0.18)}
body.light .dot{background:#10b981;box-shadow:0 0 8px #10b981}
body.light .dot::before, body.light .dot::after{border-color:#10b981}
body.light .sport-emoji{background:radial-gradient(circle at 30% 30%, rgba(91,79,229,0.2), rgba(16,185,129,0.15) 55%, rgba(255,255,255,0.85));border-color:rgba(91,79,229,0.3);box-shadow:0 4px 14px rgba(16,185,129,0.15)}
body.light .hero-banner-inner{background:linear-gradient(135deg, rgba(95,94,197,0.12), rgba(148,163,184,0.12));border-color:rgba(124,58,237,0.12);box-shadow:0 16px 34px rgba(15,23,42,0.08)}
body.light .eyebrow{background:rgba(34,197,94,0.08);border-color:rgba(16,185,129,0.18);color:#0f766e}
body.light .hero-copy h1,
body.light .hero-copy p,
body.light .metric-card strong,
body.light .metric-card span,
body.light .comparison-table th,
body.light .comparison-table td,
body.light .content-article header h1,
body.light .content-article header p,
body.light .site-footer,
body.light .footer-links a{color:#0f172a}
body.light .metric-card{background:rgba(255,255,255,0.7);border-color:rgba(148,163,184,0.18)}
body.light .comparison-table th{background:linear-gradient(135deg, rgba(113,103,240,0.18), rgba(59,130,246,0.12));color:#172033}
body.light .comparison-table td{color:#1f2d3d}
body.light .table-wrap{background:linear-gradient(180deg, rgba(245,247,252,0.96), rgba(236,242,249,0.96));border-color:rgba(148,163,184,0.22)}
body.light .primary-btn{box-shadow:0 10px 22px rgba(91,79,229,0.22)}
body.light .secondary-btn{background:rgba(14,30,52,0.04);border-color:rgba(15,23,42,0.08);color:#0f172a}
body.light .btn-icon{border-color:rgba(15,23,42,0.15);color:#0f172a;box-shadow:0 4px 14px rgba(15,23,42,0.06)}
body.light .btn-icon:hover{border-color:rgba(16,185,129,0.5);background:rgba(16,185,129,0.08);box-shadow:0 0 16px rgba(16,185,129,0.2)}
body.light .footer-links a:hover{color:#111827}

/* Announcement and top panel styles */
.announcement{padding:14px 20px;margin-top:6px}
.announce-inner{background:rgba(32,138,101,0.08);border-radius:10px;padding:12px 16px;color:#7ef2b2;font-weight:600;border:1px solid rgba(127,225,183,0.06)}

.panel{padding:18px 0}
.panel-inner{background:rgba(38,41,39,0.85);border-radius:14px;padding:20px;border:1px solid rgba(255,255,255,0.06);box-shadow:0 6px 22px rgba(0,0,0,0.45)}
.stream-list{list-style:none;margin:0;padding:6px;display:grid;gap:12px}
.stream-item{display:flex;align-items:center;justify-content:space-between;padding:18px 22px;border-radius:16px;background:linear-gradient(180deg, rgba(48,51,49,0.96), rgba(36,39,37,0.96));margin:0;border:1px solid rgba(255,255,255,0.08);color:inherit;text-decoration:none;cursor:pointer;width:100%;box-shadow:inset 0 1px 0 rgba(255,255,255,0.04),0 8px 20px rgba(0,0,0,0.35);transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease}
.stream-item:hover{transform:translateY(-3px);border-color:rgba(0,255,135,0.38);box-shadow:inset 0 1px 0 rgba(255,255,255,0.06),0 16px 36px rgba(2,6,23,0.6),0 0 22px rgba(0,255,135,0.14)}
.stream-title{font-weight:800;font-size:22px;letter-spacing:-0.02em;display:inline-flex;align-items:center;gap:14px}
.sport-emoji{font-size:24px;display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:50%;background:radial-gradient(circle at 30% 30%, rgba(0,255,135,0.22), rgba(99,102,241,0.18) 55%, rgba(15,23,42,0.85) 100%);border:1.5px solid rgba(0,255,135,0.35);box-shadow:0 4px 18px rgba(0,255,135,0.2), inset 0 1px 0 rgba(255,255,255,0.2);filter:drop-shadow(0 2px 10px rgba(0,255,135,0.3));animation:iconFloat 3.2s ease-in-out infinite;transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, filter .25s ease}
.status{color:#00ff87;font-size:14px;font-weight:800;letter-spacing:0.06em;text-transform:uppercase;display:inline-flex;align-items:center;gap:10px;line-height:1;animation:statusIn .9s ease both;padding:8px 16px;border-radius:999px;background:linear-gradient(135deg, rgba(0,255,135,0.12), rgba(6,78,59,0.7) 60%, rgba(11,20,38,0.85));border:1px solid rgba(0,255,135,0.35);box-shadow:0 0 16px rgba(0,255,135,0.18), inset 0 1px 0 rgba(255,255,255,0.12);transition:all .22s ease;position:relative;overflow:visible}
.dot{width:9px;height:9px;background:#00ff87;border-radius:50%;display:inline-block;position:relative;box-shadow:0 0 10px #00ff87, 0 0 18px rgba(0,255,135,0.6);animation:dotCorePulse 2s ease-in-out infinite}
.dot::before,
.dot::after{content:"";position:absolute;inset:-3px;border-radius:50%;border:1.5px solid #00ff87;opacity:0;animation:radarRing 2s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;pointer-events:none}
.dot::after{animation-delay:0.9s}

@keyframes radarRing{
  0%{transform:scale(0.8);opacity:0.95}
  50%{opacity:0.55}
  100%{transform:scale(3.4);opacity:0}
}

@keyframes dotCorePulse{
  0%,100%{transform:scale(1);box-shadow:0 0 8px #00ff87, 0 0 16px rgba(0,255,135,0.5)}
  50%{transform:scale(1.2);box-shadow:0 0 12px #00ff87, 0 0 24px rgba(0,255,135,0.85)}
}

@keyframes statusIn{
  from{opacity:0;transform:translateY(6px)}
  to{opacity:1;transform:translateY(0)}
}

.stream-item:hover .dot{transform:scale(1.15);box-shadow:0 0 14px #00ff87, 0 0 25px rgba(0,255,135,0.9)}
.stream-item:hover .status{color:#ffffff;background:linear-gradient(135deg, rgba(0,255,135,0.25), rgba(5,150,105,0.75) 60%, rgba(11,20,38,0.9));border-color:rgba(0,255,135,0.6);box-shadow:0 0 24px rgba(0,255,135,0.4), inset 0 1px 0 rgba(255,255,255,0.25);transform:translateY(-1px)}
.stream-item:hover .sport-emoji{transform:scale(1.16) rotate(-5deg);box-shadow:0 8px 28px rgba(0,255,135,0.4), inset 0 1px 0 rgba(255,255,255,0.3);border-color:rgba(0,255,135,0.65);filter:drop-shadow(0 4px 18px rgba(0,255,135,0.6))}

@keyframes iconFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-3.5px)}
}

@media (prefers-reduced-motion: reduce){
  .dot, .dot::before, .dot::after, .status, .sport-emoji{animation:none;transition:none}
}

/* Visually hidden but accessible content for SEO */
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

@media (max-width:720px){
  .stream-item{padding:14px}
  .stream-title{font-size:16px}
  .hero-banner-inner{grid-template-columns:1fr;padding:22px;gap:20px}
  .hero-metrics{grid-template-columns:repeat(3,1fr);gap:10px}
  .metric-card{padding:14px 10px}
  .metric-card strong{font-size:1.3rem}
  .primary-btn,.secondary-btn{padding:14px 18px;min-height:48px;width:100%}
  .hero-actions{flex-direction:column;gap:10px}
}

/* Hide hero text and card meta text per user request */
.hero-inner h1,
.hero-inner .subtitle {
  display: none !important;
}
.grid .card .meta h3,
.grid .card .meta .viewer {
  display: none !important;
}

/* Center cards visually when meta text is hidden */
.grid .card{display:flex;align-items:center;justify-content:center;padding:28px 16px;min-height:160px}

/* Remove hero section, search input and footer (user requested) */
.hero,
.hero-inner,
.search {
  display: none !important;
}

/* Reduce vertical spacing after removing hero */
.streams{padding:10px 0}
.panel{margin-bottom:6px}

/* Footer links and disclaimer */
.site-footer{
  display:block !important;
  padding:20px 0 30px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}
.footer-inner{
  display:grid;
  gap:16px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 18px;
}
.footer-links a{
  color:var(--muted);
  text-decoration:none;
  padding:10px 4px;
  min-height:48px;
  display:inline-flex;
  align-items:center;
}
.footer-links a:hover{
  color:#e6eef8;
}

/* ================= FOOTER BLOG SECTION (MAGAZINE HUB STYLE) ================= */
.footer-blog-section{
  text-align:left;
  padding:24px 0 16px;
  position:relative;
}
.footer-blog-header{
  text-align:center;
  margin-bottom:24px;
}
.blog-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(0,255,135,0.12), rgba(16,185,129,0.06));
  border:1px solid rgba(0,255,135,0.3);
  color:#00ff87;
  font-size:12px;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  box-shadow:0 0 12px rgba(0,255,135,0.15);
}
.footer-blog-section h2{
  margin:10px 0 6px;
  text-align:center;
  font-size:clamp(1.8rem, 2.4vw, 2.5rem);
  color:#ffffff;
  font-weight:900;
  letter-spacing:-0.02em;
}
.blog-subheading{
  margin:0 auto;
  max-width:620px;
  color:var(--muted);
  font-size:0.95rem;
  line-height:1.6;
}

.footer-blog-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
}

.footer-blog-card{
  background:linear-gradient(180deg, rgba(48,51,49,0.96), rgba(36,39,37,0.98));
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:20px 20px 18px;
  box-shadow:0 10px 24px rgba(0,0,0,0.35);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
  transition:transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.footer-blog-card::before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg, #00ff87, #00f2fe, #6366f1);
  opacity:0;
  transition:opacity .24s ease;
}
.footer-blog-card:hover{
  transform:translateY(-4px);
  border-color:rgba(0,255,135,0.45);
  box-shadow:0 16px 36px rgba(0,0,0,0.45), 0 0 22px rgba(0,255,135,0.12);
}
.footer-blog-card:hover::before{
  opacity:1;
}

.blog-keyword-btn{
  width:100%;
  border:0;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(0,255,135,0.12), rgba(56,189,248,0.08));
  border:1px solid rgba(0,255,135,0.25);
  color:#ffffff;
  font-size:1.1rem;
  font-weight:900;
  letter-spacing:0.02em;
  padding:13px 16px;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  position:relative;
  box-shadow:0 4px 14px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
  transition:all .22s ease;
}
.blog-keyword-btn:hover{
  background:linear-gradient(135deg, rgba(0,255,135,0.2), rgba(56,189,248,0.15));
  border-color:rgba(0,255,135,0.55);
  color:#00ff87;
  box-shadow:0 6px 20px rgba(0,0,0,0.3), 0 0 16px rgba(0,255,135,0.2);
}

.blog-article{
  padding:14px 2px 4px;
  flex-grow:1;
}
.blog-article h4{
  margin:14px 0 6px;
  font-size:1.02rem;
  line-height:1.4;
  color:#00ff87;
  font-weight:800;
  letter-spacing:0.01em;
}
.blog-article h4:first-child{
  margin-top:2px;
}
.blog-article p{
  margin:0 0 12px;
  font-size:0.94rem;
  line-height:1.65;
  color:#d4ddd6;
}

.read-more-btn{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  border:1px solid rgba(0,255,135,0.35);
  background:linear-gradient(135deg, rgba(0,255,135,0.12), rgba(16,185,129,0.06));
  color:#00ff87;
  border-radius:12px;
  padding:12px 18px;
  min-height:46px;
  cursor:pointer;
  font-weight:800;
  font-size:0.95rem;
  letter-spacing:0.03em;
  text-decoration:none;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
  transition:all 0.22s ease;
}
.read-more-btn::after{
  content:"→";
  font-size:1.15rem;
  transition:transform 0.22s ease;
}
.read-more-btn:hover{
  background:linear-gradient(135deg, #00ff87, #10b981);
  color:#041f12;
  border-color:#00ff87;
  box-shadow:0 6px 20px rgba(0,255,135,0.35);
  transform:translateY(-1px);
}
.read-more-btn:hover::after{
  transform:translateX(4px);
}

@media (max-width: 768px){
  .footer-blog-grid{
    grid-template-columns:1fr;
    gap:16px;
  }
  .footer-blog-card{
    padding:18px 16px;
  }
}

body.light .footer-blog-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(240,244,251,0.98));
  border-color:rgba(148,163,184,0.22);
  box-shadow:0 8px 20px rgba(15,23,42,0.07);
}
body.light .blog-eyebrow{
  background:rgba(16,185,129,0.1);
  border-color:rgba(16,185,129,0.3);
  color:#047857;
}
body.light .footer-blog-section h2{
  color:#0f172a;
}
body.light .blog-subheading{
  color:#64748b;
}
body.light .blog-keyword-btn{
  background:linear-gradient(135deg, rgba(16,185,129,0.12), rgba(91,79,229,0.08));
  border-color:rgba(16,185,129,0.3);
  color:#0f172a;
}
body.light .blog-article h4{
  color:#059669;
}
body.light .blog-article p{
  color:#334155;
}
body.light .read-more-btn{
  background:linear-gradient(135deg, rgba(16,185,129,0.12), rgba(5,150,105,0.08));
  color:#065f46;
  border-color:rgba(16,185,129,0.35);
}
body.light .read-more-btn:hover{
  background:linear-gradient(135deg, #10b981, #059669);
  color:#ffffff;
}

/* Homepage safety trust section */
.safety-trust-section{padding:10px 0 18px}
.safety-trust-inner{
  background:linear-gradient(135deg, rgba(0,255,135,0.08), rgba(48,51,49,0.7));
  border:1px solid rgba(0,255,135,0.18);
  border-radius:22px;
  padding:28px 30px;
  box-shadow:0 18px 45px rgba(0,0,0,0.35);
}
.safety-trust-header{text-align:center;margin-bottom:18px}
.safety-trust-header h2, .safety-trust-header-title{
  margin:10px 0 8px;
  font-size:clamp(1.6rem, 2.2vw, 2.2rem);
  color:#f4f7ff;
  font-weight:800;
}
.safety-trust-header p{
  margin:0;
  color:#dfeaf7;
  font-size:1rem;
}
.safety-table-wrap{
  overflow-x:auto;
  border-radius:16px;
  border:1px solid rgba(0,255,135,0.2);
  background:linear-gradient(180deg, rgba(48,51,49,0.95), rgba(36,39,37,0.96));
  box-shadow:0 18px 32px rgba(0,0,0,0.35);
}
.safety-table{
  width:100%;
  border-collapse:collapse;
  min-width:640px;
}
.safety-table th,
.safety-table td{
  padding:16px 18px;
  border-bottom:1px solid rgba(167,139,250,0.12);
  text-align:left;
  vertical-align:top;
}
.safety-table th{
  background:linear-gradient(135deg, rgba(52,224,138,0.18), rgba(108,99,255,0.22));
  color:#f4f7ff;
  font-size:14px;
  letter-spacing:0.04em;
  text-transform:uppercase;
}
.safety-table td{
  color:#c8d2e6;
  line-height:1.6;
}
.safety-table tbody tr:nth-child(even){
  background:rgba(255,255,255,0.02);
}
.safety-table tbody tr:hover{
  background:rgba(52,224,138,0.06);
}
.safety-table td:first-child{
  font-weight:700;
  color:#ffffff;
}
.safety-ok{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(52,224,138,0.1);
  border:1px solid rgba(52,224,138,0.25);
  color:#9bf7c1;
  font-weight:700;
  font-size:0.9rem;
}
.safety-trust-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-top:20px;
}
.safety-trust-actions .secondary-btn{
  min-height:48px;
}

/* Live Scores Header Button */
.controls{display:flex;align-items:center;gap:12px;}
.live-scores-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.35));
  border:1.5px solid rgba(239, 68, 68, 0.55);
  color:#ffffff;
  padding:9px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  box-shadow:0 0 16px rgba(239, 68, 68, 0.28), inset 0 1px 0 rgba(255,255,255,0.1);
  transition:all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing:0.02em;
}
.live-scores-btn:hover{
  background:linear-gradient(135deg, rgba(239, 68, 68, 0.4), rgba(220, 38, 38, 0.65));
  border-color:rgba(239, 68, 68, 0.95);
  box-shadow:0 0 24px rgba(239, 68, 68, 0.55), inset 0 0 10px rgba(255,255,255,0.15);
  transform:translateY(-1px) scale(1.04);
  color:#ffffff;
}
.live-scores-btn.active{
  background:linear-gradient(135deg, #ef4444, #dc2626);
  border-color:#ef4444;
  box-shadow:0 0 20px rgba(239, 68, 68, 0.6);
}
.live-pulse-dot{
  width:9px;
  height:9px;
  background-color:#ef4444;
  border-radius:50%;
  box-shadow:0 0 8px #ef4444;
  animation:liveDotPulse 1.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
}
@keyframes liveDotPulse{
  0%, 100%{opacity:1;transform:scale(1);}
  50%{opacity:0.35;transform:scale(1.4);}
}

/* Clean Seamless Ad Placement Slots */
.ad-slot{
  position:relative;
  margin:16px auto;
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:0 !important;
  min-height:unset !important;
  max-width:100%;
}
.ad-slot:hover{border:none !important;box-shadow:none !important;}
.ad-slot-tag{display:none !important;}
.ad-slot-content{
  width:auto;
  max-width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:unset !important;
  padding:0 !important;
  margin:0 auto;
}
.ad-slot-content iframe{
  display:block !important;
  margin:0 auto !important;
  border:none !important;
  max-width:100% !important;
}
.ad-slot.top-leaderboard{margin:14px auto;}
.ad-slot.sidebar-ad{margin:0 0 20px 0;width:100%;}
.ad-slot.infeed-banner{margin:20px auto;}

/* Sports Main Category Nav Bar (Matching Pill Design - All 9 Fully Visible) */
.category-nav-section{
  padding:12px 0 12px;
}
.category-pill-list{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:8px 10px;
  list-style:none;
  padding:0;
  margin:0 auto;
  max-width:100%;
}
.category-pill-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:rgba(28,30,29,0.9);
  border:1px solid rgba(255,255,255,0.1);
  color:#dfeaf7;
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
  letter-spacing:0.03em;
  text-transform:uppercase;
  transition:all .22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space:nowrap;
  box-shadow:0 4px 12px rgba(0,0,0,0.25);
}
.category-pill-link:hover{
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.3);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,0.35);
}
.category-pill-link.active{
  background:linear-gradient(135deg, #ff9900, #ff7700);
  border-color:#ffaa00;
  color:#000000;
  box-shadow:0 0 18px rgba(255, 140, 0, 0.45);
  font-weight:800;
}
.category-pill-dot{
  width:7px;
  height:7px;
  background-color:#ff9900;
  border-radius:50%;
  display:inline-block;
  margin-left:2px;
}
.category-pill-link.active .category-pill-dot{
  background-color:#000000;
}
body.light .category-pill-link{
  background:#ffffff;
  border-color:rgba(148,163,184,0.35);
  color:#334155;
  box-shadow:0 4px 12px rgba(15,23,42,0.05);
}
body.light .category-pill-link:hover{
  background:#f1f5f9;
  color:#0f172a;
}
body.light .category-pill-link.active{
  background:linear-gradient(135deg, #ff9900, #ff7700);
  color:#000;
  border-color:#ff9900;
}

/* Live Scores Page Specific Styles */
.live-score-hero{padding:32px 0 20px;}
.live-hero-card{
  background:linear-gradient(135deg, rgba(36,39,37,0.95), rgba(28,30,29,0.95));
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  padding:28px 32px;
  box-shadow:0 16px 40px rgba(0,0,0,0.45);
  display:flex;
  flex-direction:column;
  gap:18px;
}
.live-hero-top{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;}
.live-hero-title-wrap{display:flex;flex-direction:column;gap:6px;}
.live-hero-title-wrap h1{margin:0;font-size:clamp(1.7rem, 2.5vw, 2.3rem);color:#fff;display:flex;align-items:center;gap:10px;}
.live-hero-title-wrap p{margin:0;color:var(--muted);font-size:0.95rem;max-width:650px;}
.live-refresh-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(0,255,135,0.08);
  border:1px solid rgba(0,255,135,0.25);
  color:#9bf7c1;
  padding:7px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
}
.refresh-btn{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
  border-radius:8px;
  padding:6px 12px;
  font-size:12px;
  font-weight:600;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:all .2s ease;
}
.refresh-btn:hover{background:rgba(0,255,135,0.15);border-color:var(--accent);color:var(--accent)}

/* Sports Category Nav Tabs */
.sports-tabs-wrapper{
  overflow-x:auto;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  padding:6px 0;
}
.sports-tabs-wrapper::-webkit-scrollbar{display:none;}
.sports-tabs{
  display:flex;
  gap:10px;
  min-width:max-content;
  list-style:none;
  padding:0;
  margin:0;
}
.sport-tab-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  color:#dfeaf7;
  padding:10px 18px;
  border-radius:12px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:all .2s ease;
  white-space:nowrap;
}
.sport-tab-btn:hover{
  background:rgba(0,255,135,0.08);
  border-color:rgba(0,255,135,0.3);
  color:#fff;
  transform:translateY(-1px);
}
.sport-tab-btn.active{
  background:linear-gradient(135deg, rgba(0,255,135,0.18), rgba(16,185,129,0.28));
  border-color:var(--accent);
  color:#00ff87;
  box-shadow:0 0 16px rgba(0,255,135,0.22);
}
.tab-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.1);
  padding:2px 7px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
}
.sport-tab-btn.active .tab-badge{background:rgba(0,255,135,0.25);color:#fff;}

/* Match Filter Toolbar */
.match-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  background:rgba(28,30,29,0.7);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:14px;
  padding:12px 18px;
  margin:18px 0 24px;
}
.filter-pills{display:flex;gap:8px;flex-wrap:wrap;}
.filter-pill{
  background:transparent;
  border:1px solid rgba(255,255,255,0.1);
  color:var(--muted);
  padding:6px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:all .2s ease;
}
.filter-pill:hover{border-color:rgba(255,255,255,0.3);color:#fff;}
.filter-pill.active{
  background:rgba(255,255,255,0.12);
  border-color:#fff;
  color:#fff;
}
.filter-pill.active.live-pill{
  background:rgba(239,68,68,0.2);
  border-color:#ef4444;
  color:#fca5a5;
}
.search-match-box{
  position:relative;
  min-width:240px;
  flex-grow:1;
  max-width:320px;
}
.search-match-box input{
  width:100%;
  padding:8px 14px 8px 34px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
  color:#fff;
  font-size:13px;
}
.search-match-box input:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 10px rgba(0,255,135,0.25);
}
.search-match-box::before{
  content:"🔍";
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  font-size:12px;
  opacity:0.6;
}

/* Layout Grid for Live Scores: Main + Sidebar */
.live-layout-grid{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:26px;
  align-items:start;
  margin-bottom:40px;
}
@media (max-width:980px){
  .live-layout-grid{grid-template-columns:1fr;}
}

/* League / Match Section */
.league-group{
  background:rgba(36,39,37,0.7);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:16px;
  overflow:hidden;
  margin-bottom:20px;
  box-shadow:0 6px 20px rgba(0,0,0,0.3);
}
.league-header{
  background:linear-gradient(90deg, rgba(255,255,255,0.05), transparent);
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.league-info{display:flex;align-items:center;gap:10px;font-weight:700;font-size:14px;color:#fff;}
.league-flag{font-size:16px;}
.league-country{color:var(--muted);font-size:12px;font-weight:500;}

/* Match Cards */
.match-card-item{
  display:grid;
  grid-template-columns:90px 1fr 100px;
  align-items:center;
  padding:14px 18px;
  border-bottom:1px solid rgba(255,255,255,0.04);
  transition:background .18s ease;
  text-decoration:none;
  color:inherit;
}
.match-card-item:last-child{border-bottom:none;}
.match-card-item:hover{background:rgba(255,255,255,0.03);}

.match-status-col{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:3px;
}
.match-badge{
  font-size:11px;
  font-weight:700;
  padding:3px 8px;
  border-radius:6px;
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.match-badge.live{
  background:rgba(239,68,68,0.18);
  border:1px solid rgba(239,68,68,0.4);
  color:#f87171;
}
.match-badge.ft{
  background:rgba(255,255,255,0.07);
  color:var(--muted);
}
.match-badge.upcoming{
  background:rgba(0,255,135,0.08);
  border:1px solid rgba(0,255,135,0.25);
  color:#9bf7c1;
}
.match-minute{font-size:11px;color:var(--muted);font-weight:600;}

.match-teams-col{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:0 12px;
}
.team-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.team-meta{
  display:flex;
  align-items:center;
  gap:10px;
}
.team-logo{
  width:20px;
  height:20px;
  object-fit:contain;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
}
.team-name{
  font-size:14px;
  font-weight:600;
  color:#f1f5f9;
}
.team-row.winner .team-name{color:#fff;font-weight:700;}
.team-score{
  font-size:15px;
  font-weight:700;
  color:#94a3b8;
  min-width:20px;
  text-align:right;
}
.team-row.winner .team-score{color:var(--accent);}

.match-action-col{
  display:flex;
  justify-content:flex-end;
}
.match-watch-btn{
  background:linear-gradient(135deg, rgba(0,255,135,0.15), rgba(16,185,129,0.25));
  border:1px solid rgba(0,255,135,0.3);
  color:#9bf7c1;
  padding:6px 12px;
  border-radius:8px;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:5px;
  transition:all .2s ease;
}
.match-watch-btn:hover{
  background:linear-gradient(135deg, var(--accent), var(--accent-strong));
  color:#000;
  box-shadow:0 0 14px rgba(0,255,135,0.4);
}

/* Sidebar Widgets */
.sidebar-widget{
  background:rgba(36,39,37,0.7);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:16px;
  padding:20px;
  margin-bottom:24px;
  box-shadow:0 6px 20px rgba(0,0,0,0.3);
}
.widget-title{
  font-size:16px;
  font-weight:700;
  color:#fff;
  margin:0 0 14px 0;
  display:flex;
  align-items:center;
  gap:8px;
}
.quick-channel-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.quick-channel-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 14px;
  border-radius:10px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  color:#e2e8f0;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  transition:all .2s ease;
}
.quick-channel-item:hover{
  background:rgba(0,255,135,0.08);
  border-color:rgba(0,255,135,0.3);
  color:var(--accent);
  transform:translateX(3px);
}

/* Real-Time SofaScore / ScoreAxis Embed Containers */
.live-embed-card{
  background:rgba(36,39,37,0.75);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  overflow:hidden;
  margin-bottom:24px;
  box-shadow:0 6px 24px rgba(0,0,0,0.35);
}
.live-embed-card iframe{
  width:100%;
  border:none;
  min-height:550px;
  display:block;
}

/* Light Theme Overrides for Live Scores */
body.light .live-scores-btn{
  background:linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.25));
  border-color:rgba(239, 68, 68, 0.45);
  color:#991b1b;
}
body.light .live-hero-card,
body.light .league-group,
body.light .sidebar-widget,
body.light .live-embed-card{
  background:#ffffff;
  border-color:rgba(148,163,184,0.22);
  box-shadow:0 12px 30px rgba(15,23,42,0.07);
}
body.light .live-hero-title-wrap h1,
body.light .league-info,
body.light .team-name,
body.light .widget-title{
  color:#0f172a;
}
body.light .match-toolbar{
  background:#f8fafc;
  border-color:rgba(148,163,184,0.2);
}
body.light .sport-tab-btn{
  background:#f1f5f9;
  border-color:rgba(148,163,184,0.25);
  color:#334155;
}
body.light .sport-tab-btn.active{
  background:rgba(16,185,129,0.12);
  border-color:#10b981;
  color:#0f766e;
}
body.light .search-match-box input{
  background:#ffffff;
  border-color:rgba(148,163,184,0.3);
  color:#0f172a;
}
body.light .match-card-item{
  border-bottom-color:rgba(226,232,240,0.8);
}
body.light .match-card-item:hover{
  background:#f8fafc;
}
body.light .quick-channel-item{
  background:#f8fafc;
  border-color:rgba(226,232,240,0.9);
  color:#1e293b;
}

@media (max-width:720px){
  .match-card-item{grid-template-columns:70px 1fr auto;padding:12px 10px;}
  .live-hero-card{padding:20px 16px;}
  .team-name{font-size:13px;}
  .match-watch-btn{padding:5px 8px;font-size:11px;}
  .live-scores-btn span:last-child{font-size:13px;}
}


