/* =====================================================================
   Satsport247 - Magazine Column Layout Stylesheet
   Fonts: Exo 2 (headings), Work Sans (body)
   Palette: yellow #ffc21d, black #000, light gray #ebeef3, white #fff
   ===================================================================== */

:root {
  --yellow: #ffc21d;
  --yellow-dark: #e0a800;
  --black: #000000;
  --ink: #111111;
  --gray: #ebeef3;
  --gray-mid: #c9ced6;
  --gray-line: #d5d9e0;
  --white: #ffffff;
  --text: #16181d;
  --muted: #4a4f59;
  --rule: #1a1a1a;
  --maxw: 1240px;
  --col-gap: 40px;
  --font-head: "Exo 2", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--yellow-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1.1em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--yellow); color: var(--black); padding: 10px 18px;
  font-weight: 700; font-family: var(--font-head);
}
.skip-link:focus { left: 12px; top: 12px; }

/* =====================================================================
   TOP BAR / NAVIGATION
   ===================================================================== */
.topstrip {
  background: var(--black);
  color: var(--gray-mid);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid #262626;
}
.topstrip .wrap {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 34px; gap: 14px; flex-wrap: wrap;
}
.topstrip .edition { font-family: var(--font-head); font-weight: 700; color: var(--yellow); }
.topstrip .ticker { color: var(--gray-mid); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; flex: 1; text-align: center; }
.topstrip .ticker b { color: var(--white); }
.topstrip .region { color: var(--gray-mid); }
.topstrip .region strong { color: var(--white); }

.masthead {
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}
.masthead .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 88px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  height: 40px; width: auto;
  filter: invert(1);            /* black wordmark -> white on black bar */
}
.brand .tagbadge {
  font-family: var(--font-head); font-weight: 800; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--yellow); color: var(--black);
  padding: 3px 8px; align-self: center;
}
.masthead-cta { display: flex; align-items: center; gap: 12px; }

.mainnav { background: #0a0a0a; border-bottom: 1px solid #222; position: sticky; top: 0; z-index: 500; }
.mainnav .wrap { display: flex; align-items: center; justify-content: space-between; }
.navlist { list-style: none; display: flex; margin: 0; padding: 0; flex-wrap: wrap; }
.navlist > li { position: relative; }
.navlist > li > a {
  display: block; padding: 15px 18px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--white);
  border-right: 1px solid #222;
}
.navlist > li:first-child > a { border-left: 1px solid #222; }
.navlist > li > a:hover,
.navlist > li:hover > a,
.navlist > li.current > a { background: var(--yellow); color: var(--black); }
.navlist .has-drop > a::after { content: " \25BE"; font-size: 10px; opacity: 0.7; }

.dropdown {
  list-style: none; margin: 0; padding: 0;
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: var(--black); border-top: 3px solid var(--yellow);
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 600;
}
.has-drop:hover > .dropdown,
.has-drop:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 12px 18px; color: var(--gray-mid);
  font-size: 14px; border-bottom: 1px solid #1c1c1c;
  font-family: var(--font-body); font-weight: 500; letter-spacing: 0.02em;
}
.dropdown a:hover { background: var(--yellow); color: var(--black); }

.navtoggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 12px 16px; color: var(--yellow);
}
.navtoggle span, .navtoggle span::before, .navtoggle span::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--yellow);
  position: relative; transition: transform .2s;
}
.navtoggle span::before { position: absolute; top: -7px; }
.navtoggle span::after { position: absolute; top: 7px; }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-block; font-family: var(--font-head); font-weight: 800;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 13px 26px; border: 2px solid var(--yellow); cursor: pointer;
  background: var(--yellow); color: var(--black);
  transition: background .15s, color .15s, transform .1s; border-radius: 0;
  text-align: center; line-height: 1.1;
}
.btn:hover { background: var(--black); color: var(--yellow); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--yellow); }
.btn-outline:hover { background: var(--yellow); color: var(--black); }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { display: block; width: 100%; }
.btn-wa { background: #25d366; border-color: #25d366; color: #04310f; }
.btn-wa:hover { background: var(--black); color: #25d366; border-color: #25d366; }

/* =====================================================================
   HERO / MASTHEAD FRONT PAGE
   ===================================================================== */
.hero {
  background: var(--black); color: var(--white);
  padding: 54px 0 46px; position: relative;
  border-bottom: 3px solid var(--yellow);
}
.hero .dateline {
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--yellow);
  border-top: 1px solid #333; border-bottom: 1px solid #333;
  padding: 8px 0; margin-bottom: 26px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.hero .dateline span { color: var(--gray-mid); }
.hero h1 {
  font-size: clamp(38px, 7vw, 78px); line-height: 0.98; color: var(--white);
  text-transform: uppercase; margin-bottom: 18px; letter-spacing: -0.02em;
}
.hero h1 .hl { color: var(--yellow); }
.hero .typed-line { display: block; min-height: 1.02em; }
.hero .typed-cursor { color: var(--yellow); font-weight: 400; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero .standfirst {
  font-size: clamp(17px, 2.2vw, 21px); color: var(--gray); max-width: 760px;
  font-weight: 400; border-left: 4px solid var(--yellow); padding-left: 18px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 40px; border-top: 1px solid #2a2a2a;
}
.hero-stats .stat { padding: 20px 18px 4px; border-right: 1px solid #2a2a2a; }
.hero-stats .stat:last-child { border-right: 0; }
.hero-stats .num { font-family: var(--font-head); font-weight: 800; font-size: 34px; color: var(--yellow); line-height: 1; }
.hero-stats .lbl { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); }

/* =====================================================================
   SECTION STRUCTURE
   ===================================================================== */
section { padding: 56px 0; }
.section-alt { background: var(--gray); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.kicker {
  font-family: var(--font-head); font-weight: 800; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow-dark);
  margin-bottom: 8px; display: inline-block;
}
.section-dark .kicker { color: var(--yellow); }
.section-head { margin-bottom: 34px; max-width: 820px; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 46px); text-transform: uppercase; }
.section-head p { color: var(--muted); font-size: 18px; }
.section-dark .section-head p { color: var(--gray-mid); }

/* Section divider with diamond ornament */
.divider { border: 0; height: 40px; position: relative; margin: 6px 0; }
.divider::before {
  content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px;
  background: var(--gray-line);
}
.section-dark .divider::before, .divider.on-dark::before { background: #333; }
.divider::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 12px; background: var(--yellow);
  transform: translate(-50%, -50%) rotate(45deg);
  border: 2px solid var(--white);
}
.section-dark .divider::after, .divider.on-dark::after { border-color: var(--black); }

/* =====================================================================
   MAGAZINE COLUMNS (newspaper rules)
   ===================================================================== */
.columns { display: grid; gap: var(--col-gap); }
.cols-2 { grid-template-columns: 1fr 1fr; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
/* Column rules - vertical lines between columns */
.ruled { position: relative; }
.ruled.cols-2 > *:nth-child(odd) { border-right: 1px solid var(--gray-line); padding-right: var(--col-gap); }
.ruled.cols-3 > * { padding-right: var(--col-gap); border-right: 1px solid var(--gray-line); }
.ruled.cols-3 > *:nth-child(3n) { border-right: 0; padding-right: 0; }
.section-dark .ruled > * { border-color: #2a2a2a !important; }

/* Newspaper article/column text */
.article-col h3 { font-size: 22px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: -0.01em; }
.article-col .byline {
  font-family: var(--font-head); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow-dark);
  border-bottom: 2px solid var(--yellow); display: inline-block; padding-bottom: 4px; margin-bottom: 12px;
}
.section-dark .article-col .byline { color: var(--yellow); }
.article-col p { font-size: 16px; color: var(--muted); }
.section-dark .article-col p { color: var(--gray-mid); }
.dropcap::first-letter {
  font-family: var(--font-head); font-weight: 800; float: left;
  font-size: 62px; line-height: 0.8; padding: 4px 10px 0 0; color: var(--yellow-dark);
}
.section-dark .dropcap::first-letter { color: var(--yellow); }

/* Longform prose block (privacy/terms etc.) */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 26px; text-transform: uppercase; margin-top: 40px; padding-top: 20px; border-top: 2px solid var(--ink); }
.prose h2:first-of-type { margin-top: 12px; }
.prose h3 { font-size: 19px; margin-top: 26px; }
.prose p, .prose li { color: var(--muted); font-size: 16.5px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 1.1em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--yellow-dark); font-weight: 600; text-decoration: underline; }
.prose .updated { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }

/* =====================================================================
   CARDS
   ===================================================================== */
.card {
  background: var(--white); border: 1px solid var(--gray-line);
  border-top: 3px solid var(--yellow); padding: 26px 24px; border-radius: 0;
  height: 100%; transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,0.08); }
.section-dark .card { background: #101010; border-color: #262626; border-top-color: var(--yellow); }
.card .num-badge {
  font-family: var(--font-head); font-weight: 800; font-size: 13px;
  background: var(--black); color: var(--yellow); width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.card h3 { font-size: 20px; text-transform: uppercase; margin-bottom: 8px; }
.card p { font-size: 15.5px; color: var(--muted); margin: 0; }
.section-dark .card p { color: var(--gray-mid); }
.card-grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Feature list with yellow check */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 12px; font-size: 16px; color: var(--muted); }
.section-dark .checklist li { color: var(--gray-mid); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px;
  background: var(--yellow); transform: rotate(45deg);
}

/* =====================================================================
   PROMO BANNERS (from source images)
   ===================================================================== */
.promo-strip { display: grid; gap: 22px; }
.promo-strip.grid-2 { grid-template-columns: 1fr 1fr; }
.promo-banner {
  display: block; border: 3px solid var(--black); background: var(--black);
  position: relative; overflow: hidden; line-height: 0;
}
.promo-banner img { width: 100%; transition: transform .3s; }
.promo-banner:hover img { transform: scale(1.02); }

/* Payment badges */
.pay-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.pay-badge {
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--white); color: var(--ink); border: 1px solid var(--gray-line);
  border-left: 3px solid var(--yellow); padding: 9px 14px;
}
.section-dark .pay-badge { background: #101010; color: var(--white); border-color: #262626; border-left-color: var(--yellow); }

/* Odds / markets table */
.odds-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.odds-table th, .odds-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--gray-line); }
.odds-table th { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; background: var(--black); color: var(--yellow); }
.odds-table tr:nth-child(even) td { background: var(--gray); }
.odds-table .odd { font-family: var(--font-head); font-weight: 800; color: var(--ink); }
.odds-wrap { overflow-x: auto; border: 1px solid var(--gray-line); border-top: 3px solid var(--yellow); }

/* =====================================================================
   INTERACTIVE TOOLS
   ===================================================================== */
.tool {
  background: var(--white); border: 1px solid var(--gray-line);
  border-top: 3px solid var(--yellow); padding: 30px 28px; border-radius: 0;
}
.section-dark .tool { background: #101010; border-color: #262626; }
.tool h3 { font-size: 22px; text-transform: uppercase; margin-bottom: 6px; }
.tool .tool-tag { font-family: var(--font-head); font-weight:700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow-dark); }
.tool label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 14px 0 6px; }
.section-dark .tool label { color: var(--gray-mid); }
.field, .tool input[type="text"], .tool input[type="number"], .tool input[type="email"], .tool input[type="tel"], .tool input[type="password"], .tool select {
  width: 100%; padding: 12px 14px; font-family: var(--font-body); font-size: 16px;
  border: 2px solid var(--gray-line); border-radius: 0; background: var(--white); color: var(--text);
}
.section-dark .field, .section-dark .tool input, .section-dark .tool select { background: #171717; border-color: #333; color: var(--white); }
.field:focus, .tool input:focus, .tool select:focus { outline: 0; border-color: var(--yellow); }

/* Toss coin */
.coin-stage { perspective: 800px; display: flex; justify-content: center; margin: 22px 0; }
.coin {
  width: 130px; height: 130px; position: relative; transform-style: preserve-3d;
  transition: transform .2s;
}
.coin.flipping { animation: coinflip 2s ease-in-out; }
@keyframes coinflip {
  0% { transform: rotateY(0) translateY(0); }
  50% { transform: rotateY(1080deg) translateY(-40px); }
  100% { transform: rotateY(1980deg) translateY(0); }
}
.coin .face {
  position: absolute; inset: 0; border-radius: 50%; backface-visibility: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 52px;
  border: 5px solid var(--black); background: var(--yellow);
}
.coin .face.ball { transform: rotateY(180deg); background: var(--ink); border-color: var(--yellow); }
.toss-result { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 18px; text-align: center; min-height: 1.4em; color: var(--yellow-dark); }
.section-dark .toss-result { color: var(--yellow); }
.toss-record { display: flex; gap: 0; margin-top: 18px; border-top: 1px solid var(--gray-line); }
.toss-record .rec { flex: 1; text-align: center; padding: 12px 6px; border-right: 1px solid var(--gray-line); }
.toss-record .rec:last-child { border-right: 0; }
.toss-record .rn { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--ink); }
.section-dark .toss-record .rn { color: var(--yellow); }
.toss-record .rl { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* Fantasy builder */
.player-pick { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; }
.picked-list { list-style: none; margin: 14px 0 0; padding: 0; }
.picked-list li { display: grid; grid-template-columns: 1fr 120px auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-line); font-size: 15px; }
.picked-list .pname { font-family: var(--font-head); font-weight: 700; }
.form-bar { height: 10px; background: var(--gray-line); position: relative; }
.section-dark .form-bar { background: #333; }
.form-bar span { position: absolute; inset: 0 auto 0 0; background: var(--yellow); }
.rm-btn { background: none; border: 0; color: #c0392b; font-weight: 700; cursor: pointer; font-size: 18px; line-height: 1; }
.leaderboard { list-style: none; margin: 16px 0 0; padding: 0; }
.leaderboard li { display: flex; justify-content: space-between; padding: 10px 12px; border-bottom: 1px solid var(--gray-line); font-size: 15px; }
.leaderboard li.you { background: var(--yellow); color: var(--black); font-weight: 700; }
.leaderboard .lb-score { font-family: var(--font-head); font-weight: 800; }

/* Rollover calc */
.calc-out { margin-top: 20px; border-top: 1px solid var(--gray-line); padding-top: 16px; }
.calc-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--gray-line); font-size: 15px; }
.calc-row .cv { font-family: var(--font-head); font-weight: 800; color: var(--ink); }
.section-dark .calc-row .cv { color: var(--yellow); }
.progress-track { height: 22px; background: var(--gray-line); margin-top: 16px; position: relative; overflow: hidden; }
.section-dark .progress-track { background: #333; }
.progress-fill { height: 100%; width: 0; background: repeating-linear-gradient(45deg, var(--yellow), var(--yellow) 12px, var(--yellow-dark) 12px, var(--yellow-dark) 24px); transition: width .8s ease; }
.progress-label { text-align: center; font-family: var(--font-head); font-weight: 800; font-size: 13px; margin-top: 8px; }

/* =====================================================================
   FORMS (login / signup / contact)
   ===================================================================== */
.auth-shell { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; }
.auth-aside { background: var(--black); color: var(--white); padding: 46px 40px; border-top: 3px solid var(--yellow); }
.auth-aside h2 { color: var(--white); font-size: 32px; text-transform: uppercase; }
.auth-aside p { color: var(--gray-mid); }
.form-card {
  background: var(--white); border: 1px solid var(--gray-line);
  border-top: 3px solid var(--yellow); padding: 40px 36px; border-radius: 0;
}
.form-card h1 { font-size: 30px; text-transform: uppercase; margin-bottom: 4px; }
.form-card .sub { color: var(--muted); margin-bottom: 22px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 13px 14px; font-family: var(--font-body); font-size: 16px;
  border: 2px solid var(--gray-line); border-radius: 0; background: var(--white); color: var(--text);
}
.form-control:focus { outline: 0; border-color: var(--yellow); }
.pw-wrap { position: relative; }
.pw-toggle { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); background: none; border: 0; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--yellow-dark); padding: 8px; }
.strength { display: flex; gap: 6px; margin-top: 8px; }
.strength .bar { height: 6px; flex: 1; background: var(--gray-line); transition: background .2s; }
.strength .bar.on-1 { background: #e74c3c; }
.strength .bar.on-2 { background: #e67e22; }
.strength .bar.on-3 { background: #f1c40f; }
.strength .bar.on-4 { background: #27ae60; }
.strength-label { font-size: 12px; margin-top: 6px; color: var(--muted); font-weight: 600; }
.check-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; color: var(--muted); }
.check-row input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--yellow-dark); }
.form-note { font-size: 13px; color: var(--muted); margin-top: 16px; }
.form-alt { text-align: center; margin-top: 18px; font-size: 14px; color: var(--muted); }
.form-alt a { color: var(--yellow-dark); font-weight: 700; }
.err { color: #c0392b; font-size: 13px; margin-top: 5px; font-weight: 600; display: none; }
.err.show { display: block; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-item { border-bottom: 1px solid var(--gray-line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 44px 20px 0; position: relative;
  font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink);
}
.faq-q::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 26px; color: var(--yellow-dark); font-weight: 400; }
.faq-q[aria-expanded="true"]::after { content: "\2212"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 0 20px; color: var(--muted); font-size: 16px; margin: 0; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.quote-card { background: var(--white); border: 1px solid var(--gray-line); border-left: 4px solid var(--yellow); padding: 24px; }
.section-dark .quote-card { background: #101010; border-color: #262626; border-left-color: var(--yellow); }
.quote-card .stars { color: var(--yellow-dark); letter-spacing: 2px; font-size: 15px; margin-bottom: 8px; }
.quote-card blockquote { margin: 0 0 14px; font-size: 16px; color: var(--text); font-style: italic; }
.section-dark .quote-card blockquote { color: var(--gray); }
.quote-card .who { font-family: var(--font-head); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; }
.quote-card .where { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { background: var(--yellow); color: var(--black); padding: 44px 0; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: var(--black); font-size: clamp(24px, 3.6vw, 38px); text-transform: uppercase; margin: 0; }
.cta-band p { margin: 4px 0 0; font-weight: 600; }
.cta-band .btn { background: var(--black); color: var(--yellow); border-color: var(--black); }
.cta-band .btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* =====================================================================
   RESPONSIBLE GAMING STRIP
   ===================================================================== */
.rg-strip { background: var(--ink); color: var(--gray-mid); padding: 26px 0; font-size: 14px; }
.rg-strip .wrap { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; justify-content: center; text-align: center; }
.rg-strip .age { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--white); border: 2px solid var(--yellow); border-radius: 50%; width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; }
.rg-strip a { color: var(--yellow); font-weight: 700; text-decoration: underline; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--black); color: var(--gray-mid); padding: 54px 0 0; border-top: 3px solid var(--yellow); }
.footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-cols .fcol { border-left: 1px solid #222; padding-left: 24px; }
.footer-cols .fcol:first-child { border-left: 0; padding-left: 0; }
.footer-brand img { height: 34px; filter: invert(1); margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--gray-mid); }
.footer-cols h4 { color: var(--yellow); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-cols ul { list-style: none; margin: 0; padding: 0; }
.footer-cols li { margin-bottom: 10px; }
.footer-cols a { color: var(--gray-mid); font-size: 14px; }
.footer-cols a:hover { color: var(--yellow); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid #222; }
.footer-badges .badge { font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid #333; color: var(--white); padding: 8px 14px; }
.footer-badges .badge.hl { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.footer-legal { border-top: 1px solid #222; padding: 20px 0 30px; font-size: 12.5px; color: #7a7f88; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-legal a { color: var(--gray-mid); }
.footer-pay { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.footer-pay span { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid #333; padding: 5px 9px; color: var(--gray-mid); }

/* =====================================================================
   PAGE HERO (subpages)
   ===================================================================== */
.page-hero { background: var(--black); color: var(--white); padding: 44px 0; border-bottom: 3px solid var(--yellow); }
.page-hero .crumbs { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 14px; font-family: var(--font-head); font-weight: 700; }
.page-hero .crumbs a { color: var(--yellow); }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 5vw, 54px); text-transform: uppercase; }
.page-hero p { color: var(--gray-mid); max-width: 720px; font-size: 18px; margin: 0; }

/* =====================================================================
   ANIMATIONS
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
  .cols-3, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .ruled.cols-3 > *:nth-child(2n) { border-right: 0; padding-right: 0; }
  .ruled.cols-3 > *:nth-child(2n+1) { border-right: 1px solid var(--gray-line); padding-right: var(--col-gap); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-cols .fcol:nth-child(3) { border-left: 0; padding-left: 0; }
  .auth-shell { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat:nth-child(2) { border-right: 0; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .navtoggle { display: block; }
  .mainnav .wrap { flex-wrap: wrap; }
  .navlist {
    display: none; width: 100%; flex-direction: column; padding-bottom: 8px;
  }
  .navlist.open { display: flex; }
  .navlist > li > a { border-right: 0; border-left: 0 !important; border-bottom: 1px solid #222; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: 0; background: #131313; }
  .dropdown a { padding-left: 34px; }
  .has-drop:hover > .dropdown { transform: none; }
  .columns.cols-2, .columns.cols-3, .promo-strip.grid-2 { grid-template-columns: 1fr; }
  .ruled.cols-2 > *, .ruled.cols-3 > * { border-right: 0 !important; padding-right: 0 !important; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .card-grid { gap: 20px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-cols .fcol { border-left: 0; padding-left: 0; }
  .footer-legal { flex-direction: column; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .player-pick { grid-template-columns: 1fr; }
  .picked-list li { grid-template-columns: 1fr auto; }
  .picked-list .form-bar { grid-column: 1 / -1; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .coin.flipping { animation: none !important; }
  .typed-cursor { display: none; }
}
