.eyebrow { margin: 0 0 1rem; color: #087047; font-size: .74rem; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.home-hero .eyebrow, .section-shell--deep .eyebrow, .sports-scoreboard .eyebrow, .core-page--casino .eyebrow { color: var(--accent-green); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: .72rem 1.15rem; border: 1px solid transparent; border-radius: var(--radius-small); font-size: .88rem; font-weight: 720; text-decoration: none; transition: transform .18s ease, background .18s ease, color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button--green { background: var(--accent-green); color: #052318; }
.button--green:hover { background: #28d985; color: #052318; }
.button--outline { border-color: #7b918b; color: var(--text-main); }
.button--outline-light { border-color: rgba(255,255,255,.4); color: #fff; }
.section-shell { padding: clamp(4rem, 7vw, 7.5rem) 0; }
.section-shell--white { background: var(--bg-white); }
.section-shell--paper { background: var(--bg-paper); }
.section-shell--deep { background: var(--bg-deep); color: var(--text-on-dark); }
.section-shell--deep h2, .section-shell--deep h3 { color: var(--text-on-dark); }
.section-shell--amber { background: #fff8e9; }
.section-intro { max-width: 760px; margin-bottom: 2.3rem; }
.section-intro p { color: var(--text-soft); }
.section-shell--deep .section-intro p { color: #bcd0cb; }
.editorial-image img { width: 100%; border-radius: var(--radius-medium); object-fit: cover; }
.editorial-image--flush img { border-radius: 0; }
.table-scroll { overflow-x: auto; border: 1px solid var(--border-light); border-radius: var(--radius-small); background: #fff; }
.table-scroll table { min-width: 680px; border: 0; }
.table-scroll caption { padding: .8rem 1rem; text-align: left; color: var(--text-soft); font-size: .8rem; }
.table-scroll th:first-child, .table-scroll td:first-child { border-left: 0; }
.table-scroll th:last-child, .table-scroll td:last-child { border-right: 0; }
.risk-strip { padding: 1.2rem 1.4rem; border-left: 5px solid var(--accent-coral); background: #fff0f1; color: #522c31; }
.amber-note { padding: 1.2rem 1.4rem; border: 1px solid #e9cf96; border-radius: var(--radius-small); background: #fff8e8; color: #4e3d1d; }
.green-note { padding: 1.2rem 1.4rem; border: 1px solid #a8dcc3; border-radius: var(--radius-small); background: #eaf8f1; }
.related-topics { width: min(calc(100% - 36px), var(--content-width)); margin: 5rem auto 0; padding-top: 2rem; border-top: 1px solid var(--border-light); }
.related-topics h2 { font-size: 1.4rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-grid a { display: block; min-height: 100%; padding: 1.2rem; border: 1px solid var(--border-light); border-radius: var(--radius-small); background: #fff; color: var(--text-main); font-weight: 700; text-decoration: none; }
.related-grid a:hover { border-color: var(--accent-green); box-shadow: 0 10px 28px rgba(7,31,34,.07); }
.step-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--border-light); border-radius: var(--radius-medium); background: var(--border-light); counter-reset: flow; }
.step-flow > div { position: relative; min-height: 160px; padding: 1.25rem; background: #fff; counter-increment: flow; }
.step-flow > div::before { content: "0" counter(flow); display: block; margin-bottom: 1rem; color: var(--accent-green); font-weight: 800; letter-spacing: .08em; }
.step-flow h3 { font-size: 1rem; }
.three-column-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.three-column-list > div { padding: 1.3rem; border-top: 4px solid var(--accent-green); background: #fff; }
.three-column-list > div:nth-child(2) { border-color: var(--accent-amber); }
.three-column-list > div:nth-child(3) { border-color: var(--accent-coral); }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.8rem; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .5em; width: .7rem; height: .35rem; border-left: 2px solid var(--accent-green); border-bottom: 2px solid var(--accent-green); transform: rotate(-45deg); }
.accordion-group { display: grid; gap: .75rem; }
.faq-item { border: 1px solid var(--border-light); border-radius: var(--radius-small); background: #fff; }
.faq-item > summary { display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: .9rem 1.1rem; cursor: pointer; font-weight: 720; list-style: none; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after { content: "+"; color: #0b6d4b; font-size: 1.25rem; }
.faq-item[open] > summary::after { content: "−"; }
.faq-item > h3 { margin: 0; font-size: 1rem; }
.faq-question { position: relative; width: 100%; min-height: 52px; padding: .9rem 3rem .9rem 1.1rem; border: 0; border-radius: var(--radius-small); background: #fff; color: var(--text-main); font: inherit; font-weight: 720; text-align: left; cursor: pointer; }
.faq-question::after { content: "−"; position: absolute; top: 50%; right: 1.1rem; color: #0b6d4b; font-size: 1.25rem; transform: translateY(-50%); }
.faq-question[aria-expanded="false"]::after { content: "+"; }
.faq-question:focus-visible { outline: 3px solid var(--accent-green); outline-offset: 3px; }
.faq-answer { padding: 0 1.1rem 1rem; color: #3f5052; }
.faq-answer p:last-child { margin-bottom: 0; }
.data-chip { display: inline-flex; align-items: center; min-height: 34px; padding: .35rem .65rem; border: 1px solid var(--border-light); border-radius: 999px; background: #fff; font-size: .78rem; font-weight: 700; }
.split-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.metric { padding: 1rem; border: 1px solid var(--border-light); border-radius: var(--radius-small); background: #fff; }
.metric b { display: block; color: #0b6d4b; font-size: .75rem; letter-spacing: .08em; }
.metric span { display: block; margin-top: .5rem; font-weight: 700; }
.sources-reviewed { margin-top: 3rem; padding: 1.5rem; border: 1px solid var(--border-light); background: #fff; }
.sources-reviewed h2 { font-size: 1.35rem; }
.sources-reviewed li { margin-bottom: .7rem; }
.sources-reviewed a { overflow-wrap: anywhere; }
.editorial-addendum { width: min(calc(100% - 36px), 960px); margin: 5rem auto 0; padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--border-light); border-radius: var(--radius-medium); background: #fff; color: var(--text-main); box-shadow: 0 12px 36px rgba(7,31,34,.07); }
.editorial-addendum p { color: #334447; }
.editorial-addendum strong { color: #123438; }
.editorial-addendum .depth-note, .editorial-addendum .range-note { padding: 1rem; border-left: 4px solid var(--accent-amber); background: #fff8e8; color: #463b28; }
.brand-observation { margin: 2.5rem 0; padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid #c9d8d3; border-left: 5px solid var(--accent-green); background: #f7faf8; color: var(--text-main); }
.brand-observation h2 { margin-top: 0; }
.brand-observation dl { display: grid; grid-template-columns: minmax(150px, 210px) minmax(0, 1fr); gap: .7rem 1.25rem; margin: 0; }
.brand-observation dt { color: #0b4f54; font-weight: 800; }
.brand-observation dd { margin: 0; }
.contact-route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.contact-route-grid > div { padding: 1.25rem; border-top: 4px solid var(--accent-green); background: #f7faf8; }
.contact-route-grid span { display: block; color: var(--text-soft); font-size: .82rem; }
