/* ── Variables ── */
:root {
  --navy:       #0A1628;
  --navy-light: #0f1f3d;
  --navy-mid:   #162544;
  --gold:       #FFD700;
  --gold-dark:  #e6c200;
  --white:      #ffffff;
  --text:       #e8eaf0;
  --text-muted: #8892a4;
  --green:      #22c55e;
  --red:        #ef4444;
  --card-bg:    #111e35;
  --border:     rgba(255,255,255,0.08);
  --radius:     12px;
  --radius-sm:  8px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--navy); color: var(--text); line-height: 1.6; }
a { color: var(--gold); text-decoration: none; }
a:hover { opacity: 0.85; }
img { max-width: 100%; }

/* ── 18+ Warning Bar ── */
.warn-bar { background: #1a0a00; border-bottom: 1px solid rgba(255,100,0,0.4); color: #ffb347; font-size: 0.78rem; font-weight: 600; text-align: center; padding: 0.45rem 1rem; letter-spacing: 0.02em; }
.warn-bar a { color: #ffb347; text-decoration: underline; }
.warn-bar a:hover { color: #fff; }

/* ── Nav ── */
.nav { background: rgba(10,22,40,0.95); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; font-size: 1.1rem; color: var(--white); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a { color: var(--text); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--white); }
.nav-free { color: var(--gold) !important; }
.nav-cta { background: var(--gold); color: var(--navy) !important; padding: 0.4rem 1rem; border-radius: 6px; font-weight: 700; }
.nav-cta:hover { background: var(--gold-dark); opacity: 1; }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ── Hero ── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 6rem 1.5rem 5rem; text-align: center; border-bottom: 1px solid var(--border); }
.hero-small { padding: 4rem 1.5rem 3rem; }
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-badge { display: inline-block; background: rgba(255,215,0,0.15); border: 1px solid rgba(255,215,0,0.3); color: var(--gold); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 1.25rem; }
.gold { color: var(--gold); }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; margin: 0 auto 2rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.hero-note { font-size: 0.8rem; color: var(--text-muted); }
.hero-note a { color: var(--text-muted); text-decoration: underline; }

/* ── Buttons ── */
.btn { display: inline-block; padding: 0.75rem 1.75rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem; transition: all 0.2s; cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); opacity: 1; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); opacity: 1; }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); opacity: 1; }

/* ── Stats Bar ── */
.stats-bar { background: var(--gold); padding: 1.5rem; }
.stats-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-size: 1.6rem; font-weight: 900; color: var(--navy); display: block; }
.stat-label { font-size: 0.8rem; font-weight: 600; color: rgba(10,22,40,0.7); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: rgba(10,22,40,0.2); }

/* ── Sections ── */
.section { padding: 5rem 1.5rem; }
.section-dark { background: var(--navy-light); }
.section-cta { background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%); text-align: center; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); text-align: center; margin-bottom: 0.75rem; }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 3rem; font-size: 1.05rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container.narrow { max-width: 800px; margin: 0 auto; }
.center { text-align: center; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.step { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; position: relative; }
.step-num { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 3rem; font-weight: 900; color: rgba(255,215,0,0.08); line-height: 1; }
.step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.step h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* ── Sports Grid ── */
.sports-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.sport-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center; font-size: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.sport-card span { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.sport-card.coming { opacity: 0.5; }
.sport-card small { font-size: 0.7rem; color: var(--gold); }

/* ── Record Cards ── */
.record-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.record-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.record-sport { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.5rem; }
.record-stat { font-size: 1.4rem; font-weight: 800; color: var(--white); }
.record-pct { font-size: 0.9rem; color: var(--gold); margin: 0.25rem 0 0.75rem; }
.record-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.record-fill { height: 100%; background: var(--gold); border-radius: 2px; }
.record-cta { text-align: center; margin-top: 2rem; }

/* ── Record Page ── */
.record-summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.summary-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.summary-num { font-size: 2rem; font-weight: 900; color: var(--white); }
.summary-num.gold { color: var(--gold); }
.summary-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.record-table-wrap { overflow-x: auto; }
.record-table { width: 100%; border-collapse: collapse; }
.record-table th { background: var(--navy-mid); color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.75rem 1rem; text-align: left; }
.record-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.record-table tr:hover td { background: rgba(255,255,255,0.02); }
.sport-name { font-weight: 600; color: var(--white); }
.wins { color: var(--green); font-weight: 700; }
.losses { color: var(--red); font-weight: 700; }
.pct.good { color: var(--green); font-weight: 700; }
.pct.ok { color: var(--gold); font-weight: 700; }
.pct.bad { color: var(--red); }
.result.win { color: var(--green); }
.result.loss { color: var(--red); }
.mini-bar { width: 80px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.mini-fill { height: 100%; background: var(--gold); }
.small-text { font-size: 0.85rem; color: var(--text-muted); }
.disclaimer-note { margin-top: 2rem; font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: start; }
.pricing-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; position: relative; }
.pricing-featured { border-color: var(--gold); transform: scale(1.02); }
.pricing-soon { opacity: 0.7; }
.pricing-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 100px; margin-bottom: 1rem; }
.coming-badge { background: var(--text-muted); color: var(--navy); }
.pricing-tier { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.5rem; }
.pricing-price { font-size: 3rem; font-weight: 900; color: var(--white); margin-bottom: 1.5rem; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-features { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li { font-size: 0.9rem; color: var(--text-muted); }
.pricing-features li:not([style]) { color: var(--text); }
.pricing-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ── Reasons ── */
.reasons { display: flex; flex-direction: column; gap: 1.5rem; }
.reason { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.reason-icon { font-size: 2rem; flex-shrink: 0; }
.reason h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.reason p { font-size: 0.9rem; color: var(--text-muted); }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.blog-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.blog-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.75rem; }
.blog-sport { background: rgba(255,215,0,0.15); color: var(--gold); font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; text-transform: uppercase; }
.blog-date { font-size: 0.8rem; color: var(--text-muted); }
.blog-title { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.blog-title a { color: var(--white); }
.blog-excerpt { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-read-more { font-size: 0.9rem; font-weight: 600; color: var(--gold); }
.blog-article { line-height: 1.8; }
.blog-article h2, .blog-article h3 { color: var(--white); margin: 2rem 0 1rem; font-weight: 700; }
.blog-article p { color: var(--text-muted); margin-bottom: 1.25rem; }
.blog-article ul, .blog-article ol { color: var(--text-muted); padding-left: 1.5rem; margin-bottom: 1.25rem; }
.blog-article li { margin-bottom: 0.5rem; }
.blog-article strong { color: var(--white); }
.blog-cta-box { margin-top: 3rem; background: var(--card-bg); border: 1px solid var(--gold); border-radius: var(--radius); padding: 2rem; text-align: center; }
.blog-cta-box h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.3rem; }
.blog-cta-box p { color: var(--text-muted); margin-bottom: 1.5rem; }
.blog-cta-box .btn { margin: 0.25rem; }

/* ── How It Works ── */
.hiw-block { margin-bottom: 3rem; }
.hiw-block h2 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 0.75rem; }
.hiw-block p { color: var(--text-muted); margin-bottom: 0.75rem; }
.hiw-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin: 1rem 0; }
.hiw-list li { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.75rem 1rem; color: var(--text); }
.callout { background: rgba(255,215,0,0.08); border-left: 3px solid var(--gold); padding: 1rem 1.25rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-top: 1rem; font-size: 0.9rem; color: var(--text-muted); }

/* ── Data Inputs Grid ── */
.data-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.data-card { background: var(--navy); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: border-color 0.2s; }
.data-card:hover { border-color: rgba(255,215,0,0.3); }
.data-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.data-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.data-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.data-footnote { text-align: center; font-size: 0.85rem; color: var(--text-muted); padding-top: 1rem; }
.data-footnote a { color: var(--gold); }

/* ── Policy Pages ── */
.policy-body h2 { color: var(--white); font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.policy-body p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.policy-body ul { color: var(--text-muted); padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-body li { margin-bottom: 0.4rem; line-height: 1.7; }
.policy-body a { color: var(--gold); }
.policy-body strong { color: var(--text); }

/* ── Betfair Banner ── */
.betfair-bar { background: linear-gradient(90deg, #003d7a 0%, #0052a5 100%); padding: 0.9rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.betfair-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.betfair-text { color: rgba(255,255,255,0.92); font-size: 0.9rem; }
.betfair-text strong { color: #fff; }
.betfair-btn { background: #FFD700; color: #003d7a; font-weight: 700; font-size: 0.85rem; padding: 0.5rem 1.25rem; border-radius: 6px; white-space: nowrap; flex-shrink: 0; }
.betfair-btn:hover { background: #e6c200; opacity: 1; }

/* ── Footer Warning Badges ── */
.footer-warn-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
.warn-badge { background: rgba(255,100,0,0.15); border: 1px solid rgba(255,100,0,0.3); color: #ffb347; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 100px; }

/* ── Inline Responsible Gambling Box ── */
.rg-box { background: rgba(255,100,0,0.08); border: 1px solid rgba(255,100,0,0.25); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; margin: 1.5rem 0; font-size: 0.82rem; color: #ffb347; line-height: 1.7; }
.rg-box strong { color: #ffb347; }
.rg-box a { color: #ffb347; text-decoration: underline; }

/* ── Tip Callout (round posts) ── */
.tip-callout { background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.3); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; margin: 0.75rem 0 1.25rem; font-size: 0.95rem; color: var(--text); }
.tip-callout strong { color: var(--gold); }

/* ── Record Page Layout ── */
.record-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.record-card-block { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.block-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.06em; }
.sport-row { display: flex; align-items: center; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.sport-row:last-child { border-bottom: none; }
.sport-row-name { display: flex; align-items: center; gap: 0.5rem; min-width: 130px; font-size: 0.95rem; font-weight: 600; color: var(--white); }
.sport-row-record { font-size: 0.9rem; min-width: 80px; }

/* ── Tips List ── */
.tips-list { display: flex; flex-direction: column; gap: 0.75rem; max-height: 700px; overflow-y: auto; padding-right: 0.25rem; }
.tips-list::-webkit-scrollbar { width: 4px; }
.tips-list::-webkit-scrollbar-track { background: transparent; }
.tips-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.tip-row { background: var(--navy-mid); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.75rem 1rem; border-left: 3px solid transparent; }
.tip-row.win  { border-left-color: #22c55e; }
.tip-row.loss { border-left-color: #ef4444; }
.tip-row-top { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; }
.tip-match { font-size: 0.9rem; font-weight: 600; color: var(--white); flex: 1; }
.tip-result-badge { margin-left: auto; }
.tip-row-bot { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.tip-pick { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.tip-conf { font-size: 0.8rem; color: var(--text-muted); margin-left: auto; }
.tip-date { font-size: 0.75rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .record-layout { grid-template-columns: 1fr; }
  .tips-list { max-height: none; }
}

/* ── Footer ── */
.footer { background: var(--navy-light); border-top: 1px solid var(--border); padding: 3rem 1.5rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.75rem; line-height: 1.8; }
.footer-links h4 { color: var(--white); font-weight: 700; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-legal-links { max-width: 1200px; margin: 0 auto 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: 0.82rem; display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.footer-legal-links a { color: var(--text-muted); }
.footer-legal-links a:hover { color: var(--white); }
.footer-legal-links span { color: var(--border); }
.footer-disclaimer { max-width: 1200px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 1.5rem; font-size: 0.78rem; color: var(--text-muted); line-height: 1.8; }
.footer-disclaimer a { color: var(--text-muted); text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 1rem; border-bottom: 1px solid var(--border); gap: 1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stat-divider { display: none; }
  .pricing-featured { transform: none; }
  .hero-cta { flex-direction: column; align-items: center; }
}
