:root {
  --felt-900: #061a10;
  --felt-850: #082014;
  --felt-800: #0a2417;
  --felt-700: #0d2e1d;
  --felt-panel: #0f3623;
  --felt-line: rgba(212, 175, 106, 0.22);
  --gold-300: #ecd9a4;
  --gold-400: #e0c483;
  --gold-500: #d0a95f;
  --gold-600: #b8904a;
  --cream: #f4efe1;
  --card-face: #faf6ec;
  --text: #efe9d6;
  --text-muted: #a7b8a8;
  --banker-red: #c8514a;
  --draw-green: #7cc08c;
  --stand-amber: #e2b25f;
  --shadow-deep: 0 24px 60px rgba(0,0,0,0.5);
  --radius: 14px;
  --maxw: 1120px;
  --serif: "Playfair Display", "Noto Serif SC", Georgia, serif;
  --sans: "Inter", "Noto Sans SC", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: radial-gradient(120% 80% at 50% -10%, #12452b 0%, var(--felt-800) 45%, var(--felt-900) 100%);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.3; margin: 0; }
a { color: var(--gold-400); text-decoration: none; }
a:hover { color: var(--gold-300); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--gold-500); color: var(--felt-900); padding: 10px 16px; border-radius: 8px; font-weight: 600; transition: top .2s ease; }
.skip:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 3px; border-radius: 4px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(6, 26, 16, 0.82); backdrop-filter: blur(10px); border-bottom: 1px solid var(--felt-line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--gold-500); display: grid; place-items: center; background: radial-gradient(circle at 50% 35%, #14432b, #071f13); color: var(--gold-400); font-size: 20px; flex: none; }
.brand-name { font-family: var(--serif); font-size: 20px; font-weight: 700; line-height: 1; }
.brand-name small { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 2px; color: var(--gold-500); font-weight: 600; margin-top: 4px; }
.main-nav ul { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.main-nav a { color: var(--text); font-size: 15px; font-weight: 500; }
.main-nav a:hover { color: var(--gold-400); }
.nav-responsible { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-400); font-weight: 600; font-size: 14px; border-left: 1px solid var(--felt-line); padding-left: 20px; }
.nav-toggle { display: none; }
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; background: none; border: 1px solid var(--felt-line); color: var(--gold-400); border-radius: 8px; padding: 8px 12px; font-size: 14px; cursor: pointer; }
}

/* Hero */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--felt-line); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 80% 30%, rgba(208,169,95,0.10), transparent 60%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; padding: 68px 0 56px; }
.eyebrow { display: inline-block; font-size: 13px; letter-spacing: 3px; color: var(--gold-500); font-weight: 600; margin-bottom: 16px; }
.hero h1 { font-size: clamp(30px, 4.6vw, 50px); font-weight: 700; margin-bottom: 18px; letter-spacing: 1px; }
.hero h1 .accent { color: var(--gold-400); }
.hero p.lede { font-size: 18px; color: var(--text-muted); max-width: 42ch; margin: 0 0 28px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: 15px; cursor: pointer; border: 1px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn-primary { background: linear-gradient(180deg, var(--gold-400), var(--gold-600)); color: #2a1c07; box-shadow: 0 10px 24px rgba(208,169,95,0.28); }
.btn-primary:hover { transform: translateY(-2px); color: #2a1c07; }
.btn-ghost { background: transparent; border-color: var(--gold-500); color: var(--gold-300); }
.btn-ghost:hover { background: rgba(208,169,95,0.10); color: var(--gold-300); }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); font-weight: 500; border: 1px solid var(--felt-line); border-radius: 30px; padding: 7px 15px; background: rgba(255,255,255,0.02); }
.badge svg { color: var(--gold-500); flex: none; }

.table-scene { position: relative; background: radial-gradient(80% 90% at 50% 40%, #17492e, #0b2c1b 75%); border: 1px solid var(--felt-line); border-radius: 20px; padding: 34px 28px; box-shadow: var(--shadow-deep); }
.hands { display: flex; justify-content: space-between; gap: 26px; }
.hand { flex: 1; text-align: center; }
.hand-label { font-family: var(--serif); letter-spacing: 4px; font-size: 15px; font-weight: 600; color: var(--gold-400); margin-bottom: 14px; }
.card-pair { display: flex; justify-content: center; gap: 10px; }
.pcard { width: 78px; height: 110px; background: var(--card-face); border-radius: 9px; box-shadow: 0 10px 22px rgba(0,0,0,0.4); position: relative; display: flex; align-items: center; justify-content: center; font-family: "Playfair Display", serif; color: #1c1c1c; }
.pcard.tilt-l { transform: rotate(-6deg); }
.pcard.tilt-r { transform: rotate(6deg); }
.pcard .rank-tl { position: absolute; top: 7px; left: 8px; font-size: 15px; font-weight: 700; line-height: 1; text-align: center; }
.pcard .pip { font-size: 34px; line-height: 1; }
.pcard .rank-tl small { display: block; font-size: 12px; }
.red { color: var(--banker-red); } .black { color: #1c1c1c; }
.chips { position: absolute; right: 22px; bottom: 20px; display: flex; }
.chip { width: 26px; height: 26px; border-radius: 50%; margin-left: -10px; border: 2px dashed rgba(255,255,255,0.55); box-shadow: 0 4px 8px rgba(0,0,0,.4); }
.chip.c1 { background: #1f7a4d; } .chip.c2 { background: #b8904a; } .chip.c3 { background: #1c1c1c; }
.table-caption { text-align: center; margin-top: 22px; font-family: var(--serif); letter-spacing: 4px; font-size: 15px; color: var(--gold-500); }

/* Table of contents */
.toc { border: 1px solid var(--felt-line); border-radius: 14px; background: rgba(255,255,255,0.02); padding: 18px 22px; margin: 0 auto; }
.toc .toc-label { font-family: var(--serif); color: var(--gold-300); font-size: 15px; margin-right: 6px; }
.toc ul { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; margin: 8px 0 0; padding: 0; }
.toc a { color: var(--text-muted); font-size: 14.5px; }
.toc a:hover { color: var(--gold-400); }

/* Sections */
section { padding: 64px 0; }
.section-alt { background: linear-gradient(180deg, var(--felt-850), var(--felt-900)); border-top: 1px solid var(--felt-line); border-bottom: 1px solid var(--felt-line); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 17px; margin: 0; }

.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; }
.about-table { background: radial-gradient(90% 100% at 50% 30%, #17492e, #0b2c1b); border: 1px solid var(--felt-line); border-radius: 18px; padding: 26px; box-shadow: var(--shadow-deep); }
.mini-hands { display: flex; justify-content: center; gap: 30px; }
.mini-hand { text-align: center; }
.mini-hand .box-label { font-family: var(--serif); letter-spacing: 2px; font-size: 14px; padding: 5px 0; margin-bottom: 12px; border-radius: 6px; color: #f4efe1; font-weight: 600; }
.mini-hand.player .box-label { background: linear-gradient(180deg,#2a6cc0,#1f4f96); }
.mini-hand.banker .box-label { background: linear-gradient(180deg,#b2403a,#8f302b); }
.mini-hand .card-pair .pcard { width: 58px; height: 82px; }
.mini-hand .card-pair .pcard .pip { font-size: 24px; }
.about-tie { text-align: center; margin-top: 22px; font-family: var(--serif); letter-spacing: 4px; color: var(--gold-500); font-size: 15px; }
.about-copy h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.about-copy p { color: var(--text-muted); font-size: 16.5px; margin: 0 0 14px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; list-style: none; padding: 0; margin: 0; }
.step { background: rgba(255,255,255,0.02); border: 1px solid var(--felt-line); border-radius: var(--radius); padding: 26px 18px; text-align: center; }
.step-num { width: 40px; height: 40px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 18px; color: #2a1c07; background: linear-gradient(180deg, var(--gold-400), var(--gold-600)); box-shadow: 0 6px 14px rgba(208,169,95,0.3); }
.step h3 { font-size: 17px; margin-bottom: 8px; color: var(--gold-300); }
.step p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Duo: values + bets */
.duo { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.panel { background: rgba(255,255,255,0.02); border: 1px solid var(--felt-line); border-radius: 18px; padding: 30px; }
.panel h2 { text-align: center; font-size: 25px; margin-bottom: 22px; }
table.values { width: 100%; border-collapse: collapse; font-size: 16px; }
table.values caption { text-align: left; color: var(--text-muted); font-size: 13.5px; margin-bottom: 10px; }
table.values th, table.values td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--felt-line); }
table.values thead th { background: #0a2114; color: var(--gold-300); font-family: var(--serif); font-weight: 600; }
table.values tbody td:last-child { color: var(--gold-300); font-weight: 600; }
.value-note { margin-top: 18px; display: flex; gap: 12px; align-items: flex-start; background: rgba(208,169,95,0.07); border: 1px solid var(--felt-line); border-radius: 12px; padding: 14px 16px; font-size: 14.5px; color: var(--text-muted); }
.value-note strong { color: var(--gold-300); }

.bet-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bet { background: var(--card-face); color: #1e2a20; border-radius: 16px; padding: 24px 18px; text-align: center; display: flex; flex-direction: column; }
.bet .icon { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; color: #fff; }
.bet.player .icon { background: #2a6cc0; } .bet.banker .icon { background: #c0392b; } .bet.tie .icon { background: #1f7a4d; }
.bet h3 { font-family: var(--serif); letter-spacing: 1px; font-size: 21px; margin-bottom: 10px; }
.bet.player h3 { color: #2a6cc0; } .bet.banker h3 { color: #c0392b; } .bet.tie h3 { color: #1f7a4d; }
.bet p { font-size: 14.5px; color: #43524a; margin: 0 0 16px; flex: 1; }
.bet .tag { font-size: 13px; font-weight: 700; padding-top: 12px; border-top: 1px dashed #c9c1ac; }
.bet.player .tag { color: #2a6cc0; } .bet.banker .tag { color: #c0392b; } .bet.tie .tag { color: #1f7a4d; }

/* Third card rule */
.tcr-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start; }
.tcr-copy h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.tcr-copy p { color: var(--text-muted); font-size: 16px; margin: 0 0 14px; }
.tcr-copy ul { color: var(--text-muted); font-size: 15.5px; padding-left: 20px; margin: 0 0 20px; }
.tcr-copy li { margin-bottom: 8px; }
.tcr-copy li strong { color: var(--gold-300); }
.chart-card { background: rgba(255,255,255,0.02); border: 1px solid var(--felt-line); border-radius: 18px; padding: 22px; }
.chart-title { text-align: center; font-family: var(--serif); color: var(--gold-300); font-size: 18px; margin-bottom: 16px; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.tableau { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 520px; }
table.tableau caption { caption-side: top; text-align: left; color: var(--text-muted); font-size: 12.5px; margin-bottom: 8px; }
table.tableau th, table.tableau td { padding: 9px 8px; text-align: center; border: 1px solid var(--felt-line); }
table.tableau thead th { background: #0a2114; color: var(--gold-300); font-family: var(--serif); font-weight: 600; }
table.tableau tbody th { background: #0a2114; color: var(--gold-300); font-weight: 600; }
table.tableau .draw { color: var(--draw-green); font-weight: 600; }
table.tableau .stand { color: var(--stand-amber); font-weight: 600; }
.chart-legend { display: flex; gap: 20px; justify-content: center; margin-top: 14px; font-size: 13px; color: var(--text-muted); }
.chart-legend span { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.draw { background: var(--draw-green); } .dot.stand { background: var(--stand-amber); }
.chart-note { text-align: center; font-size: 12.5px; color: var(--text-muted); margin-top: 12px; }

/* Variants */
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vcard { background: rgba(255,255,255,0.02); border: 1px solid var(--felt-line); border-radius: var(--radius); padding: 24px 22px; }
.vcard h3 { font-size: 18px; color: var(--gold-300); margin-bottom: 6px; }
.vcard .en { display: block; font-family: "Playfair Display", serif; font-size: 13px; letter-spacing: .5px; color: var(--gold-500); margin-bottom: 10px; font-style: italic; }
.vcard p { font-size: 14.5px; color: var(--text-muted); margin: 0; }

/* Comparison */
.compare-wrap { max-width: 860px; margin: 0 auto; }
table.compare { width: 100%; border-collapse: collapse; font-size: 15.5px; border: 1px solid var(--felt-line); border-radius: 14px; overflow: hidden; }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--felt-line); }
table.compare thead th { background: #0a2114; color: var(--gold-300); font-family: var(--serif); font-weight: 600; }
table.compare thead th:nth-child(2) { color: var(--gold-400); }
table.compare tbody th { color: var(--text); font-weight: 600; background: rgba(255,255,255,0.015); }
table.compare td { color: var(--text-muted); }
table.compare td.hl { color: var(--gold-300); font-weight: 600; }
table.compare tr:last-child th, table.compare tr:last-child td { border-bottom: none; }

/* Glossary */
.gloss-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 26px; }
.gloss-item { border-bottom: 1px solid var(--felt-line); padding: 12px 4px; }
.gloss-item dt { font-family: var(--serif); color: var(--gold-300); font-size: 16px; font-weight: 600; margin-bottom: 3px; }
.gloss-item dd { margin: 0; color: var(--text-muted); font-size: 14.5px; }

/* Strategy */
.strategy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.strat { background: rgba(255,255,255,0.02); border: 1px solid var(--felt-line); border-radius: var(--radius); padding: 24px 20px; }
.strat .s-icon { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; color: var(--gold-400); background: rgba(208,169,95,0.10); margin-bottom: 14px; }
.strat h3 { font-size: 17px; margin-bottom: 8px; color: var(--gold-300); }
.strat p { font-size: 14.5px; color: var(--text-muted); margin: 0; }
.myths { margin-top: 26px; background: rgba(200,81,74,0.07); border: 1px solid rgba(200,81,74,0.35); border-radius: 14px; padding: 22px 26px; }
.myths h3 { font-size: 18px; color: var(--gold-300); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.myths ul { margin: 0; padding-left: 20px; color: var(--text-muted); font-size: 15px; }
.myths li { margin-bottom: 8px; }
.myths li strong { color: var(--gold-300); }

/* Side bets */
.sidebet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sidebet { background: rgba(255,255,255,0.02); border: 1px solid var(--felt-line); border-radius: var(--radius); padding: 22px; }
.sidebet h3 { font-size: 17px; color: var(--gold-300); margin-bottom: 6px; }
.sidebet .pay { display: inline-block; font-size: 12.5px; color: var(--gold-400); border: 1px solid var(--felt-line); border-radius: 20px; padding: 2px 11px; margin-bottom: 10px; }
.sidebet p { font-size: 14.5px; color: var(--text-muted); margin: 0; }
.sidebet-note { margin-top: 20px; background: rgba(200,81,74,0.07); border: 1px solid rgba(200,81,74,0.35); border-radius: 12px; padding: 14px 18px; font-size: 14.5px; color: var(--text-muted); }
.sidebet-note strong { color: var(--gold-300); }

/* Roads */
.roads-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.road-card { background: rgba(255,255,255,0.02); border: 1px solid var(--felt-line); border-radius: 16px; padding: 22px; }
.road-card h3 { font-size: 17px; color: var(--gold-300); margin-bottom: 4px; }
.road-card .sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 14px; }
.road { display: flex; gap: 4px; background: #0a2114; border: 1px solid var(--felt-line); border-radius: 10px; padding: 10px; overflow-x: auto; }
.road-col { display: flex; flex-direction: column; gap: 4px; }
.cell { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 12.5px; font-weight: 700; flex: none; }
.bead.b { background: var(--banker-red); color: #fff; }
.bead.p { background: #2a6cc0; color: #fff; }
.bead.t { background: #1f7a4d; color: #fff; }
.ring { background: transparent; border: 2.5px solid; box-sizing: border-box; position: relative; }
.ring.b { border-color: var(--banker-red); }
.ring.p { border-color: #2a6cc0; }
.ring .tie::after { content: ""; position: absolute; left: 2px; right: 2px; top: 50%; height: 2px; background: var(--draw-green); transform: rotate(-45deg); }
.road-legend { display: flex; gap: 16px; margin-top: 12px; font-size: 12.5px; color: var(--text-muted); flex-wrap: wrap; }
.road-legend span { display: inline-flex; align-items: center; gap: 6px; }
.roads-note { margin-top: 20px; color: var(--text-muted); font-size: 14.5px; }
.roads-note p { margin: 0 0 10px; }
.roads-note strong { color: var(--gold-300); }

/* History & culture */
.history-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.history-copy h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.history-copy p { color: var(--text-muted); font-size: 16px; margin: 0 0 14px; }
.culture-card { background: rgba(208,169,95,0.06); border: 1px solid var(--felt-line); border-radius: 16px; padding: 26px; }
.culture-card h3 { font-size: 18px; color: var(--gold-300); margin-bottom: 6px; text-align: center; }
.culture-card .big8 { font-family: var(--serif); font-size: 52px; color: var(--gold-400); text-align: center; line-height: 1.1; margin: 4px 0 12px; }
.culture-card p { color: var(--text-muted); font-size: 14.5px; margin: 0 0 12px; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details.faq { background: rgba(255,255,255,0.02); border: 1px solid var(--felt-line); border-radius: 12px; overflow: hidden; }
details.faq summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; font-size: 16.5px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .chev { color: var(--gold-500); transition: transform .2s ease; flex: none; }
details.faq[open] summary .chev { transform: rotate(180deg); }
details.faq .faq-body { padding: 0 22px 20px; color: var(--text-muted); font-size: 15.5px; }

/* Footer */
.site-footer { background: var(--felt-900); border-top: 1px solid var(--felt-line); padding: 44px 0 32px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; padding-bottom: 26px; border-bottom: 1px solid var(--felt-line); }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: 22px; list-style: none; margin: 0; padding: 0; }
.footer-nav a { color: var(--text-muted); font-size: 14.5px; }
.footer-nav a:hover { color: var(--gold-400); }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.04); border: 1px solid var(--felt-line); color: var(--text); }
.socials a:hover { color: var(--gold-400); border-color: var(--gold-500); }
.footer-legal { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-muted); }
.footer-legal .age { display: inline-block; border: 1px solid var(--gold-500); color: var(--gold-400); border-radius: 20px; padding: 2px 12px; font-weight: 600; margin-bottom: 10px; }
.footer-legal .disc { margin-top: 6px; max-width: 70ch; margin-left: auto; margin-right: auto; }

/* ============================================================
   Shared cluster-page chrome (breadcrumb, page hero, prose, hubs)
   ============================================================ */
.breadcrumb { padding: 22px 0 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; font-size: 13.5px; color: var(--text-muted); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: "\203a"; color: var(--gold-600); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb [aria-current="page"] { color: var(--gold-300); }

.page-hero { padding: 34px 0 8px; }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(28px, 4.2vw, 44px); font-weight: 700; letter-spacing: .5px; margin-bottom: 16px; }
.page-hero .lede { color: var(--text-muted); font-size: 18px; max-width: 62ch; margin: 0; }

.prose { max-width: 900px; margin: 0 auto; }
.prose h2 { font-size: clamp(23px, 2.8vw, 30px); margin: 42px 0 14px; }
.prose h3 { font-size: 19px; color: var(--gold-300); margin: 26px 0 10px; }
.prose p { color: var(--text-muted); font-size: 16.5px; margin: 0 0 15px; }
.prose ul, .prose ol { color: var(--text-muted); font-size: 16px; padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose li strong, .prose p strong { color: var(--gold-300); }
.prose .lead { font-size: 17.5px; color: var(--text); }

/* Read-more callout: pillar summary -> deep page */
.readmore { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; background: rgba(208,169,95,0.07); border: 1px solid var(--felt-line); border-radius: 14px; padding: 18px 22px; }
.readmore p { margin: 0; color: var(--text-muted); font-size: 15px; }
.readmore p strong { color: var(--gold-300); }
.readmore .btn { flex: none; }

/* Hub grid: pillar -> cluster pages */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hub-card { display: block; background: rgba(255,255,255,0.02); border: 1px solid var(--felt-line); border-radius: var(--radius); padding: 24px 22px; transition: border-color .15s ease, transform .15s ease; }
.hub-card:hover { border-color: var(--gold-500); transform: translateY(-2px); }
.hub-card h3 { font-size: 18px; color: var(--gold-300); margin-bottom: 8px; }
.hub-card p { font-size: 14.5px; color: var(--text-muted); margin: 0; }
.hub-card .go { display: inline-block; margin-top: 12px; color: var(--gold-400); font-size: 14px; font-weight: 600; }

/* Neutral info / warning callout */
.note-box { background: rgba(255,255,255,0.02); border: 1px solid var(--felt-line); border-left: 3px solid var(--gold-500); border-radius: 12px; padding: 16px 20px; margin: 20px 0; color: var(--text-muted); font-size: 15.5px; }
.note-box.warn { border-left-color: var(--banker-red); background: rgba(200,81,74,0.07); }
.note-box strong { color: var(--gold-300); }

/* Related links row at page foot */
.related { max-width: 900px; margin: 40px auto 0; border-top: 1px solid var(--felt-line); padding-top: 24px; }
.related h2 { font-size: 20px; margin-bottom: 16px; }
.related ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; list-style: none; margin: 0; padding: 0; }
.related a { display: block; border: 1px solid var(--felt-line); border-radius: 12px; padding: 14px 18px; color: var(--text); font-weight: 600; font-size: 15px; background: rgba(255,255,255,0.02); }
.related a:hover { border-color: var(--gold-500); color: var(--gold-300); }
.related a small { display: block; font-weight: 400; color: var(--text-muted); font-size: 13px; margin-top: 4px; }

/* Content images */
.hero-img { width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--felt-line); box-shadow: var(--shadow-deep); display: block; }
.page-figure { margin: 26px auto 8px; max-width: 900px; }
.page-figure img { width: 100%; height: auto; border-radius: 14px; border: 1px solid var(--felt-line); box-shadow: 0 14px 34px rgba(0,0,0,0.4); display: block; }
.page-figure figcaption { margin-top: 10px; font-size: 13.5px; color: var(--text-muted); text-align: center; }

@media (max-width: 860px) {
  .hub-grid, .related ul { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .hero-inner, .about-grid, .duo, .tcr-grid, .roads-grid, .history-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .vgrid, .sidebet-grid { grid-template-columns: repeat(2, 1fr); }
  .strategy-grid { grid-template-columns: repeat(2, 1fr); }
  .table-scene { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 560px) {
  section { padding: 48px 0; }
  .bet-cards, .steps, .vgrid, .strategy-grid, .gloss-grid, .sidebet-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
