/* T20Sports Fantasy - Sports Authority Dark Theme */

:root {
  --bg: #0a0e1a;
  --surface: #131a2e;
  --surface-2: #1a2238;
  --elev: #222b44;
  --primary: #00d4ff;
  --primary-2: #00a8cc;
  --accent: #ff3366;
  --accent-2: #cc1f4d;
  --text: #e8eef5;
  --text-muted: #8b9bb0;
  --border: #2a3550;
  --success: #00e676;
  --warn: #ffb84d;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-cyan: 0 0 24px rgba(0, 212, 255, 0.3);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Russo One', sans-serif;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h1 { font-size: clamp(28px, 5vw, 48px); margin-bottom: 20px; }
h2 { font-size: clamp(22px, 3.5vw, 32px); margin-bottom: 16px; }
h3 { font-size: clamp(18px, 2.5vw, 24px); margin-bottom: 12px; }
h4 { font-size: 18px; margin-bottom: 8px; }

a { color: var(--primary); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--accent); }

p { margin-bottom: 14px; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* PROMO BAR */
.promo-bar {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.promo-bar a { color: white; text-decoration: underline; }

/* TOP HEADER */
.top-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 13px;
}
.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-header-links { display: flex; gap: 18px; flex-wrap: wrap; }
.top-header-links a { color: var(--text-muted); font-weight: 500; }
.top-header-links a:hover { color: var(--primary); }
.top-header-cta { display: flex; gap: 10px; align-items: center; }
.lang-switch { color: var(--text-muted); font-size: 12px; }

/* MAIN HEADER */
.main-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.logo-mark {
  background: var(--accent);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Russo One', sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
}
.logo-text { color: var(--text); }
.logo-text span { color: var(--primary); }
.logo-tagline {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav { display: flex; gap: 6px; align-items: center; }
.main-nav a {
  color: var(--text);
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-family: 'Russo One', sans-serif;
  letter-spacing: 0.02em;
}
.main-nav a:hover {
  background: var(--surface);
  color: var(--primary);
}
.main-nav .nav-highlight {
  color: var(--accent);
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 84%;
  max-width: 360px;
  height: 100vh;
  background: var(--surface);
  z-index: 200;
  padding: 80px 24px 24px;
  transition: right 0.3s ease;
  border-left: 1px solid var(--border);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  padding: 14px 12px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-family: 'Russo One', sans-serif;
  font-weight: 700;
}
.mobile-nav .nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 28px;
  cursor: pointer;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 150;
}
.mobile-overlay.open { display: block; }

/* HERO BANNER */
#hero {
  position: relative;
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a2238 100%);
}
#hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 0;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,0.5) 0%, rgba(10,14,26,0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  width: 100%;
}
.hero-content .container { max-width: 920px; }
.hero-pre {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'Russo One', sans-serif;
}
.hero-content h1 {
  font-size: clamp(32px, 6vw, 56px);
  color: white;
  margin-bottom: 18px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}
.hero-content h1 span { color: var(--primary); }
.hero-sub {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 600px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* CTA PAIR */
.cta-pair { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: 'Russo One', sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--bg);
  box-shadow: var(--shadow-cyan);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.5);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
}
.btn-accent:hover { transform: translateY(-2px); color: white; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--bg);
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
}
.btn-secondary:hover { background: var(--surface-2); color: var(--primary); }

/* SECTIONS */
.section {
  padding: 56px 0;
  position: relative;
}
.section-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.band-elev-1 {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 24px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 36px;
}
.section-title h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 8px;
}
.section-title p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Russo One', sans-serif;
}

/* BREADCRUMB */
.breadcrumb {
  background: var(--surface);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--primary); }

/* CARD GRIDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* DATA CARD */
.data-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s ease;
}
.data-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.data-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Russo One', sans-serif;
}
.data-card h3 { color: var(--text); margin-bottom: 8px; font-size: 18px; }
.data-card p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* STAT TILE */
.stat-tile {
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.stat-tile .stat-num {
  font-family: 'Russo One', sans-serif;
  font-size: 42px;
  color: var(--primary);
  font-weight: 700;
  display: block;
}
.stat-tile .stat-label {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* STEP CARDS */
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.step-num {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-radius: 50%;
  text-align: center;
  font-family: 'Russo One', sans-serif;
  font-weight: 700;
  line-height: 40px;
  font-size: 18px;
  margin-bottom: 14px;
}
.step-card h3 { color: var(--text); margin-bottom: 8px; font-size: 18px; }
.step-card p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* LOOSE CARD */
.loose-card {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 20px 0;
}
.loose-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 18px;
}

/* COMPARISON CARD */
.comparison-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.comparison-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-cyan);
}
.comparison-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}
.comparison-card ul {
  list-style: none;
  margin: 16px 0;
}
.comparison-card ul li {
  padding: 6px 0;
  color: var(--text);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.comparison-card ul li::before {
  content: '✓ ';
  color: var(--success);
  font-weight: 700;
  margin-right: 8px;
}

/* INLINE IMAGE ROW */
.inline-image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.inline-image-row figure {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
}
.inline-image-row img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.inline-image-row figcaption {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
  font-family: 'Russo One', sans-serif;
}

/* SECTION IMAGE */
.section-image {
  width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* FAQ GRID */
.faq-grid {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}
.faq-grid details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-grid details[open] {
  border-color: var(--primary);
}
.faq-grid summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Russo One', sans-serif;
  font-size: 15px;
}
.faq-grid summary::after {
  content: '+';
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.2s;
}
.faq-grid details[open] summary::after {
  transform: rotate(45deg);
}
.faq-grid details .faq-body {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 14px;
}

/* COMPLIANCE NOTICE */
.compliance-notice {
  background: rgba(255, 184, 77, 0.08);
  border: 1px solid var(--warn);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 13px;
  color: var(--text);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.compliance-notice strong { color: var(--warn); display: block; margin-bottom: 4px; }

/* TABLES */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.data-table th, .data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.data-table th {
  background: var(--surface-2);
  color: var(--primary);
  font-family: 'Russo One', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--surface-2); }

/* FOOTER */
.main-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'Russo One', sans-serif;
  letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-disclaimer {
  background: var(--bg);
  padding: 24px 0;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-disclaimer strong { color: var(--warn); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  #hero { min-height: 480px; max-height: 600px; }
  .hero-content h1 { font-size: 32px; }
  .section { padding: 40px 0; }
  .card-grid { gap: 14px; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .top-header-links { display: none; }
  .band-elev-1 { padding: 20px; }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
}
@media (max-width: 480px) {
  .main-nav { display: none; }
  .card-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
}

/* UTILITY */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }
.mb-2 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 24px; }
.flex { display: flex; gap: 16px; flex-wrap: wrap; }
.flex-center { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* HUB NAV */
.hub-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.hub-nav a {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text);
  font-weight: 700;
  font-family: 'Russo One', sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  transition: all 0.2s;
}
.hub-nav a:hover {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* BLOG CARDS */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-body {
  padding: 20px;
}
.blog-card-body h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text);
}
.blog-card-body p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 12px;
}
.blog-card-meta {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 32px;
  margin: 24px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 20px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
}
.timeline-item h4 { color: var(--primary); margin-bottom: 4px; font-size: 14px; }
.timeline-item p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* GLOSSARY LIST */
.glossary-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.glossary-list dt {
  font-family: 'Russo One', sans-serif;
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 700;
}
.glossary-list dd {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0 0 10px;
}



/* === T20Sports unified menu and SEO asset polish v41001 === */
.main-header {
  z-index: 1200;
}
.main-header .container {
  gap: 18px;
}
.logo {
  min-width: 210px;
  text-decoration: none;
}
.logo-text,
.logo-tagline {
  white-space: nowrap;
}
.main-nav {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}
.main-nav a {
  white-space: nowrap;
  text-decoration: none;
}
.main-nav a.is-active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: inset 0 -2px 0 var(--primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.header-login,
.header-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: 'Russo One', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.header-login {
  color: var(--text);
  border: 1px solid var(--border);
}
.header-signup {
  color: var(--bg);
  background: var(--primary);
  box-shadow: var(--shadow-cyan);
}
.hamburger {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: block;
  visibility: hidden;
  right: -100%;
  z-index: 1300;
  background: linear-gradient(180deg, var(--surface), var(--bg));
  box-shadow: -24px 0 60px rgba(0,0,0,0.45);
}
.mobile-nav.open {
  visibility: visible;
  right: 0;
}
.mobile-nav a {
  text-decoration: none;
}
.mobile-nav a.is-active {
  color: var(--primary);
}
.mobile-nav .drawer-cta {
  margin-top: 14px;
  text-align: center;
  color: var(--bg);
  background: var(--primary);
  border: 0;
  border-radius: var(--radius-sm);
}
.mobile-overlay {
  z-index: 1250;
}
body.nav-open {
  overflow: hidden;
}
@media (max-width: 1320px) and (min-width: 1025px) {
  .logo { min-width: 168px; }
  .logo-tagline { display: none; }
  .main-nav { gap: 3px; }
  .main-nav a { padding: 8px 9px; font-size: 12px; }
  .header-login { display: none; }
}
@media (max-width: 1500px) and (min-width: 1025px) {
  .logo { min-width: 260px; }
  .logo-tagline { display: none; }
  .main-nav { gap: 2px; }
  .main-nav a { padding: 8px 8px; font-size: 12px; }
  .header-login { display: none; }
  .header-signup { min-height: 38px; padding: 8px 13px; }
}
@media (max-width: 1024px) {
  .main-header .container { padding: 12px 20px; }
  .main-nav { display: none !important; }
  .header-login,
  .header-signup { display: none; }
  .hamburger { display: flex !important; }
}
@media (min-width: 1025px) {
  .hamburger { display: none !important; }
}
@media (max-width: 480px) {
  .logo { min-width: 0; }
  .logo-text { font-size: 18px; }
  .logo-tagline { display: none; }
  .mobile-nav { width: 88%; }
}








/* === T20Sports clean rebuilt menu v41002 === */
.promo-bar,
.top-header,
.main-header {
  display: none !important;
}
.clean-header {
  position: sticky;
  top: 0;
  z-index: 1400;
  background: rgba(10, 14, 26, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.clean-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.clean-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  flex: 0 0 auto;
}
.clean-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #b0003a;
  color: white;
  font-family: 'Russo One', sans-serif;
  font-size: 17px;
}
.clean-name {
  color: var(--text);
  font-family: 'Russo One', sans-serif;
  font-size: 20px;
  white-space: nowrap;
}
.clean-name span {
  color: var(--primary);
}
.logo-mark {
  background: #b0003a;
  color: #fff;
}
p a,
.text-muted a,
.compliance-notice a,
.faq-body a {
  color: #48e7ff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.footer-bottom a,
.footer-disclaimer a {
  color: #48e7ff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.loose-card h3,
.timeline-item h3,
.footer-col h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.clean-links {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.clean-links a {
  color: var(--text);
  padding: 9px 12px;
  border-radius: 8px;
  font-family: 'Russo One', sans-serif;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.clean-links a:hover,
.clean-links a.is-active {
  color: var(--primary);
  background: var(--surface);
}
.clean-links .nav-bonus {
  color: var(--accent);
}
.clean-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.clean-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 9px;
  background: var(--primary);
  color: var(--bg);
  font-family: 'Russo One', sans-serif;
  font-size: 13px;
  text-decoration: none;
  box-shadow: var(--shadow-cyan);
}
.clean-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}
.clean-menu-btn span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transition: transform .2s ease, opacity .2s ease;
}
.clean-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.clean-menu-btn.open span:nth-child(2) { opacity: 0; }
.clean-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1390;
  background: rgba(0,0,0,0.68);
}
.mobile-overlay.open {
  display: block;
}
.clean-mobile-nav {
  display: block;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(86vw, 360px);
  height: 100vh;
  z-index: 1450;
  padding: 76px 22px 26px;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border-left: 1px solid var(--border);
  box-shadow: -24px 0 60px rgba(0,0,0,.45);
  transition: right .24s ease, visibility .24s ease;
}
.clean-mobile-nav.open {
  visibility: visible;
  right: 0;
}
.clean-mobile-nav a {
  display: block;
  padding: 14px 10px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-family: 'Russo One', sans-serif;
  text-decoration: none;
}
.clean-mobile-nav a.is-active {
  color: var(--primary);
}
.clean-mobile-nav .drawer-cta {
  margin-top: 14px;
  text-align: center;
  color: var(--bg);
  background: var(--primary);
  border: 0;
  border-radius: 9px;
}
.clean-mobile-nav .nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: transparent;
  color: var(--accent);
  font-size: 22px;
  cursor: pointer;
}
body.nav-open {
  overflow: hidden;
}
body > .cta-pair {
  width: min(var(--container), 100%);
  margin: 34px auto;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
}
body > .cta-pair .btn {
  min-width: 164px;
}
@media (max-width: 1180px) {
  .clean-links a { padding: 9px 8px; font-size: 12px; }
  .clean-nav { gap: 16px; }
}
@media (max-width: 980px) {
  .clean-nav { min-height: 68px; }
  .clean-links,
  .clean-cta { display: none; }
  .clean-menu-btn { display: inline-flex; }
}
@media (max-width: 480px) {
  .clean-name { font-size: 17px; }
  .clean-mark { width: 40px; height: 40px; }
  body > .cta-pair {
    margin: 28px auto;
  }
  body > .cta-pair .btn {
    width: calc((100% - 14px) / 2);
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 360px) {
  body > .cta-pair .btn {
    width: 100%;
  }
}
