*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--cr-gradient-bg);
	/* background-attachment: fixed was removed — it forces the browser to
	   repaint the entire gradient background relative to the viewport on
	   every scroll frame, which was the single biggest cause of scroll
	   jank on long pages like the homepage's top-casinos list. */
	color: var(--cr-text-primary);
	font-family: var(--cr-font-body);
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--cr-font-heading);
	font-weight: 700;
	color: var(--cr-text-primary);
	margin: 0 0 16px;
	line-height: 1.2;
	letter-spacing: var(--cr-letter-tight);
}

h2 {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	/* Subtle neon lift on every section heading site-wide — kept light
	   enough not to hurt readability, but enough to read as "lit up". */
	text-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

p { margin: 0 0 16px; color: var(--cr-text-secondary); }

a { color: var(--cr-accent-gold); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--cr-accent-gold-light); text-decoration: none; }

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

ul { margin: 0; padding: 0; }

button { font-family: inherit; }

.cr-container {
	max-width: var(--cr-container-width);
	margin: 0 auto;
	padding: 0 16px;
}

@media (min-width: 768px) {
	.cr-container { padding: 0 24px; }
}

.cr-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--cr-accent-gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: var(--cr-letter-wide);
	text-transform: uppercase;
	margin-bottom: 8px;
}
.cr-section-eyebrow::before {
	content: "";
	width: 18px;
	height: 2px;
	background: var(--cr-accent-red);
	border-radius: 2px;
}

.cr-section-subtitle {
	color: var(--cr-text-secondary);
	font-size: 16px;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	clip: auto;
	z-index: 10000;
	padding: 12px 20px;
	background: var(--cr-accent-red);
	color: #fff;
}

.cr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--cr-radius-sm);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease, background 0.2s ease;
	white-space: nowrap;
}

.cr-btn:hover { transform: translateY(-2px); text-decoration: none; }
.cr-btn:active { transform: translateY(0); }

.cr-btn--red {
	background: var(--cr-gradient-cta);
	color: #fff;
}
.cr-btn--red:hover { box-shadow: var(--cr-neon-border-red); }

.cr-btn--gold {
	background: var(--cr-gradient-cta-gold);
	color: #1a1206;
}
.cr-btn--gold:hover { box-shadow: var(--cr-neon-border-gold); }

.cr-btn--green {
	background: var(--cr-gradient-cta-green);
	color: #fbf8ff;
}
.cr-btn--green:hover { box-shadow: var(--cr-shadow-glow-green); }

.cr-btn--outline {
	background: var(--cr-glass-bg);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid var(--cr-glass-border);
	color: var(--cr-text-primary);
}
.cr-btn--outline:hover { border-color: var(--cr-accent-gold); color: var(--cr-accent-gold); background: var(--cr-glass-bg-hover); }

.cr-stars {
	display: inline-flex;
	gap: 3px;
	vertical-align: middle;
}
.cr-star { font-size: 15px; line-height: 1; }
.cr-star::before { content: "★"; }
.cr-star--full { color: var(--cr-accent-gold); }
.cr-star--half {
	background: linear-gradient(90deg, var(--cr-accent-gold) 50%, var(--cr-text-muted) 50%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.cr-star--empty { color: var(--cr-border-strong); }

.cr-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border-radius: 999px;
	background: var(--cr-glass-bg);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid var(--cr-glass-border);
	color: var(--cr-text-secondary);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.cr-breadcrumbs {
	display: block;
	padding: 18px 0;
	font-size: 13px;
	color: var(--cr-text-muted);
	letter-spacing: 0.01em;
}
.cr-breadcrumbs a { color: var(--cr-text-secondary); }
.cr-breadcrumbs a:hover { color: var(--cr-accent-gold); }
.cr-breadcrumbs span { color: var(--cr-text-primary); }

.cr-muted { color: var(--cr-text-muted); }

.cr-main { display: block; }
