/* ==========================================================================
   Online Casino Australia — Style (Mobile-first)
   ========================================================================== */

:root {
	--navy: #14532D;
	--navy-light: #166534;
	--coral: #EAB308;
	--coral-hover: #CA8A04;
	--teal: #EAB308;
	--teal-light: #FEF9C3;
	--green: #22C55E;
	--green-dark: #16A34A;
	--gold: #EAB308;
	--yellow: #FEF9C3;
	--yellow-border: #FDE047;
	--orange: #EAB308;
	--purple: #14532D;
	--light-blue: #BBF7D0;
	--gray-50: #F8FAFC;
	--gray-100: #F1F5F9;
	--gray-200: #E2E8F0;
	--gray-300: #CBD5E1;
	--gray-400: #94A3B8;
	--gray-500: #64748B;
	--gray-600: #475569;
	--gray-700: #334155;
	--gray-800: #1E293B;
	--gray-900: #0F172A;
	--white: #ffffff;
	--bg-main: #FFFFFF;
	--bg-light: #F0FDF4;
	--bg-warm: #FEF9C3;
	--block-bg: #F8FAFC;
	--accent: #EAB308;
	--secondary: #FDE047;
	--primary: #14532D;
	--radius: 16px;
	--radius-sm: 12px;
	--radius-lg: 24px;
	--shadow: 0 2px 4px rgba(20,83,45,0.04), 0 1px 2px rgba(20,83,45,0.03);
	--shadow-md: 0 4px 16px rgba(20,83,45,0.06), 0 2px 6px rgba(20,83,45,0.04);
	--shadow-lg: 0 12px 32px rgba(20,83,45,0.08), 0 4px 12px rgba(20,83,45,0.04);
	--transition: 0.25s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--gray-700);
	background: var(--white);
}
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { color: var(--gray-900); line-height: 1.3; }
h1 { font-size: 1.375rem; font-weight: 700; }
h2 { font-size: 1.375rem; font-weight: 700; margin-bottom: 0.75rem; }
h3 { font-size: 1.125rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Layout */
.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 16px;
}

/* ===== HEADER ===== */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--navy);
	box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 56px;
}
.logo-link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--white);
	font-size: 1rem;
	font-weight: 700;
}
.logo-link:hover { color: var(--white); }
.logo-link .logo-icon {
	width: 32px;
	height: 32px;
	background: var(--coral);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 700;
}
.nav-list { display: none; }
.nav-list a {
	color: var(--gray-300);
	font-size: 0.875rem;
	font-weight: 500;
	transition: color var(--transition);
}
.nav-list a:hover { color: var(--white); }
.menu-toggle {
	display: block;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--white);
}
.menu-toggle svg { width: 24px; height: 24px; }
.nav-list.open {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 56px;
	left: 0;
	right: 0;
	background: var(--navy);
	padding: 12px 16px;
	gap: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	z-index: 99;
}

/* ===== HERO ===== */
.hero {
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
	color: var(--white);
	padding: 28px 0 24px;
}
.hero h1 { color: var(--white); margin-bottom: 12px; }
.hero .subtitle {
	font-size: 0.9375rem;
	color: var(--gray-300);
	line-height: 1.65;
	margin-bottom: 20px;
}
.author-info {
	display: flex;
	align-items: center;
	gap: 10px;
}
.author-info .avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}
.author-info .name { font-weight: 600; font-size: 0.875rem; }
.author-info .date {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 0.75rem;
	color: var(--gray-400);
}
.author-info .date svg { width: 13px; height: 13px; }

/* ===== SECTION COMMON ===== */
.section { padding: 32px 0; }
.section-alt { background: var(--bg-light); }
.section-header { margin-bottom: 20px; }
.section-header p {
	color: var(--gray-500);
	font-size: 0.9375rem;
}

/* ===== TABLE OF CONTENTS ===== */
.toc-wrapper {
	padding: 0;
	margin-top: -8px;
}
.toc-block {
	max-width: 480px;
	background: var(--white);
	border: 2px solid var(--gray-200);
	border-radius: var(--radius);
	overflow: hidden;
	margin: 16px 0;
}
.toc-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 14px 16px;
	background: var(--white);
	border: none;
	cursor: pointer;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--gray-800);
	transition: background var(--transition);
}
.toc-toggle:hover {
	background: var(--gray-50);
}
.toc-toggle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--green);
	border-radius: 6px;
	flex-shrink: 0;
}
.toc-toggle-icon svg {
	width: 16px;
	height: 16px;
	color: var(--white);
}
.toc-chevron {
	width: 18px;
	height: 18px;
	color: var(--gray-400);
	margin-left: auto;
	flex-shrink: 0;
	transition: transform var(--transition);
}
.toc-block.open .toc-chevron {
	transform: rotate(180deg);
}
.toc-nav {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.toc-list {
	padding: 0 16px 14px;
	counter-reset: toc-counter;
}
.toc-list li {
	counter-increment: toc-counter;
	list-style: none;
}
.toc-list li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	font-size: 0.875rem;
	color: var(--gray-600);
	border-radius: 8px;
	transition: background var(--transition), color var(--transition);
	text-decoration: none;
}
.toc-list li a:hover {
	background: #f0fdf4;
	color: var(--green-dark);
}
.toc-list li a::before {
	content: counter(toc-counter);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background: var(--gray-100);
	border-radius: 50%;
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--gray-500);
	flex-shrink: 0;
}
.toc-list li a:hover::before {
	background: var(--green);
	color: var(--white);
}

/* ===== CASINO LIST ===== */
.casino-section-wrapper {
	display: block;
}
.casino-main {
	width: 100%;
}
.casino-sidebar {
	display: none;
}

.casino-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* --- Card base (mobile: vertical stack) --- */
.casino-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 20px 16px 16px;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: box-shadow var(--transition), border-color var(--transition);
}
.casino-card:hover {
	box-shadow: 0 4px 16px rgba(22,101,52,0.08);
	border-color: var(--green);
}
.casino-card.featured {
	border: 2px solid var(--green);
	background: linear-gradient(135deg, var(--white) 0%, #f0fdf4 100%);
}

/* Rank badge */
.casino-rank-badge {
	position: absolute;
	top: -11px;
	left: 16px;
	background: var(--navy);
	color: var(--white);
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	z-index: 2;
	line-height: 1.4;
}
.casino-rank-badge::before {
	content: "🏆";
	font-size: 0.65rem;
}
.casino-card.featured .casino-rank-badge {
	background: var(--green);
}

/* --- Card header: logo + name + rating --- */
.casino-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
	padding-top: 4px;
}
.casino-card-left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.casino-logo {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.5rem;
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
}
.casino-logo.casino-logo--brand {
	box-sizing: border-box;
	width: 128px;
	height: 72px;
	padding: 8px 10px;
	border-radius: var(--radius-sm);
	background: linear-gradient(135deg, #0f172a, #1e293b);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.casino-logo.casino-logo--brand a {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 0;
}
.casino-logo.casino-logo--brand img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.casino-name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--gray-900);
	line-height: 1.3;
}

/* Rating */
.casino-rating-row {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	flex-shrink: 0;
}
.casino-rating {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}
.casino-rating .stars {
	display: flex;
	gap: 1px;
}
.casino-rating .stars svg {
	width: 13px;
	height: 13px;
	color: var(--green);
}
.casino-rating .score {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--green-dark);
}

/* --- Advantages --- */
.casino-advantages-wrapper {
	margin-bottom: 14px;
}
.advantages-label {
	font-size: 0.5625rem;
	font-weight: 700;
	color: var(--gray-400);
	text-transform: uppercase;
	letter-spacing: 0.6px;
	margin-bottom: 6px;
}
.casino-advantages li {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	font-size: 0.8125rem;
	color: var(--gray-600);
	padding: 2px 0;
	line-height: 1.45;
}
.casino-advantages li svg {
	width: 14px;
	height: 14px;
	color: var(--green);
	flex-shrink: 0;
	margin-top: 2px;
}

/* --- Bonus box --- */
.casino-bonus-box {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: var(--radius-sm);
	padding: 12px 14px;
	text-align: center;
	margin-bottom: 14px;
}
.casino-bonus-box .bonus-label {
	font-size: 0.5625rem;
	font-weight: 700;
	color: var(--gray-400);
	text-transform: uppercase;
	letter-spacing: 0.6px;
	margin-bottom: 2px;
}
.casino-bonus-box .bonus-amount {
	font-size: 1.375rem;
	font-weight: 800;
	color: var(--navy);
	line-height: 1.2;
}
.casino-bonus-box .bonus-desc {
	font-size: 0.6875rem;
	color: var(--gray-500);
	margin-top: 2px;
}
.casino-bonus-box .bonus-highlight {
	font-size: 0.6875rem;
	color: var(--green-dark);
	font-weight: 600;
	margin-top: 2px;
}

/* --- CTA buttons --- */
.casino-cta {
	display: flex;
	gap: 8px;
}
.btn-visit {
	flex: 1;
	padding: 11px 16px;
	background: var(--green);
	color: var(--white);
	font-size: 0.875rem;
	font-weight: 700;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: background var(--transition), transform var(--transition);
	text-align: center;
}
.btn-visit:hover {
	background: var(--green-dark);
	color: var(--white);
	transform: translateY(-1px);
}
.btn-review {
	padding: 11px 18px;
	background: var(--white);
	color: var(--gray-500);
	font-size: 0.8125rem;
	font-weight: 500;
	border-radius: 10px;
	border: 1px solid var(--gray-200);
	cursor: pointer;
	transition: border-color var(--transition), color var(--transition);
	text-align: center;
	white-space: nowrap;
}
.btn-review:hover {
	border-color: var(--green);
	color: var(--green-dark);
}

/* legacy selectors kept for compatibility */
.casino-info { min-width: 0; }
.casino-rank { display: none; }
.casino-badge { display: none; }
.casino-bonus { display: none; }

/* ===== SIDEBAR ===== */
.casino-sidebar {
	width: 320px;
	flex-shrink: 0;
}
.sidebar-card {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	border-radius: var(--radius);
	padding: 24px;
	color: var(--white);
	position: sticky;
	top: 80px;
}
.sidebar-card .sidebar-badge {
	background: var(--coral);
	color: var(--white);
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 12px;
}
.sidebar-card .sidebar-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--white);
}
.sidebar-card .sidebar-bonus {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--green);
	line-height: 1.1;
	margin-bottom: 4px;
}
.sidebar-card .sidebar-bonus-sub {
	font-size: 1rem;
	color: var(--coral);
	font-weight: 600;
	margin-bottom: 16px;
}
.sidebar-card .sidebar-features {
	margin-bottom: 20px;
}
.sidebar-card .sidebar-features li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: rgba(255,255,255,0.8);
	padding: 6px 0;
}
.sidebar-card .sidebar-features li svg {
	width: 16px;
	height: 16px;
	color: var(--green);
}
.sidebar-card .btn-sidebar {
	display: block;
	width: 100%;
	padding: 14px 20px;
	background: var(--green);
	color: var(--white);
	font-size: 1rem;
	font-weight: 700;
	border-radius: 50px;
	text-align: center;
	transition: background var(--transition), transform var(--transition);
}
.sidebar-card .btn-sidebar:hover {
	background: var(--green-dark);
	color: var(--white);
	transform: translateY(-2px);
}

/* ===== TEXT CONTENT ===== */
.text-content { }
.text-content h2 {
	margin-top: 32px;
}
.text-content h2:first-child { margin-top: 0; }
.text-content h3 {
	margin: 24px 0 10px;
}
.text-content p {
	color: var(--gray-600);
	line-height: 1.7;
	font-size: 0.9375rem;
}
.text-content ul,
.text-content ol {
	margin: 0 0 1rem;
	padding-left: 0;
}
.text-content ul li,
.text-content ol li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 6px;
	font-size: 0.9375rem;
	color: var(--gray-600);
	line-height: 1.6;
}
.text-content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--coral);
}
.text-content ol {
	counter-reset: ol-counter;
}
.text-content ol li {
	counter-increment: ol-counter;
}
.text-content ol li::before {
	content: counter(ol-counter) ".";
	position: absolute;
	left: 0;
	font-weight: 600;
	color: var(--coral);
}

/* ===== TABLES (compact, no scroll) ===== */
.table-fit {
	margin: 20px 0;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-sm);
	overflow: hidden;
}
.table-fit table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.75rem;
}
.table-fit thead th {
	background: var(--navy);
	color: var(--white);
	font-weight: 600;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	padding: 8px 6px;
	text-align: center;
}
.table-fit thead th:first-child { text-align: left; padding-left: 10px; }
.table-fit tbody td {
	padding: 8px 6px;
	border-bottom: 1px solid var(--gray-100);
	text-align: center;
	vertical-align: middle;
	color: var(--gray-700);
	word-break: break-word;
}
.table-fit tbody td:first-child {
	text-align: left;
	font-weight: 600;
	color: var(--gray-900);
	padding-left: 10px;
}
.table-fit tbody tr:last-child td { border-bottom: none; }
.table-fit tbody tr:nth-child(even) { background: var(--gray-50); }
.cell-yes { color: var(--green); font-weight: 600; }
.cell-no { color: #ef4444; font-weight: 600; }

/* Card-style table */
.table-cards {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 20px 0;
}
.table-card-item {
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-sm);
	padding: 14px;
	background: var(--white);
}
.table-card-item .card-header {
	font-weight: 700;
	font-size: 0.875rem;
	color: var(--gray-900);
	margin-bottom: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--gray-100);
}
.table-card-item .card-row {
	display: flex;
	justify-content: space-between;
	padding: 4px 0;
	font-size: 0.8125rem;
}
.table-card-item .card-row .card-label {
	color: var(--gray-400);
	font-weight: 500;
}
.table-card-item .card-row .card-value {
	color: var(--gray-700);
	font-weight: 600;
	text-align: right;
}

/* ===== FAQ ===== */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.faq-item {
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gray-300); }
h3.faq-label {
	margin: 0;
	font-size: 0.875rem;
}
.faq-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	cursor: pointer;
	background: var(--white);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--gray-800);
	transition: background var(--transition);
	gap: 10px;
}
.faq-label:hover { background: var(--gray-50); }
.faq-label svg {
	width: 18px;
	height: 18px;
	color: var(--gray-400);
	flex-shrink: 0;
	transition: transform var(--transition);
}
.faq-item.open .faq-label svg { transform: rotate(180deg); }
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.faq-answer-inner {
	padding: 0 16px 14px;
	font-size: 0.8125rem;
	color: var(--gray-600);
	line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
	background: var(--navy);
	color: var(--gray-400);
	padding: 32px 0 20px;
}
.footer-top {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	margin-bottom: 20px;
}
.footer-brand .name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 6px;
}
.footer-brand p { font-size: 0.8125rem; line-height: 1.6; }
.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-links a {
	color: var(--gray-400);
	font-size: 0.8125rem;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 0.75rem;
	text-align: center;
}
.footer-bottom .badge-18 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.footer-bottom .badge-18 svg { width: 28px; height: 28px; color: var(--gray-400); }
.footer-bottom .badge-18 span { font-size: 0.6875rem; }

/* ===== SCROLL-TO-TOP ===== */
.scroll-top {
	position: fixed;
	bottom: 20px;
	right: 16px;
	width: 40px;
	height: 40px;
	background: var(--navy);
	color: var(--white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition), visibility var(--transition), background var(--transition);
	box-shadow: var(--shadow-md);
	z-index: 50;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--green); }
.scroll-top svg { width: 18px; height: 18px; }

/* ===== DESKTOP ===== */

@media (min-width: 768px) {
	.container { padding: 0 20px; }
	h1 { font-size: 1.75rem; }
	h2 { font-size: 1.5rem; }
	.header .container { height: 64px; }
	.logo-link { font-size: 1.125rem; }
	.logo-link .logo-icon { width: 36px; height: 36px; }
	.hero { padding: 40px 0 36px; }
	.hero .subtitle { font-size: 1rem; max-width: 640px; }
	.section { padding: 40px 0; }
	.nav-list {
		display: flex;
		gap: 24px;
	}
	.nav-list.open { position: static; box-shadow: none; padding: 0; flex-direction: row; }
	.menu-toggle { display: none; }

	/* Horizontal casino cards on tablet+ */
	.casino-card {
		flex-direction: row;
		align-items: center;
		padding: 18px 20px;
		gap: 16px;
	}
	.casino-rank-badge {
		position: static;
		flex-shrink: 0;
		margin: 0;
	}
	.casino-card.featured .casino-rank-badge {
		position: static;
	}
	.casino-card-top {
		flex-shrink: 0;
		width: 160px;
		margin-bottom: 0;
		padding-top: 0;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 8px;
	}
	.casino-card-left {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}
	.casino-logo {
		width: 48px;
		height: 48px;
	}
	.casino-logo.casino-logo--brand {
		width: 144px;
		height: 80px;
		padding: 10px 12px;
	}
	.casino-name {
		font-size: 0.9375rem;
		text-align: center;
	}
	.casino-rating-row {
		align-items: center;
	}
	.casino-bonus-box {
		flex-shrink: 0;
		width: 130px;
		margin-bottom: 0;
		padding: 10px 8px;
	}
	.casino-bonus-box .bonus-amount {
		font-size: 1.125rem;
	}
	.casino-advantages-wrapper {
		flex: 1;
		min-width: 0;
		margin-bottom: 0;
	}
	.casino-advantages li {
		font-size: 0.8125rem;
		padding: 1px 0;
	}
	.casino-cta {
		flex-direction: column;
		flex-shrink: 0;
		width: 120px;
		gap: 6px;
	}
	.btn-visit {
		padding: 10px 14px;
		font-size: 0.8125rem;
	}
	.btn-review {
		padding: 8px 14px;
		font-size: 0.75rem;
	}

	.faq-list { max-width: 800px; }
	.faq-label { padding: 16px 20px; font-size: 0.9375rem; }
	.faq-answer-inner { padding: 0 20px 16px; font-size: 0.875rem; }

	.text-content { max-width: 800px; }
	.text-content p { font-size: 1rem; }
	.table-fit table { font-size: 0.875rem; }
	.table-fit thead th { font-size: 0.75rem; padding: 10px 12px; }
	.table-fit tbody td { padding: 10px 12px; }
	.table-fit tbody td:first-child { padding-left: 14px; }
	.table-fit thead th:first-child { padding-left: 14px; }

	.footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 40px; }
	.footer-brand p { max-width: 400px; }
	.footer-links { flex-direction: row; gap: 24px; }
	.footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1024px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.625rem; }
	.hero { padding: 48px 0 40px; }
	.hero .subtitle { max-width: 720px; font-size: 1.0625rem; }
	.section { padding: 48px 0; }
	
	/* No sidebar - full width */
	.casino-sidebar {
		display: none;
	}

	.casino-card {
		padding: 18px 24px;
		gap: 20px;
	}
	.casino-card-top {
		width: 180px;
	}
	.casino-logo {
		width: 52px;
		height: 52px;
	}
	.casino-logo.casino-logo--brand {
		width: 160px;
		height: 88px;
		padding: 10px 14px;
	}
	.casino-name { font-size: 1rem; }
	.casino-bonus-box {
		width: 160px;
		padding: 12px 10px;
	}
	.casino-bonus-box .bonus-amount {
		font-size: 1.25rem;
	}
	.casino-cta {
		width: 130px;
	}
	.btn-visit {
		padding: 11px 16px;
		font-size: 0.875rem;
	}
	.btn-review {
		padding: 9px 16px;
		font-size: 0.8125rem;
	}
}

@media (min-width: 1280px) {
	.casino-card {
		padding: 20px 28px;
		gap: 24px;
	}
	.casino-card-top {
		width: 200px;
	}
	.casino-logo.casino-logo--brand {
		width: 176px;
		height: 96px;
	}
	.casino-bonus-box {
		width: 170px;
	}
	.casino-cta {
		width: 140px;
	}
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
	background: var(--white);
	padding: 60px 0;
}
.why-choose .section-header {
	text-align: center;
	margin-bottom: 40px;
}
.why-choose .section-header h2 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.75rem;
}
.why-choose .section-header h2::before {
	content: "🎯";
	font-size: 1.5rem;
}
.section-divider {
	width: 60px;
	height: 4px;
	background: var(--accent);
	border-radius: 2px;
	margin: 16px auto 0;
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.feature-card {
	background: var(--white);
	border: 2px solid var(--secondary);
	border-radius: var(--radius);
	padding: 28px 20px;
	text-align: center;
	transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}
.feature-icon {
	width: 64px;
	height: 64px;
	background: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}
.feature-icon svg {
	width: 28px;
	height: 28px;
	color: var(--white);
}
.feature-card h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 8px;
}
.feature-card p {
	font-size: 0.875rem;
	color: var(--gray-500);
	line-height: 1.6;
}

/* ===== PAYMENT METHODS SECTION ===== */
.payment-methods {
	background: var(--gray-50);
	padding: 60px 0;
}
.payment-methods .section-header {
	text-align: center;
	margin-bottom: 40px;
}
.payment-methods .section-header h2 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.75rem;
}
.payment-methods .section-header h2::before {
	content: "💳";
	font-size: 1.5rem;
}
.payment-methods .section-header p {
	color: var(--gray-500);
	margin-top: 12px;
}

.payments-grid {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.payment-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-left: 4px solid var(--gray-300);
	border-radius: var(--radius-sm);
	padding: 16px 22px;
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.payment-card:hover {
	border-color: var(--accent);
	border-left-color: var(--accent);
	box-shadow: var(--shadow-md);
	transform: translateX(2px);
}
.payment-card.popular {
	border-left-color: var(--yellow-border);
	background: linear-gradient(90deg, var(--bg-warm) 0%, var(--white) 60%);
}
.payment-card .popular-badge {
	position: absolute;
	top: 10px;
	right: 14px;
	background: var(--yellow);
	color: var(--gray-800);
	font-size: 0.625rem;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	text-transform: uppercase;
	transform: none;
	left: auto;
}
.payment-card .popular-badge::before {
	content: "🔥";
	font-size: 0.7rem;
}
.payment-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 0;
	flex-shrink: 0;
	min-width: 220px;
}
.payment-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	flex-shrink: 0;
}
.payment-icon.payid { background: linear-gradient(135deg, #00B4D8, #0096B4); color: white; }
.payment-icon.card { background: linear-gradient(135deg, #003B73, #004A8F); color: white; }
.payment-icon.neosurf { background: linear-gradient(135deg, #90E0EF, #00B4D8); color: #003B73; }
.payment-icon.crypto { background: linear-gradient(135deg, #003B73, #00B4D8); color: white; }
.payment-card h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--gray-900);
}
.payment-card > p {
	flex: 1 1 300px;
	font-size: 0.875rem;
	color: var(--gray-500);
	line-height: 1.55;
	margin-bottom: 0;
}
.payment-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	flex-shrink: 0;
}
.payment-tag {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.75rem;
	color: var(--gray-600);
	background: var(--gray-100);
	padding: 4px 10px;
	border-radius: 999px;
}

/* ===== EXCLUSIVE BONUSES SECTION ===== */
.exclusive-bonuses {
	background: var(--white);
	padding: 60px 0;
}
.exclusive-bonuses .section-header {
	text-align: center;
	margin-bottom: 40px;
}
.exclusive-bonuses .section-header h2 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.75rem;
}
.exclusive-bonuses .section-header h2::before {
	content: "🎁";
	font-size: 1.5rem;
}
.exclusive-bonuses .section-header p {
	color: var(--gray-500);
	margin-top: 12px;
}

.bonuses-grid {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.bonus-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-left: 4px solid var(--gray-300);
	border-radius: var(--radius-sm);
	padding: 20px 24px;
	text-align: left;
	position: relative;
	display: grid;
	grid-template-columns: minmax(160px, auto) minmax(110px, auto) 1fr auto;
	grid-template-areas:
		"badge amount details cta"
		"title amount highlight cta";
	column-gap: 24px;
	row-gap: 4px;
	align-items: center;
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.bonus-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateX(2px);
}
.bonus-card.hot {
	border-left-color: var(--primary);
}
.bonus-card.vip {
	border-left-color: var(--accent);
}
.bonus-card.spins {
	border-left-color: var(--secondary);
}
.bonus-badge {
	grid-area: badge;
	justify-self: start;
	align-self: end;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
}
.bonus-badge.hot {
	background: var(--primary);
	color: white;
}
.bonus-badge.hot::before {
	content: "🔥";
}
.bonus-badge.vip {
	background: var(--accent);
	color: white;
}
.bonus-badge.vip::before {
	content: "👑";
}
.bonus-badge.spins {
	background: var(--secondary);
	color: var(--primary);
}
.bonus-badge.spins::before {
	content: "🎰";
}
.bonus-card h3 {
	grid-area: title;
	align-self: start;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 0;
}
.bonus-amount {
	grid-area: amount;
	justify-self: center;
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--primary);
	line-height: 1.1;
	margin-bottom: 0;
	text-align: center;
}
.bonus-details {
	grid-area: details;
	margin-bottom: 0;
	align-self: end;
}
.bonus-details p {
	font-size: 0.8125rem;
	color: var(--gray-500);
	margin-bottom: 2px;
	line-height: 1.45;
}
.bonus-details p:last-child {
	margin-bottom: 0;
}
.bonus-highlight {
	grid-area: highlight;
	align-self: start;
	font-size: 0.8125rem;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 0;
}
.btn-bonus {
	grid-area: cta;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	background: var(--accent);
	color: white;
	font-size: 0.875rem;
	font-weight: 700;
	border-radius: 50px;
	white-space: nowrap;
	align-self: center;
	transition: background var(--transition), transform var(--transition);
}
.btn-bonus:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
}

@media (max-width: 767px) {
	.bonus-card {
		grid-template-columns: 1fr;
		grid-template-areas:
			"badge"
			"title"
			"amount"
			"details"
			"highlight"
			"cta";
		row-gap: 10px;
		text-align: center;
	}
	.bonus-badge,
	.bonus-amount,
	.btn-bonus {
		justify-self: center;
	}
	.bonus-amount {
		font-size: 2.75rem;
	}
	.payment-card-header {
		min-width: 0;
	}
	.payment-card {
		padding: 14px 16px;
	}
}

/* ===== RESPONSIBLE GAMBLING SECTION ===== */
.responsible-gambling {
	background: linear-gradient(135deg, var(--bg-light) 0%, #E0F7FA 100%);
	padding: 60px 0;
}
.responsible-gambling .section-header {
	text-align: center;
	margin-bottom: 40px;
}
.responsible-gambling .section-header h2 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1.75rem;
}
.responsible-gambling .section-header h2::before {
	content: "🛡️";
	font-size: 1.5rem;
}

.rg-warning {
	background: var(--white);
	border-left: 4px solid var(--accent);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: 20px 24px;
	margin-bottom: 24px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.rg-warning::before {
	content: "⚠️";
	font-size: 1.25rem;
	flex-shrink: 0;
}
.rg-warning p {
	font-size: 0.9375rem;
	color: var(--gray-700);
	line-height: 1.6;
}
.rg-warning strong {
	color: var(--gray-900);
}

.rg-contacts {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.rg-contact-card {
	background: var(--white);
	border: 2px solid var(--accent);
	border-radius: var(--radius);
	padding: 24px;
}
.rg-contact-card h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 8px;
}
.rg-contact-card .phone {
	font-size: 1rem;
	color: var(--gray-700);
	margin-bottom: 4px;
}
.rg-contact-card .phone strong {
	color: var(--gray-900);
}
.rg-contact-card p {
	font-size: 0.875rem;
	color: var(--gray-500);
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (min-width: 640px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.rg-contacts {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
