:root {
  --navy: #0b1b34;
  --navy-2: #122b4a;
  --gold: #c9973b;
  --gold-light: #f3c76f;
  --paper: #f6f4ef;
  --ink: #172033;
  --muted: #526174;
  --line: #dce2e8;
  --focus: #78b7e7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: Arial, Helvetica, sans-serif; line-height: 1.62; }
a { color: #174d83; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(900px, calc(100% - 32px)); }

.site-header { position: sticky; top: 0; z-index: 20; background: #fff; border-bottom: 1px solid rgba(10,22,40,.12); }
.nav-shell { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand img { display: block; width: auto; height: 56px; }
.site-menu { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.site-menu a { color: var(--navy); font-size: 14px; text-decoration: none; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(10,22,40,.35); border-radius: 6px; background: transparent; color: var(--navy); font-size: 24px; line-height: 1; cursor: pointer; }

.section { padding: 64px 0; }
.section-soft { background: var(--paper); }
.section-dark { background: var(--navy); color: #fff; }
.page-hero { padding: 70px 0; }
.page-hero-grid { display: grid; grid-template-columns: 1.55fr .75fr; gap: 42px; align-items: center; }
h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; }
h1 { max-width: 840px; margin: 12px 0 18px; font-size: 56px; line-height: 1.05; }
h2 { margin: 44px 0 16px; font-size: 30px; line-height: 1.2; }
h3 { margin: 0 0 8px; }
.hero-lead { max-width: 780px; font-size: 19px; }
.eyebrow { margin: 0; color: var(--gold-light); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow.dark { color: #8a6423; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn { display: inline-block; border: 1px solid transparent; border-radius: 6px; padding: 13px 20px; font-weight: 700; text-decoration: none; }
.btn-primary { background: var(--gold); color: #0a1628; }
.btn-secondary { border-color: #c9d2dc; background: #fff; color: var(--navy); }
.btn-small { padding: 9px 14px; }
.note { margin-top: 16px; font-size: 13px; opacity: .86; }
.breadcrumb { font-size: 14px; opacity: .86; }
.breadcrumb a { color: inherit; }

.bets-hero-panel { min-width: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; padding: 18px; background: rgba(255,255,255,.07); color: #fff; }
.bets-hero-media { aspect-ratio: 1200 / 630; margin: 0 0 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 6px; background: #071326; }
.bets-hero-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.bets-hero-panel h2 { margin: 8px 0; font-size: 24px; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.section-head { max-width: 800px; margin-bottom: 30px; }
.section-head h2 { margin: 6px 0; }
.info-card, .source-box, .profile-box { border: 1px solid var(--line); border-radius: 6px; background: #fff; padding: 24px; box-shadow: 0 8px 30px rgba(11,27,52,.06); }
.article p, .article li { font-size: 17px; }
.article ul, .article ol { padding-left: 24px; }
.article li { margin: 8px 0; }
.callout { margin: 28px 0; border-left: 5px solid var(--gold); border-radius: 6px; background: #fff7e5; padding: 18px 20px; }
.source-list li { margin: 8px 0; }
.faq-list details { margin: 10px 0; border: 1px solid var(--line); border-radius: 6px; background: #fff; padding: 17px 20px; }
.faq-list summary { cursor: pointer; font-weight: 700; }
.related { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.related a { display: block; border: 1px solid var(--line); border-radius: 6px; background: #fff; padding: 14px; text-decoration: none; }

.cta-section { background: var(--navy); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: start; }
.contact-line { margin-top: 24px; }
.contact-line a { color: #fff; font-weight: 700; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; border-radius: 8px; background: #fff; color: var(--ink); padding: 24px; }
.contact-form label { display: flex; flex-direction: column; font-size: 14px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 6px; border: 1px solid #cfd6de; border-radius: 6px; padding: 12px; font: inherit; }
.contact-form textarea { resize: vertical; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form .privacy-check { display: block; }
.contact-form .privacy-check input { width: auto; margin-right: 8px; }

.site-footer { background: #071326; color: #d8e0e8; padding: 46px 0; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 32px; }
.site-footer a { color: #fff; }
.footer-logo { display: block; width: auto; height: 64px; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 25; border-radius: 6px; background: #1b7a57; color: #fff; padding: 12px 17px; font-weight: 700; text-decoration: none; box-shadow: 0 8px 24px rgba(0,0,0,.2); }

@media (max-width: 820px) {
  .nav-shell { position: relative; }
  .menu-toggle { display: block; }
  .site-menu { display: none; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; border: 1px solid rgba(255,255,255,.2); border-radius: 6px; background: var(--navy); padding: 12px; box-shadow: 0 14px 30px rgba(0,0,0,.24); }
  .site-menu.is-open { display: flex; }
  .site-menu a { padding: 10px 12px; color: #fff; }
  .page-hero-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0; }
  .section { padding: 48px 0; }
  h1 { font-size: 38px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: auto; }
  .whatsapp-float { display: none; }
}

@media (max-width: 480px) {
  .container, .narrow { width: min(100% - 24px, 900px); }
  h1 { font-size: 34px; }
  .hero-lead { font-size: 17px; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
