@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800;900&display=swap');

:root {
  --z-bg: #f8f9fa; /* Light grey body background */
  --z-bg-soft: #ffffff;
  --z-panel: #ffffff;
  --z-line: #e2e8f0;
  --z-text: #1a202c; /* Dark text */
  --z-muted: #64748b; /* Muted grey text */
  --z-lime: #e21a22; /* Zamba Red */
  --z-green: #ff3b30; /* Zamba Bright Red */
  --z-gold: #f59e0b;
  --paper: #f8f9fa;
  --card: #ffffff;
  --text: #1a202c;
  --subtle: #64748b;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--z-bg);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--z-bg);
  background-image: 
    radial-gradient(circle at 80% 10%, rgba(226, 26, 34, 0.02) 0%, transparent 45%),
    radial-gradient(circle at 10% 60%, rgba(226, 26, 34, 0.01) 0%, transparent 45%);
  background-attachment: fixed;
  color: var(--z-text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  transition: all 0.2s ease;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--z-lime);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--z-lime);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

h1, h2, h3, p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  margin: 0 0 20px;
  color: var(--z-text);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--z-text);
}

/* Burger Menu desktop hidden */
.burger-menu,
.menu-toggle-input {
  display: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px max(18px, calc((100vw - 1280px) / 2 + 24px));
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e2e8f0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--z-lime); /* Zamba Red Logo */
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand span,
.brand-mark {
  position: relative;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--z-lime), var(--z-green));
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 0 12px rgba(226, 26, 34, 0.3);
}

.brand span::before,
.brand-mark::before {
  content: "👑";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.site-header nav a,
.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  color: #4b5563; /* grey text */
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  background: rgba(226, 26, 34, 0.06);
  color: var(--z-lime);
}

.header-cta {
  background: var(--z-lime);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(226, 26, 34, 0.25);
}

.header-cta:hover {
  background: var(--z-green);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(226, 26, 34, 0.35);
}

.mobile-cta {
  display: none;
}

/* Breadcrumbs */
.breadcrumb {
  padding: 20px max(18px, calc((100vw - 1280px) / 2 + 24px)) 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--z-muted);
  font-size: 0.88rem;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "/";
  margin: 0 8px;
  opacity: 0.5;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--z-lime);
}

/* Hero Section (Stylized Promo Banner Card) */
.hero {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 40px;
  align-items: center;
  margin: 20px max(18px, calc((100vw - 1280px) / 2 + 24px)) 40px;
  padding: 50px 60px;
  background: linear-gradient(135deg, #0d0d0d 0%, #161616 48%, #960d12 52%, #c8102e 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 59, 48, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero h1 {
  color: #ffffff;
}

.hero-copy {
  position: relative;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin: 0 0 16px;
  padding: 4px 12px;
  border: 1px solid rgba(226, 26, 34, 0.2);
  border-radius: 20px;
  background: rgba(226, 26, 34, 0.06);
  color: var(--z-lime);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lead {
  max-width: 820px;
  margin: 20px 0 0;
  color: #94a3b8;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.button.primary {
  background: var(--z-lime);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(226, 26, 34, 0.25);
}

.button.primary:hover {
  background: var(--z-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 26, 34, 0.4);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.button.full {
  width: 100%;
}

/* Tournament Badge */
.banner-badge {
  display: inline-flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  font-weight: 900;
  font-size: 0.8rem;
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-world {
  background: linear-gradient(90deg, #1d4ed8, #1e40af);
  color: #ffffff;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
}

.badge-tour {
  background: #ff0000;
  color: #ffffff;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
}

/* JUEGA AQUI Green Hero Button */
.hero-actions .button.primary {
  background: #00b33b !important; /* Vibrant green */
  color: #ffffff !important;
  font-weight: 900;
  font-size: 1.15rem;
  font-style: italic;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 14px 38px;
  box-shadow: 0 8px 24px rgba(0, 179, 59, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}

.hero-actions .button.primary:hover {
  background: #00cc44 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 179, 59, 0.6) !important;
}

/* Promo Card Panel */
.signal-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(18, 18, 18, 0.85) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-ribbon {
  background: #ff0000;
  color: #ffffff;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 6px 12px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  margin-top: -12px;
  margin-bottom: -4px;
  position: relative;
  z-index: 2;
  align-self: center;
  width: max-content;
}

.promo-box {
  background: #000000;
  border: 2px solid #e21a22;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.promo-kicker {
  display: block;
  color: #a3a3a3;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.promo-amount {
  display: block;
  color: #ffcc00; /* Gold */
  font-weight: 900;
  font-size: 2.15rem;
  line-height: 1.1;
  margin: 6px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-period {
  display: block;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.promo-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  transition: all 0.2s ease;
  text-align: left;
}

.promo-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(2px);
}

.promo-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.promo-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

.promo-item span {
  display: block;
  color: #a3a3a3;
  font-size: 0.78rem;
  margin-top: 1px;
}

.promo-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  font-size: 0.68rem;
  color: #737373;
}

/* Category Tag Rail (Light mode style) */
.category-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px max(18px, calc((100vw - 1280px) / 2 + 24px));
  background: #ffffff;
  border-bottom: 1px solid var(--z-line);
}

.category-rail a {
  padding: 8px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #f1f5f9;
  color: #334155;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.category-rail a:hover {
  border-color: var(--z-lime);
  background: rgba(226, 26, 34, 0.08);
  color: var(--z-lime);
  transform: translateY(-1px);
}

/* Main Layout Grid */
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  padding: 60px max(18px, calc((100vw - 1280px) / 2 + 24px));
  color: var(--z-text);
}

.main-content {
  max-width: 980px;
}

.main-content > p {
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.65;
}

.main-content > h2 {
  margin-top: 48px;
  border-bottom: 1px solid var(--z-line);
  padding-bottom: 10px;
}

.answer-box,
.prediction,
.side-box {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.answer-box {
  margin: 36px 0;
  border: 1px solid rgba(226, 26, 34, 0.2);
  border-left: 4px solid var(--z-lime);
  background: rgba(226, 26, 34, 0.02);
}

.answer-box h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--z-lime);
  border: none;
  padding: 0;
}

.answer-box ul {
  margin-bottom: 0;
}

/* Market List Cards (Light Mode) */
.market-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.market-list div {
  padding: 22px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.25s ease;
}

.market-list div:hover {
  border-color: rgba(226, 26, 34, 0.25);
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.market-list span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(226, 26, 34, 0.08);
  border: 1px solid var(--z-lime);
  color: var(--z-lime);
  font-weight: 900;
  box-shadow: 0 0 10px rgba(226, 26, 34, 0.15);
}

/* Data Tables */
.table-wrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0 32px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

th, td {
  padding: 16px;
  border-bottom: 1px solid #edf2f7;
  text-align: left;
}

th {
  background: #f1f5f9;
  color: #1e293b;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

td {
  color: #334155;
  font-size: 0.95rem;
}

tr:last-child td {
  border-bottom: none;
}

/* Editorial Prediction Box */
.prediction {
  margin: 28px 0;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-left: 4px solid var(--z-gold);
  background: #fffdf5;
}

.prediction p strong {
  color: var(--z-gold);
}

/* Strategies Steps */
.steps {
  padding: 24px 24px 24px 46px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
}

.steps li {
  margin: 10px 0;
}

/* Inline Match Strip & Links */
.match-strip,
.link-hub div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.match-strip a,
.link-hub a,
.side-box a {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #334155;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.match-strip a:hover,
.link-hub a:hover,
.side-box a:hover {
  border-color: var(--z-lime);
  background: rgba(226, 26, 34, 0.06);
  color: var(--z-lime);
  transform: translateY(-2px);
}

/* Sidebar styling */
.sidebar {
  position: sticky;
  top: 86px;
  display: flex;
  height: max-content;
  flex-direction: column;
  gap: 20px;
}

.side-box h2 {
  font-size: 1.15rem;
  border-bottom: 1px solid var(--z-line);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.side-box a {
  display: flex;
  margin-top: 10px;
}

/* Conversion/Accent Sidebar Widget (Vibrant Zamba Red Banner) */
.side-box.accent {
  border-color: transparent;
  background: linear-gradient(135deg, #e21a22 0%, #b31016 100%);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(226, 26, 34, 0.2);
}

.side-box.accent h2 {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
}

.side-box.accent p {
  color: #fca5a5;
  font-size: 0.94rem;
  line-height: 1.45;
}

.side-box.accent .disclaimer {
  display: block;
  font-size: 0.72rem;
  line-height: 1.35;
  margin: 12px 0 16px;
  color: #fecaca;
  opacity: 0.95;
}

.side-box.accent .button.primary.full {
  background: #ffffff;
  color: #e21a22;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.side-box.accent .button.primary.full:hover {
  background: #f3f4f6;
  color: #b31016;
  transform: translateY(-2px);
}

.methodology {
  border-top: 4px solid var(--z-lime);
  background: rgba(226, 26, 34, 0.01);
}

/* FAQ accordion style */
.faq,
.link-hub {
  padding: 60px max(18px, calc((100vw - 1280px) / 2 + 24px));
  border-top: 1px solid var(--z-line);
  background: #ffffff;
}

.faq details {
  max-width: 980px;
  margin: 12px 0;
  padding: 18px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  transition: all 0.25s ease;
}

.faq details[open] {
  border-color: rgba(226, 26, 34, 0.2);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--z-text);
  outline: none;
}

.faq summary:hover {
  color: var(--z-lime);
}

.faq details[open] summary {
  color: var(--z-lime);
  margin-bottom: 12px;
}

/* Footer styling */
footer {
  padding: 44px max(18px, calc((100vw - 1280px) / 2 + 24px));
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  font-size: 0.88rem;
  line-height: 1.7;
}

footer p {
  margin: 10px 0;
}

footer a {
  color: var(--z-lime);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Redirection pages */
.redirect {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: #f8f9fa;
}

.redirect-box {
  max-width: 440px;
  margin: 16px;
  padding: 38px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  color: #1a202c;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.redirect-box h1 {
  font-size: 2rem;
  margin: 16px 0;
  letter-spacing: -0.01em;
}

/* Responsive Overrides */
@media (max-width: 980px) {
  .hero,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
  }
  
  .eyebrow {
    justify-content: center;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 96px;
    background-image: 
      radial-gradient(circle at 50% 5%, rgba(226, 26, 34, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 50% 85%, rgba(226, 26, 34, 0.01) 0%, transparent 50%);
  }

  .site-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 1.1rem;
    margin-bottom: 2px;
    order: 2;
    margin-right: auto;
  }

  .brand span {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  /* Burger Button Style */
  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 120;
    order: 1;
    margin-right: 4px;
  }
  
  .burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #374151; /* Dark grey spans */
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Checkbox logic for opening menu */
  .menu-toggle-input:checked ~ nav {
    right: 0;
  }

  /* Checkbox logic for animating burger spans */
  .menu-toggle-input:checked ~ .burger-menu span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--z-lime);
  }
  .menu-toggle-input:checked ~ .burger-menu span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle-input:checked ~ .burger-menu span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--z-lime);
  }

  /* Slideout Nav Drawer */
  .site-header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid var(--z-line);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 24px 40px;
    gap: 12px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 110;
    overflow-y: auto;
  }

  .site-header nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    width: 100%;
    box-sizing: border-box;
    color: #334155;
  }

  .site-header nav a:hover,
  .site-header nav a[aria-current="page"] {
    background: rgba(226, 26, 34, 0.06);
    color: var(--z-lime);
    border-color: rgba(226, 26, 34, 0.2);
  }

  .header-cta {
    display: inline-flex !important;
    order: 3;
    min-height: 36px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 6px;
    background: var(--z-lime);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(226, 26, 34, 0.2);
  }

  .mobile-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 100;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--z-lime) 0%, var(--z-green) 100%);
    color: #ffffff;
    font-weight: 900;
    font-size: 1.02rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(226, 26, 34, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
  }

  .mobile-cta:active {
    transform: scale(0.97);
    box-shadow: 0 4px 12px rgba(226, 26, 34, 0.25);
  }

  .breadcrumb {
    padding: 16px 16px 0;
  }

  .breadcrumb ol {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }
  
  .breadcrumb ol::-webkit-scrollbar {
    display: none;
  }

  .breadcrumb li {
    min-width: 0;
    flex-shrink: 0;
  }

  .breadcrumb li:last-child a {
    display: inline-block;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
  }

  .hero {
    gap: 28px;
    margin: 10px 8px 24px;
    padding: 30px 16px;
    border-radius: 16px;
    text-align: center;
  }

  h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.5rem);
    line-height: 1.1;
  }

  .lead {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 24px;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .signal-panel,
  .answer-box,
  .prediction,
  .side-box {
    padding: 20px 16px;
  }

  .signal-panel ul {
    display: none;
  }

  .odds-board p {
    font-size: 0.9rem;
  }

  .odds-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
  }

  .odds-row span {
    flex: 1 1 100%;
    margin-bottom: 4px;
    text-align: left;
    font-size: 0.9rem;
  }

  .odds-row b {
    flex: 1;
    min-width: 60px;
    padding: 6px;
    font-size: 0.84rem;
  }

  .category-rail {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 12px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .category-rail::-webkit-scrollbar {
    display: none;
  }

  .category-rail a {
    flex: 0 0 auto;
    font-size: 0.84rem;
    padding: 6px 14px;
  }

  .content-grid {
    gap: 30px;
    padding: 36px 16px;
  }

  .main-content > p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .main-content > h2 {
    margin-top: 36px;
  }

  .market-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .market-list div {
    padding: 18px;
  }

  .table-wrap {
    max-width: calc(100vw - 32px);
    margin-right: -2px;
    margin-left: -2px;
    scrollbar-width: thin;
  }

  table {
    min-width: 580px;
  }

  th, td {
    padding: 12px 10px;
    font-size: 0.88rem;
  }

  .match-strip a,
  .link-hub a,
  .side-box a {
    width: 100%;
    justify-content: flex-start;
  }

  .steps {
    padding: 18px 18px 18px 36px;
    font-size: 0.94rem;
  }

  .faq,
  .link-hub {
    padding: 40px 16px;
  }

  .faq details {
    padding: 14px 18px;
  }

  .link-hub div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  footer {
    padding: 36px 16px 100px;
    font-size: 0.84rem;
  }
}

@media (max-width: 420px) {
  .hero,
  .content-grid,
  .faq,
  .link-hub,
  footer,
  .breadcrumb {
    padding-right: 12px;
    padding-left: 12px;
  }

  .signal-panel,
  .side-box,
  .answer-box,
  .prediction {
    padding: 14px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .table-wrap {
    max-width: calc(100vw - 24px);
  }
}

body.menu-active {
  overflow: hidden;
}

/* Slots Grid Component */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.slot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.slot-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #f1f5f9;
}

.slot-card h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}

.slot-card .provider {
  font-size: 0.78rem;
  color: var(--z-muted);
  margin-bottom: 12px;
  display: block;
}

.slot-card .slot-play-btn {
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--z-lime);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.slot-card:hover {
  border-color: rgba(226, 26, 34, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(226, 26, 34, 0.08);
}

.slot-card .slot-play-btn:hover {
  background: var(--z-green);
}
