/* Reddy Anna Sports – Black & Gold Dark Theme */

:root {
  --bg: #0b0f12;
  --bg-alt: #10151b;
  --elev: #121821;
  --text: #e6e6e6;
  --muted: #b3b3b3;
  --gold: #d4af37; /* primary gold */
  --gold-2: #b8922a; /* hover/deeper shade */
  --accent: #ffd66e; /* lighter accent */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(212, 175, 55, 0.12), transparent 60%),
    radial-gradient(800px 400px at 110% 0%, rgba(184, 146, 42, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg-alt));
}

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

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.2) blur(10px);
  background: rgba(16, 21, 27, 0.7);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.logo { font-weight: 800; letter-spacing: 0.5px; text-decoration: none; color: var(--text); font-size: 1.25rem; }
.logo img { height: 36px; width: auto; display: block; }
.logo span { color: var(--gold); }
.nav-list { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.nav-list a { color: var(--gold); text-decoration: none; padding: 10px 12px; border-radius: var(--radius-sm); }
.nav-list a:hover { color: var(--gold); background: rgba(212, 175, 55, 0.08); }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 64px;
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(255, 214, 110, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(212, 175, 55, 0.07), rgba(0, 0, 0, 0));
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.hero-inner { text-align: center; }
.hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); margin: 0 0 8px; }
.subtitle { color: var(--muted); margin: 0 0 24px; }

.cta { display: inline-flex; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 18px; border-radius: 999px; text-decoration: none;
  font-weight: 600; letter-spacing: 0.2px; transition: all 220ms ease;
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.btn-primary { color: #0b0f12; background: var(--gold); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn-outline { color: var(--gold); background: rgba(212, 175, 55, 0.06); }
.btn-outline:hover { background: rgba(212, 175, 55, 0.12); }

/* Sections */
.section { padding: 52px 0; }
.section-title { font-size: 1.8rem; margin: 0 0 18px; position: relative; }
.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 3px;
}
.section-subtitle { color: var(--muted); margin: -8px 0 18px; }

/* Headings: use gold across the site */
h1, h2, h3, h4, h5, .section-title { color: var(--gold); }
/* Enhance h3 underlines within panels for separation */
.panel h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* Alternate section backgrounds to add visual rhythm */
.section:nth-of-type(odd) {
  background:
    radial-gradient(800px 380px at 15% 0%, rgba(212, 175, 55, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(212, 175, 55, 0.03), rgba(0,0,0,0));
}
.section:nth-of-type(even) {
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(184, 146, 42, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(184, 146, 42, 0.03), rgba(0,0,0,0));
}

/* Panel: elevate container blocks */
.panel {
  background: linear-gradient(180deg, rgba(16, 21, 27, 0.9), rgba(11, 15, 18, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow);
}

/* Headings inside panels */
.panel h3 { color: var(--accent); font-weight: 700; }
.panel h4 { color: var(--gold-2); }


/* Anchors: default link color is gold */
a { color: var(--gold); }

.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(180deg, rgba(16, 21, 27, 0.9), rgba(11, 15, 18, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow);
}
.card:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.45); border-color: rgba(212, 175, 55, 0.35); }
.card h3 { margin: 0 0 8px; color: var(--accent); font-weight: 700; }
.card p { margin: 0; color: var(--muted); }

/* Step number badge inside cards */
.card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #0b0f12;
  font-weight: 800;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
  margin-bottom: 10px;
}

/* Badges & Chips */
.badge { display: inline-block; padding: 2px 8px; border-radius: 999px; border: 1px solid rgba(212, 175, 55, 0.35); color: var(--gold); background: rgba(212, 175, 55, 0.06); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; height: 28px; padding: 0 10px; border-radius: 999px; background: rgba(212, 175, 55, 0.08); color: var(--gold); border: 1px solid rgba(212, 175, 55, 0.25); }

/* Steps */
.steps { margin: 10px 0 0; padding: 0; list-style: none; color: var(--muted); }
.steps li { margin: 8px 0; padding-left: 22px; position: relative; }
.steps li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.22);
}

/* Subheading separators for better scanability */
.section h3 { margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(212, 175, 55, 0.15); }
.section h4 { margin-top: 14px; color: var(--accent); }

/* Content width tuning for readability */
.section .container > p,
.section .container > ul,
.section .container > ol,
.section .container > div.answer,
.accordion { max-width: 900px; }
.section .container > p { color: var(--muted); }

/* Calculator */
.calc { margin-top: 18px; }
.form-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; align-items: end; }
@media (max-width: 900px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-row label { display: flex; flex-direction: column; gap: 6px; color: var(--muted); }
.form-row input, .form-row select { height: 44px; border-radius: 10px; border: 1px solid rgba(212, 175, 55, 0.35); background: rgba(16, 21, 27, 0.75); color: var(--text); padding: 0 12px; }
.form-row input:focus, .form-row select:focus { outline: 2px solid rgba(212, 175, 55, 0.35); }
.output { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.output div { background: rgba(16, 21, 27, 0.6); border: 1px solid rgba(212, 175, 55, 0.22); border-radius: var(--radius-sm); padding: 10px; }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.accordion-item { border: 1px solid rgba(212, 175, 55, 0.22); border-radius: var(--radius); overflow: hidden; background: rgba(16, 21, 27, 0.85); }
.accordion-header { width: 100%; text-align: left; padding: 14px 16px; color: var(--text); background: transparent; border: 0; border-bottom: 1px solid rgba(212, 175, 55, 0.2); cursor: pointer; }
.accordion-header:hover { background: rgba(212, 175, 55, 0.08); color: var(--gold); }
.accordion-item.open .accordion-header { color: var(--gold); }
.accordion-body { display: none; padding: 12px 16px; color: var(--muted); }
.accordion-item.open .accordion-body { display: block; }

/* Details/Summary Accordion (FAQs) */
.accordion details {
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(16, 21, 27, 0.85);
}
.accordion details + details { margin-top: 8px; }
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { background: rgba(212, 175, 55, 0.08); color: var(--gold); }
.accordion details[open] summary { color: var(--gold); border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
.accordion .chevron {
  width: 18px; height: 18px; flex: 0 0 18px;
  border: 2px solid var(--gold);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}
.accordion details[open] summary .chevron { transform: rotate(225deg); }
.accordion .answer { padding: 12px 16px; color: var(--muted); }
.accordion .answer p { margin: 0; }

/* Callouts: optional utility if needed later */
.callout { border: 1px dashed rgba(212, 175, 55, 0.35); border-radius: var(--radius-sm); padding: 12px 14px; background: rgba(212, 175, 55, 0.05); }
.callout strong { color: var(--gold); }

/* Contact Form */
.contact-form { margin-top: 12px; }
.contact-form .form-row { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .contact-form .form-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .contact-form .form-row { grid-template-columns: 1fr; } }
.contact-form textarea { border-radius: 10px; border: 1px solid rgba(212, 175, 55, 0.35); background: rgba(16, 21, 27, 0.75); color: var(--text); padding: 10px 12px; }
.contact-form button { margin-top: 10px; }

/* Utility spacing tweaks */
#getid .cta { margin-top: 12px; }

/* CTA vertical banner layout */
.cta-rail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}
.v-banner {
  height: 360px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.16), rgba(16, 21, 27, 0.92));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.v-banner img { height: 82%; width: auto; filter: drop-shadow(0 10px 18px rgba(0,0,0,0.45)); }
.v-banner--hero { background: linear-gradient(180deg, rgba(184, 146, 42, 0.18), rgba(16, 21, 27, 0.92)); }
.v-banner--accent { background: linear-gradient(180deg, rgba(212, 175, 55, 0.22), rgba(16, 21, 27, 0.9)); }
.cta-stack .cta { margin-top: 12px; }
.btn.btn-lg { height: 50px; padding: 0 22px; font-size: 1rem; }
@media (max-width: 900px) {
  .cta-rail { grid-template-columns: 1fr; }
  .v-banner { height: 280px; order: -1; }
}
#getid .cta { margin-top: 12px; }

/* Matches */
.matches .match { padding: 16px; }
.match-header { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.95rem; margin-bottom: 6px; }
.teams { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1.1rem; }
.vs { color: var(--gold); font-weight: 700; }

/* CTA Block */
.cta-block { border-top: 1px solid rgba(212, 175, 55, 0.22); background: rgba(212, 175, 55, 0.05); }
.subscribe { display: flex; gap: 10px; margin-top: 10px; }
.subscribe input {
  flex: 1; height: 44px; border-radius: 999px; border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(16, 21, 27, 0.75); color: var(--text);
  padding: 0 16px;
}
.subscribe input::placeholder { color: #9aa0a6; }

/* Footer */
.site-footer { padding: 30px 0; border-top: 1px solid rgba(212, 175, 55, 0.22); background: rgba(16, 21, 27, 0.8); }
.site-footer p { margin: 0; color: var(--muted); text-align: center; }
/* Footer layout */
.site-footer .container { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.footer-links { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.footer-section h4 { margin: 0 0 8px; color: var(--text); font-weight: 700; }
.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section li { margin: 6px 0; }
.footer-section a { text-decoration: none; }
.footer-section a:hover { text-decoration: underline; }
@media (max-width: 768px) { .footer-links { grid-template-columns: 1fr; } }

/* Sports cards row */
.sports-grid { display: flex; gap: 16px; margin: 18px 0 24px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.sport-card { position: relative; min-height: 180px; border-radius: var(--radius); overflow: hidden; color: var(--text); display: flex; align-items: center; justify-content: center; text-align: center; padding: 14px; border: 1px solid rgba(212, 175, 55, 0.22); background-size: cover; background-position: center; isolation: isolate; flex: 0 0 240px; scroll-snap-align: start; }
.sport-card::before { content: ""; position: absolute; inset: 0; background:
  linear-gradient(120deg, var(--accent-start, rgba(212, 175, 55, 0.18)) 0%, var(--accent-end, rgba(212, 175, 55, 0.08)) 100%),
  linear-gradient(180deg, rgba(16, 21, 27, 0.10) 0%, rgba(16, 21, 27, 0.70) 100%);
  z-index: 0; pointer-events: none; }
.sport-card h3 { position: relative; z-index: 1; margin: 0; font-size: 1.05rem; letter-spacing: 0.2px; }
.sport-card:hover { transform: translateY(-2px); transition: transform 160ms ease; }

/* Variant backgrounds using lightweight inline SVG images */
.sport-card--cricket {
  background: linear-gradient(135deg, var(--accent-start, rgba(212, 175, 55, 0.18)), var(--accent-end, rgba(212, 175, 55, 0.08)));
  --accent-start: rgba(0, 200, 83, 0.30); /* green */
  --accent-end: rgba(174, 234, 0, 0.25);
}
.sport-card--football {
  background: linear-gradient(135deg, var(--accent-start, rgba(212, 175, 55, 0.18)), var(--accent-end, rgba(212, 175, 55, 0.08)));
  --accent-start: rgba(41, 98, 255, 0.30); /* blue */
  --accent-end: rgba(0, 176, 255, 0.25);
}
.sport-card--tennis {
  background: linear-gradient(135deg, var(--accent-start, rgba(212, 175, 55, 0.18)), var(--accent-end, rgba(212, 175, 55, 0.08)));
  --accent-start: rgba(255, 214, 0, 0.32); /* yellow */
  --accent-end: rgba(255, 171, 0, 0.26);
}
.sport-card--esports {
  background: linear-gradient(135deg, var(--accent-start, rgba(212, 175, 55, 0.18)), var(--accent-end, rgba(212, 175, 55, 0.08)));
  --accent-start: rgba(124, 77, 255, 0.32); /* purple */
  --accent-end: rgba(224, 64, 251, 0.26);
}
.sport-card--virtual {
  background: linear-gradient(135deg, var(--accent-start, rgba(212, 175, 55, 0.18)), var(--accent-end, rgba(212, 175, 55, 0.08)));
  --accent-start: rgba(0, 191, 165, 0.30); /* teal */
  --accent-end: rgba(29, 233, 182, 0.26);
}

@media (max-width: 768px)  { .sport-card { flex-basis: 200px; min-height: 140px; } }
@media (max-width: 480px)  { .sport-card { flex-basis: 85%; } }

/* Small helpers */
#year::before { content: attr(data-year); }
/* Hero split layout */
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 24px; }
.hero-content { text-align: left; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin: 0 0 10px; }
.subtitle { color: var(--muted); margin: 0 0 24px; max-width: 48ch; }
.cta { display: inline-flex; gap: 12px; flex-wrap: wrap; }
.hero-media { display: flex; align-items: center; justify-content: center; position: relative; }
/* No overlay for a clean, frameless hero image */
.hero-media::before { display: none; }
.hero-media img { width: 100%; max-width: 680px; height: auto; display: block; border-radius: 0; border: 0; box-shadow: none; background: transparent; filter: none; object-fit: contain;
  /* Soft edge mask to hide patchy/uneven background areas in the PNG */
  -webkit-mask-image: radial-gradient(140% 110% at 50% 28%, #000 64%, transparent 100%);
          mask-image: radial-gradient(140% 110% at 50% 28%, #000 64%, transparent 100%);
}
/* Ensure SVG hero renders sharp; no mask or fill needed */
.hero-media img[src$=".svg"] {
  background: transparent;
  -webkit-mask-image: none;
          mask-image: none;
}
/* Slightly increase max width for raster hero image */
@media (min-width: 901px) { .hero-media img { max-width: 520px; } }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } .hero-media { order: -1; } .hero-content { text-align: center; } .subtitle { margin: 0 auto 24px; } }
.features .card { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; }
.features .card .icon {
  grid-column: 1; grid-row: 1 / span 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(212, 175, 55, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
.features .card h3 { margin: 0; align-self: center; }
.features .card p { margin-top: 4px; }
/* Dashboard Showcase: device mock + feature list */
.dashboard-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

/* Replace device mock with a horizontal image */
.showcase-image {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  padding: 12px;
}

.showcase-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}

.showcase-image figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: #c9c9c9;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-left-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  border-left-color: #d4af37;
  transform: translateX(2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.feature .badge {
  display: inline-block;
  background: linear-gradient(180deg, #e4c75b, #c69a1f);
  color: #0b0f12;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 6px;
}

.feature h4 {
  margin: 6px 0 4px 0;
}

.feature p {
  margin: 0;
  color: #c9c9c9;
}

@media (max-width: 768px) {
  .dashboard-showcase {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
/* Golden cards styling for Bet Types section */
.gold-cards {
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .gold-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-gold {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.15);
}

.card-gold h4 {
  position: relative;
  padding-bottom: 6px;
}

.card-gold h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #e4c75b, #c69a1f);
  border-radius: 2px;
}

.card-gold p {
  color: #eaeaea;
}
/* Hero upgrades: stronger CTA and background */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(212, 175, 55, 0.15), transparent 60%),
              linear-gradient(180deg, #0b0f12, #0e1419);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 20px
  );
  mix-blend-mode: overlay;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
}
.hero-content h1 {
  font-size: 44px;
  line-height: 1.1;
}
.hero .subtitle {
  margin-top: 8px;
  color: #dcdcdc;
}
.cta {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(180deg, #e4c75b, #c69a1f);
  color: #0b0f12;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(198, 154, 31, 0.6);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-secondary {
  background: transparent;
  color: #f3e3a0;
  border: 1px solid rgba(212, 175, 55, 0.5);
}
.btn-secondary:hover { background: rgba(212, 175, 55, 0.1); }

/* Trust badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  padding: 8px 0 24px 0;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
}
.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e4c75b, #c69a1f);
  color: #0b0f12;
}
.badge-text { color: #e6e6e6; font-weight: 600; }

/* Card polish */
.card-gold { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(212, 175, 55, 0.22); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.reveal-in { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 34px; }
}

/* Live odds ticker */
.odds-ticker {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, #0e1419, #0b0f12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.odds-ticker .container {
  overflow: hidden;
  padding: 6px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 18px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f6e7ad;
  font-weight: 600;
}
.ticker-odd {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #ffd66b;
}
.ticker-item .dot { width: 6px; height: 6px; border-radius: 999px; background: #d4af37; }
.odds-ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .odds-ticker { display: none; }
}

/* Subtle sports background for content panels */
.sports-bg { position: relative; overflow: hidden; }
.sports-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--bg-opacity, 0.08);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><g stroke='%23d4af37' stroke-opacity='0.35' fill='none'><circle cx='40' cy='40' r='26'/><path d='M18 40h44' stroke-width='2'/><circle cx='120' cy='120' r='20'/><path d='M110 120h20' stroke-width='2'/><rect x='28' y='104' width='28' height='28' rx='6'/></g></svg>");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

/* Variant: Cricket (ball + wickets) */
.sports-bg--cricket::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><g stroke='%23d4af37' stroke-opacity='0.35' fill='none'><circle cx='48' cy='48' r='28'/><path d='M24 48h48' stroke-width='2'/><path d='M130 118l0 -34 M140 118l0 -34 M150 118l0 -34' stroke-width='3'/><circle cx='132' cy='142' r='18'/></g></svg>");
}

/* Variant: Football (hex panels) */
.sports-bg--football::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><g stroke='%23d4af37' stroke-opacity='0.3' fill='none'><polygon points='50,20 70,20 80,38 70,56 50,56 40,38'/><polygon points='100,40 120,40 130,58 120,76 100,76 90,58'/><polygon points='150,20 170,20 180,38 170,56 150,56 140,38'/><polygon points='70,98 90,98 100,116 90,134 70,134 60,116'/><polygon points='130,98 150,98 160,116 150,134 130,134 120,116'/></g></svg>");
  background-size: 220px 220px;
}

/* Variant: Basketball (panel arcs) */
.sports-bg--basketball::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><g stroke='%23d4af37' stroke-opacity='0.32' fill='none'><circle cx='90' cy='90' r='34'/><path d='M56 90c0-18 14-32 32-32' stroke-width='2'/><path d='M124 90c0 18-14 32-32 32' stroke-width='2'/><path d='M90 56c18 0 32 14 32 32' stroke-width='2'/><path d='M90 124c-18 0-32-14-32-32' stroke-width='2'/></g></svg>");
}

/* Card icons for bet types */
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(180deg, #e4c75b, #c69a1f);
  color: #0b0f12;
  margin-bottom: 8px;
}

/* --- CTA Band: black-golden gradient --- */
.cta-band {
  position: relative;
  padding: 42px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  border-bottom: 1px solid rgba(212, 175, 55, 0.24);
  background:
    radial-gradient(900px 420px at 50% 10%, rgba(212, 175, 55, 0.20), transparent 60%),
    radial-gradient(900px 420px at 50% 100%, rgba(212, 175, 55, 0.12), transparent 60%),
    linear-gradient(180deg, #0b0f12 0%, #0e1419 50%, #0b0f12 100%);
}
.cta-band .container { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.cta-band h2 { color: var(--gold); margin: 0; font-size: clamp(1.7rem, 3.2vw, 2.2rem); }
.cta-band p { color: #e6e6e6; max-width: 62ch; margin: 6px 0 14px; }
.cta-band .btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 52px;
  padding: 0 24px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.25);
}
@media (max-width: 640px) { .cta-band .btn.btn-primary { width: 100%; max-width: 420px; } }