/*
Theme Name: FairPlay Variant 2
Theme URI: https://fairplay-live.net/
Author: FairPlay
Description: Variant 2 — original copy, lightly revised. Self-contained WordPress theme for FairPlay — sports betting and online casino for Indian players. Bundles the brand imagery and builds every page, menu and SEO field on activation. Black, orange and green palette, Montserrat, mobile-first.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fairplay
Tags: dark, custom-menu, responsive, one-column
*/

/* ==========================================================================
   1. Brand tokens
   ========================================================================== */
:root {
	--black:        #000000;
	--bg:           #000000;
	--bg-alt:       #0d0d0d;
	--surface:      #2f2f2f;
	--surface-2:    #3a3a3a;
	--surface-3:    #242424;
	--line:         #4a4a4a;
	--line-soft:    #333333;

	--text:         #ffffff;
	--text-2:       #d8d8d8;
	--muted:        #a5a5a5;

	--orange:       #ef6a20;
	--orange-dark:  #c46919;
	--orange-light: #f58542;

	--green:        #008000;
	--green-dark:   #006b00;
	--green-light:  #0aa10a;

	--radius:       8px;
	--radius-sm:    6px;

	--wrap:         1300px;
	--wrap-narrow:  1080px;
	--gutter:       14px;

	--sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

	--head-h:       74px;
	--bonusbar-h:   72px;
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--head-h) + 14px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	padding-bottom: var(--bonusbar-h);
	background: var(--bg);
	color: var(--text);
	font-family: var(--sans);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--orange); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--orange-light); text-decoration: underline; }

h1, h2, h3, h4, h5 {
	margin: 0 0 .65em;
	font-weight: 700;
	line-height: 1.24;
	color: var(--text);
	text-transform: uppercase;
}
h1 { font-size: clamp(1.65rem, 1.15rem + 2.3vw, 2.7rem); letter-spacing: .005em; }
h2 { font-size: clamp(1.35rem, 1.1rem + 1.2vw, 1.95rem); }
h3 { font-size: clamp(1.08rem, 1rem + .45vw, 1.28rem); }
h4 { font-size: 1rem; }

p { margin: 0 0 1.1em; color: var(--text-2); }
ul, ol { color: var(--text-2); padding-left: 1.3em; }
li { margin-bottom: .5em; }
strong { color: var(--text); font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--line-soft); margin: 2.4rem 0; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}
.skip-link:focus {
	position: fixed; top: 10px; left: 10px; z-index: 999;
	width: auto; height: auto; clip: auto; margin: 0;
	padding: 10px 18px;
	background: var(--orange); color: #fff;
	border-radius: var(--radius); font-weight: 700;
}

/* ==========================================================================
   3. Layout
   ========================================================================== */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding: clamp(34px, 4.5vw, 58px) 0; }
.section--alt { background: var(--bg-alt); }

.section__head { margin-bottom: 26px; }
.section__head p { font-size: 1rem; }
.section__head--center { text-align: center; }
.section__head--center p { max-width: 66ch; margin-inline: auto; }

/* The orange rule under a heading — the brand's signature divider. */
.rule {
	display: block;
	width: 92px; height: 4px;
	margin: 14px 0 20px;
	background: var(--orange);
	border-radius: 2px;
}
.section__head--center .rule,
.rule--center { margin-inline: auto; }

.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

/* ==========================================================================
   4. Buttons
   ========================================================================== */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 15px 30px;
	border: 2px solid transparent; border-radius: var(--radius);
	font-family: var(--sans);
	font-size: .95rem; font-weight: 700; line-height: 1.1;
	text-transform: uppercase; letter-spacing: .02em;
	cursor: pointer; text-align: center; white-space: nowrap;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; }

.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: var(--orange-dark); color: #fff; }

.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); color: #fff; }

.btn--outline { background: transparent; border-color: var(--line); color: #fff; }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); background: transparent; }

/* WhatsApp — brand green #25d366 with near-black text, which clears WCAG AA
   comfortably (about 9:1) unlike white-on-green. */
.btn--whatsapp { background: #25d366; color: #04240f; }
.btn--whatsapp:hover { background: #1da851; color: #04240f; }
.btn--whatsapp svg { flex: none; }

/* Floating WhatsApp button, bottom-right.
   Sits above the sticky bonus bar; when that bar is dismissed it drops to the
   bottom edge. z-index clears the bar (95) but stays under the nav drawer. */
.wa-float {
	position: fixed;
	right: 16px;
	bottom: calc(var(--bonusbar-h) + 16px);
	z-index: 96;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	background: #25d366;
	color: #04240f;
	border-radius: 50%;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .45);
	transition: background-color .15s ease, transform .15s ease, bottom .2s ease;
}
.wa-float:hover,
.wa-float:focus-visible {
	background: #1da851;
	color: #04240f;
	transform: translateY(-2px);
	text-decoration: none;
}
.wa-float svg { display: block; }

/* Label is for assistive tech only — the icon and title carry the meaning. */
.wa-float__label {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

body.bonusbar-hidden .wa-float { bottom: 16px; }

.btn--sm { padding: 10px 20px; font-size: .82rem; }
.btn--wide { width: 100%; }

/* ==========================================================================
   5. Age strip
   ========================================================================== */
.topstrip {
	background: #1a1a1a;
	border-bottom: 1px solid var(--line-soft);
	font-size: .74rem; font-weight: 600; color: var(--muted);
}
.topstrip .wrap {
	display: flex; align-items: center; justify-content: center; gap: 9px;
	min-height: 32px; text-align: center;
}
.topstrip__age {
	flex: none; display: grid; place-items: center;
	width: 20px; height: 20px; border-radius: 50%;
	background: #d32f2f; color: #fff; font-size: .6rem; font-weight: 800;
}

/* ==========================================================================
   6. Header
   ========================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 90;
	background: var(--black);
	border-bottom: 1px solid var(--line-soft);
}

.header__inner {
	display: flex; align-items: center; gap: 16px;
	min-height: var(--head-h);
}

/* Wordmark: "fair" white, "play" green, orange rule + tagline underneath. */
.brand { display: inline-block; flex: none; line-height: 1; }
.brand:hover { text-decoration: none; }
.brand__word {
	display: block;
	font-size: 1.85rem; font-weight: 800; letter-spacing: -.035em;
	color: #fff; text-transform: lowercase;
}
.brand__word span { color: var(--green-light); }
.brand__rule {
	display: block; width: 100%; height: 3px; margin: 3px 0 3px;
	background: linear-gradient(90deg, var(--green-light) 0 55%, var(--orange) 55% 100%);
	border-radius: 2px;
}
.brand__tag {
	display: block;
	font-size: .5rem; font-weight: 700; letter-spacing: .085em;
	color: var(--muted); text-transform: uppercase; white-space: nowrap;
}

.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav li { margin: 0; }
.nav a {
	display: block; padding: 10px 14px; border-radius: var(--radius);
	color: #fff; font-size: .84rem; font-weight: 700; text-transform: uppercase; letter-spacing: .02em;
}
.nav a:hover { color: var(--orange); background: #1a1a1a; text-decoration: none; }
.nav .current-menu-item > a { color: var(--orange); }

.header__cta { display: flex; align-items: center; gap: 8px; flex: none; }

.nav-toggle {
	display: none; flex: none;
	width: 46px; height: 46px; padding: 0;
	background: var(--orange); border: 0; border-radius: var(--radius);
	cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
	display: block; position: relative;
	width: 20px; height: 2.5px; margin-inline: auto;
	background: #fff; border-radius: 2px;
	transition: transform .2s ease, opacity .15s ease;
}
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   7. Hero
   ========================================================================== */
.hero {
	padding: clamp(30px, 4vw, 54px) 0 clamp(30px, 4vw, 50px);
	background: var(--black);
	text-align: center;
}
.hero__actions--top {
	display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
	margin-bottom: clamp(26px, 4vw, 44px);
}
.hero h1 { margin-bottom: 0; }
.hero .rule { margin: 18px auto 22px; }
.hero__lede {
	max-width: 74ch; margin-inline: auto;
	font-size: clamp(.97rem, .93rem + .2vw, 1.08rem);
	color: var(--text-2);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

.hero__trust {
	display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center;
	margin-top: 26px;
	font-size: .8rem; font-weight: 600; color: var(--muted);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust svg { flex: none; color: var(--orange); }

/* ==========================================================================
   8. Spec / data tables (orange header, striped rows)
   ========================================================================== */
.tablewrap { overflow-x: auto; margin-bottom: 22px; }
table {
	width: 100%; min-width: 520px;
	border-collapse: collapse;
	background: var(--surface);
}
caption {
	padding: 0 0 12px;
	text-align: left; font-size: .82rem; color: var(--muted);
}
thead th {
	padding: 15px 20px;
	background: var(--orange);
	color: #fff; font-size: .92rem; font-weight: 700;
	text-align: left; text-transform: none;
	white-space: nowrap;
}
tbody th, tbody td {
	padding: 14px 20px;
	border-bottom: 1px solid #454545;
	font-size: .93rem; text-align: left; vertical-align: top;
}
tbody th { font-weight: 700; color: #fff; white-space: nowrap; }
tbody td { color: var(--text-2); font-weight: 500; }
tbody tr:nth-child(even) { background: var(--surface-2); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }

/* Two-column "key facts" variant with a bold label column. */
.table--facts tbody td:first-child { font-weight: 700; color: #fff; width: 42%; }

/* ==========================================================================
   9. Cards
   ========================================================================== */
.card {
	padding: 22px;
	height: 100%;
	background: var(--surface);
	border-radius: var(--radius);
	border-top: 3px solid var(--orange);
}
.card--green { border-top-color: var(--green-light); }
.card h3 { margin-bottom: .55em; font-size: 1.05rem; }
.card p { font-size: .93rem; }
.card p:last-child { margin-bottom: 0; }
.card__icon { margin-bottom: 13px; color: var(--orange); }
.card--green .card__icon { color: var(--green-light); }
.card__link {
	display: inline-block; margin-top: 12px;
	font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
	color: var(--orange);
}
a.card { display: block; color: inherit; }
a.card:hover { text-decoration: none; }
a.card:hover h3 { color: var(--orange); }

/* Numbered steps */
.steps { counter-reset: step; margin: 0; padding: 0; list-style: none; }
.step { position: relative; padding-left: 56px; margin-bottom: 22px; }
.step:last-child { margin-bottom: 0; }
.step::before {
	counter-increment: step; content: counter(step);
	position: absolute; left: 0; top: 2px;
	display: grid; place-items: center;
	width: 38px; height: 38px;
	background: var(--orange); border-radius: var(--radius);
	color: #fff; font-weight: 800; font-size: 1rem;
}
.step h4 { margin-bottom: .35em; }
.step p { margin-bottom: 0; font-size: .92rem; }

/* Tag list */
.pills { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.pills li {
	margin: 0; padding: 9px 17px;
	background: var(--surface); border-radius: var(--radius);
	font-size: .84rem; font-weight: 700; color: #fff;
	text-transform: uppercase; letter-spacing: .02em;
}

/* Check list */
.checks { list-style: none; padding: 0; margin: 0; }
.checks li { position: relative; padding-left: 28px; margin-bottom: .65em; }
.checks li::before {
	content: ""; position: absolute; left: 0; top: .5em;
	width: 14px; height: 14px;
	background-color: transparent;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ef6a20' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 8.4l3.4 3.4L13.5 4.2'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 14px;
}

/* ==========================================================================
   9b. Images
   ========================================================================== */

/* Header / footer logo */
.brand img,
.custom-logo { width: auto; height: 50px; }

/* Hero illustration */
.hero__media { margin: clamp(22px, 3vw, 34px) auto 0; max-width: 780px; }
.hero__media img { width: 100%; border-radius: var(--radius); }

/* Section split: illustration beside copy */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(22px, 3.5vw, 46px);
	align-items: center;
}
.split--flip .split__media { order: 2; }
.split__media img { width: 100%; border-radius: var(--radius); }
.split__body > *:first-child { margin-top: 0; }
.split__body > *:last-child { margin-bottom: 0; }

/* Standalone figure */
.figure { margin: 1.8em 0; }
.figure img { width: 100%; border-radius: var(--radius); }
.figure figcaption {
	margin-top: 9px;
	font-size: .8rem; color: var(--muted); text-align: center;
}

/* Feature icons (the brand's SVG icon set) */
.iconrow {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px; margin: 0; padding: 0; list-style: none;
}
.iconrow li {
	display: flex; align-items: center; gap: 13px; margin: 0;
	padding: 16px 18px;
	background: var(--surface); border-radius: var(--radius);
}
.iconrow img { width: 40px; height: 40px; flex: none; }
.iconrow strong { display: block; font-size: .92rem; }
.iconrow span { font-size: .78rem; color: var(--muted); }

/* Payment provider logo strip */
.logos {
	display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
	margin: 0; padding: 0; list-style: none;
}
/* The payment marks are white/light artwork drawn for a dark UI — several are
   pure white line art, so they vanish on a white tile. Keep the tiles dark. */
.logos li {
	margin: 0; padding: 14px 20px;
	background: var(--surface); border-radius: var(--radius);
	display: grid; place-items: center;
	min-width: 118px; min-height: 58px;
}
.logos img { max-height: 30px; width: auto; }

/* App screenshot gallery */
.shots {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px; margin: 0; padding: 0; list-style: none;
}
.shots li { margin: 0; }
.shots img {
	width: 100%; border-radius: var(--radius);
	background: var(--surface);
}
.shots figcaption {
	margin-top: 7px;
	font-size: .74rem; font-weight: 600; color: var(--muted);
	text-align: center; text-transform: uppercase; letter-spacing: .04em;
}

/* Footer trust marks */
.trustmarks { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin: 0; padding: 0; list-style: none; }
.trustmarks li { margin: 0; }
.trustmarks img { height: 40px; width: auto; opacity: .85; }

/* ==========================================================================
   10. FAQ accordion
   ========================================================================== */
.faq { display: grid; gap: 10px; }
.faq__item { background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.faq__q {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 16px 20px; cursor: pointer; list-style: none;
	font-size: .97rem; font-weight: 700; color: #fff;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
	content: "+"; flex: none;
	display: grid; place-items: center;
	width: 26px; height: 26px;
	background: var(--orange); border-radius: 4px;
	font-size: 1.15rem; font-weight: 700; color: #fff; line-height: 1;
}
.faq__item[open] .faq__q { background: var(--surface-2); }
.faq__item[open] .faq__q::after { content: "\2212"; }
.faq__q:hover { background: var(--surface-2); }
.faq__a { padding: 4px 20px 18px; }
.faq__a p { font-size: .93rem; }
.faq__a p:last-child { margin-bottom: 0; }

/* ==========================================================================
   11. Callouts
   ========================================================================== */
.callout {
	padding: 16px 20px; margin: 1.6em 0;
	background: var(--surface);
	border-left: 4px solid var(--orange);
	border-radius: 0 var(--radius) var(--radius) 0;
}
.callout--green { border-left-color: var(--green-light); }
.callout p { font-size: .92rem; }
.callout p:last-child { margin-bottom: 0; }
.callout__icon { display: none; }

/* ==========================================================================
   12. CTA band
   ========================================================================== */
.cta {
	padding: clamp(28px, 4vw, 46px) clamp(18px, 3vw, 40px);
	background: var(--surface);
	border-radius: var(--radius);
	border-top: 4px solid var(--orange);
	text-align: center;
}
.cta h2 { margin-bottom: .4em; }
.cta p { max-width: 62ch; margin-inline: auto; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }
.cta__note { margin-top: 16px; font-size: .76rem; color: var(--muted); }

/* ==========================================================================
   13. Page content
   ========================================================================== */
.page-hero {
	padding: clamp(28px, 3.5vw, 46px) 0 clamp(18px, 2.5vw, 26px);
	background: var(--bg-alt);
	border-bottom: 1px solid var(--line-soft);
}
.page-hero h1 { margin-bottom: 0; }
.page-hero p { max-width: 68ch; margin-bottom: 0; font-size: 1rem; }
.page-hero .rule { margin: 14px 0 16px; }

.breadcrumbs { margin-bottom: 14px; font-size: .78rem; font-weight: 600; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span { margin: 0 7px; opacity: .5; }

.entry { padding: clamp(28px, 3.5vw, 48px) 0 clamp(38px, 5vw, 64px); }
.entry__body > *:first-child { margin-top: 0; }
.entry__body h2 {
	margin-top: 1.9em; padding-top: .55em;
	border-top: 1px solid var(--line-soft);
}
.entry__body > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.entry__body h3 { margin-top: 1.6em; color: var(--orange); }
.entry__body ul, .entry__body ol { margin-bottom: 1.2em; }
.entry__body img { border-radius: var(--radius); margin: 1.4em 0; }
.entry__body blockquote {
	margin: 1.6em 0; padding: 16px 22px;
	background: var(--surface); border-left: 4px solid var(--orange);
	border-radius: 0 var(--radius) var(--radius) 0;
}
.entry__body blockquote p:last-child { margin-bottom: 0; }
.entry__body code {
	padding: 2px 6px; background: var(--surface-2);
	border-radius: 4px; font-size: .88em; color: var(--orange-light);
}

.toc {
	padding: 18px 22px; margin-bottom: 30px;
	background: var(--surface); border-radius: var(--radius);
	border-left: 4px solid var(--orange);
}
.toc h2 {
	margin: 0 0 .8em; padding: 0; border: 0;
	font-size: .82rem; letter-spacing: .1em; color: #fff;
}
.toc ol { margin: 0; padding-left: 1.2em; columns: 2; column-gap: 30px; }
.toc li { margin-bottom: .4em; break-inside: avoid; }
.toc a { color: var(--text-2); font-size: .89rem; font-weight: 600; }
.toc a:hover { color: var(--orange); }

/* ==========================================================================
   14. Posts
   ========================================================================== */
.postcard {
	display: flex; flex-direction: column; height: 100%;
	background: var(--surface); border-radius: var(--radius); overflow: hidden;
	border-top: 3px solid var(--orange);
}
.postcard__thumb { aspect-ratio: 16 / 9; background: var(--surface-2); overflow: hidden; }
.postcard__thumb img { width: 100%; height: 100%; object-fit: cover; }
.postcard__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.postcard__meta { font-size: .74rem; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.postcard h3 { font-size: 1rem; margin-bottom: .5em; }
.postcard h3 a { color: #fff; }
.postcard h3 a:hover { color: var(--orange); text-decoration: none; }
.postcard p { font-size: .89rem; margin-bottom: 0; }

.pagination { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 36px; }
.pagination .page-numbers {
	display: grid; place-items: center;
	min-width: 40px; height: 40px; padding: 0 12px;
	background: var(--surface); border-radius: var(--radius);
	color: #fff; font-size: .88rem; font-weight: 700;
}
.pagination .page-numbers:hover { background: var(--surface-2); color: var(--orange); text-decoration: none; }
.pagination .current { background: var(--orange); color: #fff; }

/* ==========================================================================
   15. Sticky bonus bar
   ========================================================================== */
.bonusbar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
	background: var(--surface);
	border-top: 1px solid var(--line);
}
.bonusbar__inner {
	display: flex; align-items: center; gap: 14px;
	min-height: var(--bonusbar-h);
	padding-block: 10px;
}
.bonusbar__icon {
	flex: none; display: grid; place-items: center;
	width: 48px; height: 48px;
	background: var(--orange); border-radius: var(--radius);
	color: #fff;
}
.bonusbar__text { flex: 1; min-width: 0; line-height: 1.3; }
.bonusbar__headline {
	display: block;
	font-size: 1.02rem; font-weight: 800; color: #fff; text-transform: uppercase;
}
.bonusbar__sub { display: block; font-size: .8rem; font-weight: 500; color: var(--muted); }
.bonusbar .btn { flex: none; }
.bonusbar__close {
	flex: none; width: 30px; height: 30px; padding: 0;
	background: transparent; border: 0; cursor: pointer;
	color: var(--muted); font-size: 1.3rem; line-height: 1;
}
.bonusbar__close:hover { color: #fff; }
body.bonusbar-hidden { padding-bottom: 0; }
body.bonusbar-hidden .bonusbar { display: none; }

/* ==========================================================================
   16. Footer
   ========================================================================== */
.site-footer {
	background: #0a0a0a;
	border-top: 1px solid var(--line-soft);
	padding: clamp(32px, 4vw, 50px) 0 24px;
}
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 32px; }
.footer__about p { font-size: .86rem; margin: 16px 0 0; max-width: 40ch; }
.site-footer h4 {
	margin-bottom: 1.1em;
	font-size: .78rem; letter-spacing: .1em; color: var(--orange);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55em; }
.site-footer a { color: var(--text-2); font-size: .88rem; font-weight: 500; }
.site-footer a:hover { color: var(--orange); }

.footer__licence {
	display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
	padding: 20px 0;
	border-top: 1px solid var(--line-soft);
	border-bottom: 1px solid var(--line-soft);
	font-size: .78rem; color: var(--muted);
}
.footer__licence p { margin: 0; font-size: .78rem; }
.footer__age {
	flex: none; display: grid; place-items: center;
	width: 38px; height: 38px;
	border: 2px solid #d32f2f; border-radius: 50%;
	color: #ff6b6b; font-size: .74rem; font-weight: 800;
}

.footer__bottom {
	display: flex; flex-wrap: wrap; gap: 10px;
	justify-content: space-between; align-items: center;
	padding-top: 20px; font-size: .78rem; color: var(--muted);
}
.footer__bottom p { margin: 0; font-size: .78rem; }

/* ==========================================================================
   17. Responsive
   ========================================================================== */
@media (max-width: 980px) {
	.footer__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

@media (max-width: 860px) {
	.split { grid-template-columns: 1fr; }
	.split--flip .split__media { order: 0; }
	.split__media { max-width: 560px; margin-inline: auto; }
}

@media (max-width: 900px) {
	.nav-toggle { display: block; }
	.header__cta .btn { display: none; }

	/* .nav goes position:fixed below, so its margin-left:auto stops pushing
	   anything. Move the auto margin onto the CTA group to keep the toggle
	   pinned to the right edge. */
	.header__cta { margin-left: auto; }

	.nav {
		position: fixed; inset: var(--head-h) 0 0; z-index: 80;
		margin: 0; padding: 16px var(--gutter) 40px;
		background: var(--black);
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform .24s ease;
		visibility: hidden;
	}
	.nav.is-open { transform: translateX(0); visibility: visible; }
	.nav ul { flex-direction: column; align-items: stretch; gap: 0; }
	.nav a { padding: 16px 4px; font-size: 1rem; border-radius: 0; }
	.nav li + li a { border-top: 1px solid var(--line-soft); }
}

@media (max-width: 620px) {
	/* Keep the compliance strip to a single line on phones. */
	.topstrip__more { display: none; }
	.topstrip { font-size: .7rem; }

	.toc ol { columns: 1; }
	.footer__grid { grid-template-columns: 1fr; }
	.hero__actions .btn,
	.cta__actions .btn { width: 100%; }
	.bonusbar__sub { display: none; }
	.bonusbar__headline { font-size: .9rem; }
	.bonusbar .btn { padding: 12px 16px; font-size: .78rem; }
	.bonusbar__icon { width: 42px; height: 42px; }
	.step { padding-left: 48px; }
	.step::before { width: 34px; height: 34px; font-size: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}
