/* ====================================================================
   Babu88 India — main stylesheet
   Tokens: Pitch Black / Floodlight Gold / Strikers Magenta / Pitch Green
   Type: Anton (display) + Manrope (body) + Space Mono (data/odds)
   ==================================================================== */

:root {
	--ink: #0b0c10;
	--panel: #15171c;
	--panel-2: #1b1e25;
	--border: rgba(244, 241, 232, 0.09);
	--gold: #f2b90c;
	--gold-2: #ffd75e;
	--magenta: #b83a82;
	--green: #1e8449;
	--chalk: #f4f1e8;
	--muted: #9aa0ac;

	--font-display: 'Anton', sans-serif;
	--font-body: 'Manrope', system-ui, sans-serif;
	--font-mono: 'Space Mono', monospace;

	--radius: 14px;
	--radius-sm: 8px;
	--container: 1140px;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--ink);
	color: var(--chalk);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; margin: 0 0 .5em; letter-spacing: .01em; }
p { margin: 0 0 1em; color: var(--chalk); }
.muted { color: var(--muted); }

a:focus-visible, button:focus-visible, summary:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	* { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

.screen-reader-text {
	position: absolute; left: -9999px;
}
.skip-link:focus {
	position: fixed; top: 0; left: 0; z-index: 200;
	background: var(--gold); color: var(--ink); padding: .6em 1em;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

.eyebrow {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .78rem;
	color: var(--gold);
	margin: 0 0 .8em;
}
.eyebrow-light { color: var(--gold-2); }

.text-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn-primary, .btn-secondary, .btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: .95rem;
	padding: .85em 1.6em;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
	white-space: nowrap;
}
.btn-primary {
	background: var(--gold);
	color: var(--ink);
	box-shadow: 0 0 0 0 rgba(242,185,12,.5);
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-secondary {
	background: transparent;
	color: var(--chalk);
	border-color: var(--magenta);
}
.btn-secondary:hover { background: var(--magenta); }
.btn-ghost {
	background: transparent;
	color: var(--chalk);
	border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-large { padding: 1em 2.1em; font-size: 1.05rem; }
.btn-small { padding: .55em 1.2em; font-size: .85rem; }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(11,12,16,.92);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--border);
}
.header-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 12px 24px;
}
.brand-logo { height: 42px; width: auto; display: block; }
.logo-plate {
	display: inline-flex;
	align-items: center;
	background: var(--chalk);
	padding: 6px 16px;
	border-radius: 10px;
}
.logo-plate-footer { padding: 6px 14px; border-radius: 8px; margin-bottom: 14px; }
.site-nav { }
.nav-menu { display: flex; gap: 28px; }
.nav-menu a {
	font-weight: 700;
	font-size: .92rem;
	text-transform: uppercase;
	letter-spacing: .03em;
	opacity: .85;
}
.nav-menu a:hover { opacity: 1; color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex: none; }
.header-cta { display: flex; }
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	flex: none;
	background: transparent;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
}
.nav-toggle span { display: block; height: 2px; background: var(--chalk); margin: 0 7px; }
.mobile-nav { display: none; }

/* ---------- Live strip ---------- */
.live-strip {
	background: var(--magenta);
	overflow: hidden;
	white-space: nowrap;
	border-bottom: 1px solid var(--border);
}
.live-strip-track {
	display: inline-block;
	padding: 7px 0;
	font-family: var(--font-mono);
	font-size: .75rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--chalk);
	animation: ticker 28s linear infinite;
}
@keyframes ticker {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.live-dot {
	display: inline-block;
	width: 8px; height: 8px;
	background: var(--gold);
	border-radius: 50%;
	margin: 0 6px 0 18px;
	box-shadow: 0 0 0 0 rgba(242,185,12,.7);
	animation: pulse 1.6s ease-in-out infinite;
	vertical-align: middle;
}
@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(242,185,12,.6); }
	70% { box-shadow: 0 0 0 6px rgba(242,185,12,0); }
	100% { box-shadow: 0 0 0 0 rgba(242,185,12,0); }
}

/* ---------- Hero ---------- */
.hero { padding: 88px 0 64px; position: relative; overflow: hidden; }
.hero::before {
	content: "";
	position: absolute; inset: -20% -10% auto -10%;
	height: 480px;
	background: radial-gradient(ellipse at 30% 0%, rgba(242,185,12,.16), transparent 60%),
	            radial-gradient(ellipse at 80% 20%, rgba(184,58,130,.18), transparent 55%);
	z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero-title { font-size: clamp(2.6rem, 6vw, 4.4rem); text-transform: uppercase; }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 28px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-badges span {
	font-family: var(--font-mono);
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .04em;
	padding: 7px 12px;
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--muted);
}

/* ---------- Sections (generic) ---------- */
.section { padding: 64px 0; }
.section-tinted { background: var(--panel); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.1rem); text-transform: uppercase; margin-bottom: .9em; }
.two-col { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	display: block;
	transition: transform .18s ease, border-color .18s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.feature-icon { color: var(--gold); width: 40px; height: 40px; display: inline-block; margin-bottom: 14px; }
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: .4em; }
.feature-card p { color: var(--muted); font-size: .94rem; }
.feature-link { font-family: var(--font-mono); font-size: .78rem; color: var(--gold); text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Promo banner (home) ---------- */
.promo-banner {
	background: linear-gradient(120deg, var(--panel-2), var(--panel));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.promo-banner h2 { font-size: 1.6rem; text-transform: uppercase; max-width: 480px; }
.promo-banner p { color: var(--muted); max-width: 480px; }

/* ---------- Steps (home teaser) ---------- */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps-row li, .steps-list li { list-style: none; }
.step-no {
	font-family: var(--font-mono);
	color: var(--magenta);
	font-size: 1.6rem;
	display: block;
	margin-bottom: .3em;
}
.steps-row h4 { font-size: 1.05rem; margin-bottom: .3em; }
.steps-row p { color: var(--muted); font-size: .9rem; }
.steps-cta { margin-top: 28px; text-align: center; }

/* ---------- Steps (How to Join, full list) ---------- */
.steps-list { display: flex; flex-direction: column; gap: 30px; }
.steps-list li { display: flex; gap: 22px; align-items: flex-start; }
.steps-list .step-no {
	flex: none;
	width: 56px; height: 56px;
	border: 1px solid var(--border);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.1rem;
	margin: 0;
	color: var(--gold);
}
.steps-list h3 { font-size: 1.15rem; margin-bottom: .25em; }
.steps-list p { color: var(--muted); margin: 0; }

/* ---------- Payments ---------- */
.payments-row { display: flex; flex-wrap: wrap; gap: 14px; }
.payment-chip {
	font-family: var(--font-mono);
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 10px 18px;
	font-size: .85rem;
	letter-spacing: .03em;
}

/* ---------- FAQ ---------- */
.faq-item {
	border-bottom: 1px solid var(--border);
	padding: 18px 0;
}
.faq-item summary {
	cursor: pointer;
	font-weight: 700;
	font-size: 1.02rem;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 12px; color: var(--muted); }

/* ---------- Final CTA banner ---------- */
.section-final-cta {
	background: linear-gradient(120deg, rgba(242,185,12,.08), rgba(184,58,130,.1));
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.final-cta-inner { text-align: center; }
.final-cta-inner h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); text-transform: uppercase; margin-bottom: .9em; }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero { padding: 72px 0 48px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); text-transform: uppercase; max-width: 720px; }
.page-hero-sub { color: var(--muted); max-width: 600px; font-size: 1.05rem; }
.page-hero .btn-primary { margin-top: 8px; }
.page-hero-casino::before { content: none; }

/* ---------- Callout / check list ---------- */
.callout-box {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 26px;
}
.callout-box h4 { margin-bottom: .6em; }
.check-list li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 10px;
	color: var(--chalk);
}
.check-list li::before {
	content: "\2713";
	position: absolute; left: 0; top: 0;
	color: var(--green);
	font-weight: 700;
}

/* ---------- Sport / game grid ---------- */
.sport-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sport-grid-4 { grid-template-columns: repeat(3, 1fr); }
.sport-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
}
.sport-card h4 { margin-bottom: .3em; }
.sport-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Fixture / odds cards ---------- */
.fixture-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; }
.fixture-card {
	background: var(--panel-2);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
}
.fixture-tag {
	display: inline-flex;
	align-items: center;
	font-family: var(--font-mono);
	font-size: .72rem;
	text-transform: uppercase;
	color: var(--gold-2);
	margin-bottom: 14px;
}
.fixture-tag .live-dot { margin-left: 0; margin-right: 8px; }
.fixture-tag-upcoming { color: var(--muted); }
.fixture-teams { font-weight: 800; font-size: 1.05rem; margin-bottom: 14px; }
.fixture-teams span { color: var(--muted); font-weight: 400; font-size: .85rem; margin: 0 6px; }
.odds-row { display: flex; gap: 10px; }
.odds-chip {
	font-family: var(--font-mono);
	font-size: .8rem;
	padding: 6px 12px;
	border-radius: var(--radius-sm);
	background: rgba(244,241,232,.06);
}
.odds-chip.back { color: var(--gold-2); border: 1px solid rgba(242,185,12,.3); }
.odds-chip.lay { color: var(--magenta); border: 1px solid rgba(184,58,130,.4); }

/* ---------- Promotions grid ---------- */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.promo-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 26px;
}
.promo-card-tag {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: .7rem;
	text-transform: uppercase;
	color: var(--magenta);
	margin-bottom: 10px;
}
.promo-card h3 { font-size: 1.15rem; margin-bottom: .4em; }
.promo-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--panel); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-logo { height: 28px; margin: 0; }
.footer-brand p { color: var(--muted); font-size: .9rem; max-width: 360px; }
.footer-col h4 { font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gold); margin-bottom: .8em; }
.footer-menu li { margin-bottom: 8px; color: var(--muted); font-size: .92rem; }
.footer-menu a:hover { color: var(--gold); }
.footer-bottom {
	border-top: 1px solid var(--border);
	padding-top: 24px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.age-badge {
	flex: none;
	font-family: var(--font-display);
	background: var(--gold);
	color: var(--ink);
	font-size: .9rem;
	width: 38px; height: 38px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}
.footer-bottom p { color: var(--muted); font-size: .8rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.feature-grid, .sport-grid, .sport-grid-4, .fixture-list, .promo-grid, .steps-row { grid-template-columns: repeat(2, 1fr); }
	.two-col { grid-template-columns: 1fr; }
	.footer-top { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
	.site-nav { display: none; }
	.nav-toggle { display: flex; width: 32px; height: 32px; }
	.header-inner { gap: 10px; padding: 10px 16px; }
	.brand-logo { height: 28px; }
	.logo-plate { padding: 4px 10px; border-radius: 8px; }
	.header-actions { gap: 8px; }
	.header-cta .btn-primary { padding: .5em .85em; font-size: .78rem; }
	.mobile-nav.is-open { display: block; }
	.mobile-nav {
		background: var(--panel);
		border-top: 1px solid var(--border);
		padding: 22px 24px 28px;
	}
	.mobile-nav .nav-menu { flex-direction: column; gap: 18px; font-size: 1.1rem; }
	.mobile-nav-cta { margin-top: 24px; }

	.feature-grid, .sport-grid, .sport-grid-4, .fixture-list, .promo-grid, .steps-row { grid-template-columns: 1fr; }
	.footer-top { grid-template-columns: 1fr; }
	.promo-banner { flex-direction: column; align-items: flex-start; }
}
