/* ==========================================================================
   Online Casino Australia — Style (Mobile-first)
   ========================================================================== */
:root {
	--navy: #003B73;
	--navy-light: #004A8F;
	--coral: #00B4D8;
	--coral-hover: #0096B4;
	--teal: #00B4D8;
	--teal-light: #E0F7FA;
	--green: #00B4D8;
	--green-dark: #0096B4;
	--gold: #00B4D8;
	--yellow: #E0F7FA;
	--yellow-border: #90E0EF;
	--orange: #00B4D8;
	--purple: #003B73;
	--light-blue: #90E0EF;
	--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: #F0F9FF;
	--bg-warm: #E0F7FA;
	--block-bg: #F8FAFC;
	--accent: #00B4D8;
	--secondary: #90E0EF;
	--primary: #003B73;
	--radius: 16px;
	--radius-sm: 12px;
	--radius-lg: 24px;
	--shadow: 0 2px 4px rgba(0, 59, 115, 0.04), 0 1px 2px rgba(0, 59, 115, 0.03);
	--shadow-md: 0 4px 16px rgba(0, 59, 115, 0.06), 0 2px 6px rgba(0, 59, 115, 0.04);
	--shadow-lg: 0 12px 32px rgba(0, 59, 115, 0.08), 0 4px 12px rgba(0, 59, 115, 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;
}

/* ===== CASINO LIST ===== */
.casino-section-wrapper {
	display: block;
}

.casino-main {
	width: 100%;
}

.casino-sidebar {
	display: none;
}

.casino-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.casino-card {
	background: var(--white);
	border: 2px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
	display: flex;
	flex-direction: column;
	position: relative;
}

.casino-card:hover {
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
	transform: translateY(-4px);
}

.casino-card.featured {
	border-color: var(--accent);
	border-width: 2px;
	background: linear-gradient(135deg, var(--white) 0%, var(--bg-warm) 100%);
}

.casino-card.featured::before {
	content: "";
	display: none;
}

/* Rank badge */
.casino-rank-badge {
	position: absolute;
	top: -12px;
	left: 20px;
	background: var(--primary);
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.casino-rank-badge::before {
	content: "🏆";
	font-size: 0.7rem;
}

.casino-card.featured {
	border-color: var(--coral);
	border-width: 2px;
	position: relative;
}

.casino-card.featured::before {
	content: "Editor's Pick";
	position: absolute;
	top: -10px;
	left: 16px;
	background: var(--coral);
	color: var(--white);
	font-size: 0.625rem;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Casino card — grid layout */
.casino-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
	padding-top: 8px;
}

.casino-card-left {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.casino-rank {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--gray-400);
	flex-shrink: 0;
}

.casino-card:nth-child(1) .casino-rank {
	color: var(--gold);
}

.casino-card:nth-child(2) .casino-rank {
	color: var(--gray-400);
}

.casino-card:nth-child(3) .casino-rank {
	color: #cd7f32;
}

.casino-logo {
	flex-shrink: 0;
	padding: 8px 16px;
	border-radius: var(--radius-sm);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
}

.casino-info {
	min-width: 0;
}

.casino-name {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 4px;
	margin-top: 8px;
}

.casino-badge {
	display: inline-block;
	font-size: 0.625rem;
	font-weight: 600;
	padding: 1px 6px;
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-left: 4px;
	vertical-align: middle;
}

.badge-new {
	background: #dcfce7;
	color: #166534;
}

.badge-hot {
	background: #fee2e2;
	color: #991b1b;
}

.badge-top {
	background: #dbeafe;
	color: #1e40af;
}

.casino-bonus {
	font-size: 0.8125rem;
	color: var(--gray-500);
}

.casino-bonus strong {
	color: var(--gray-800);
	font-weight: 600;
}

/* Rating row */
.casino-rating-row {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
}

.casino-rating .score {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--gray-700);
}

.casino-rating .stars {
	display: flex;
	gap: 2px;
}

.casino-rating .stars svg {
	width: 14px;
	height: 14px;
	color: var(--gold);
}

.casino-rating .label {
	font-size: 0.6875rem;
	color: var(--gray-400);
}

/* Advantages */
.casino-advantages {
	margin-bottom: 16px;
	flex-grow: 1;
}

.casino-advantages li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: var(--gray-600);
	padding: 4px 0;
}

.casino-advantages li svg {
	width: 16px;
	height: 16px;
	color: var(--accent);
	flex-shrink: 0;
}

/* Bonus highlight box */
.casino-bonus-box {
	background: var(--bg-warm);
	border: 2px solid var(--secondary);
	border-radius: var(--radius-sm);
	padding: 16px;
	text-align: center;
	margin-bottom: 16px;
}

.casino-bonus-box .bonus-amount {
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary);
	line-height: 1.2;
}

.casino-bonus-box .bonus-desc {
	font-size: 0.8125rem;
	color: var(--gray-600);
	margin-top: 4px;
}

.casino-bonus-box .bonus-highlight {
	font-size: 0.8125rem;
	color: var(--accent);
	font-weight: 600;
	margin-top: 4px;
}

/* CTA */
.casino-cta {
	display: flex;
	gap: 10px;
}

.btn-visit {
	flex: 1;
	padding: 14px 20px;
	background: var(--accent);
	color: var(--white);
	font-size: 0.9375rem;
	font-weight: 700;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: background var(--transition), transform var(--transition);
	text-align: center;
}

.btn-visit:hover {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-2px);
}

.btn-review {
	flex: 1;
	padding: 14px 20px;
	background: var(--white);
	color: var(--primary);
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: 50px;
	border: 2px solid var(--secondary);
	cursor: pointer;
	transition: border-color var(--transition), background var(--transition);
	text-align: center;
}

.btn-review:hover {
	border-color: var(--accent);
	background: var(--bg-warm);
	color: var(--primary);
}

/* ===== 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 ===== */
.table-fit {
	margin: 20px 0;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-sm);
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	background: var(--white);
}

.table-fit table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	font-size: 0.8125rem;
	table-layout: auto;
}

.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: 10px 10px;
	text-align: left;
	vertical-align: top;
	white-space: normal;
	word-break: normal;
	overflow-wrap: break-word;
	hyphens: auto;
}

.table-fit tbody td {
	padding: 10px 10px;
	border-bottom: 1px solid var(--gray-100);
	text-align: left;
	vertical-align: top;
	color: var(--gray-700);
	white-space: normal;
	word-break: normal;
	overflow-wrap: break-word;
	hyphens: auto;
}

.table-fit tbody td:first-child {
	font-weight: 600;
	color: var(--gray-900);
}

.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;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 0;
	font-size: 0.8125rem;
	flex-wrap: nowrap;
}

.table-card-item .card-row .card-label {
	color: var(--gray-400);
	font-weight: 500;
	flex: 1 1 45%;
	min-width: 0;
	word-break: normal;
	overflow-wrap: break-word;
}

.table-card-item .card-row .card-value {
	color: var(--gray-700);
	font-weight: 600;
	text-align: right;
	flex: 1 1 55%;
	min-width: 0;
	word-break: normal;
	overflow-wrap: break-word;
}

/* ===== 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(--coral);
}

.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;
	}

	.casino-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	/* Casino cards stay vertical in grid */
	.casino-card {
		display: flex;
		flex-direction: column;
		padding: 24px;
	}

	.casino-card-top {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.casino-info {
		flex: unset;
		min-width: 0;
		text-align: center;
	}

	.casino-rating-row {
		display: flex;
		justify-content: center;
	}

	.casino-rating {
		flex-shrink: 0;
		text-align: center;
		width: auto;
	}

	.casino-advantages {
		flex-shrink: 0;
		width: 100%;
		margin-bottom: 16px;
	}

	.casino-cta {
		flex-shrink: 0;
		width: 100%;
	}

	.btn-visit {
		padding: 12px 16px;
		font-size: 0.9375rem;
	}

	.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 grid */
	.casino-sidebar {
		display: none;
	}

	.casino-list {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}

	.casino-logo {
		font-size: 0.75rem;
	}

	.casino-name {
		font-size: 1.0625rem;
	}

	.casino-advantages {
		width: 100%;
	}

	.casino-cta {
		width: 100%;
	}
}

@media (min-width: 1280px) {
	.casino-list {
		grid-template-columns: repeat(3, 1fr);
		gap: 28px;
	}
}

/* ===== 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: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.payment-card {
	background: var(--white);
	border: 2px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 24px;
	position: relative;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.payment-card:hover {
	border-color: var(--accent);
	box-shadow: var(--shadow-md);
}

.payment-card.popular {
	border-color: var(--yellow-border);
}

.payment-card .popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--yellow);
	color: var(--gray-800);
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 4px;
	text-transform: uppercase;
}

.payment-card .popular-badge::before {
	content: "🔥";
	font-size: 0.7rem;
}

.payment-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.payment-icon {
	width: 48px;
	height: 48px;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
}

.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.125rem;
	font-weight: 700;
	color: var(--gray-900);
}

.payment-card>p {
	font-size: 0.875rem;
	color: var(--gray-500);
	line-height: 1.6;
	margin-bottom: 12px;
}

.payment-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.payment-tag {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.75rem;
	color: var(--gray-600);
}

/* ===== 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: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.bonus-card {
	background: var(--white);
	border: 2px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	text-align: center;
	position: relative;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
	box-shadow: var(--shadow-lg);
}

.bonus-card.hot {
	border-color: var(--primary);
}

.bonus-card.vip {
	border-color: var(--accent);
}

.bonus-card.spins {
	border-color: var(--secondary);
}

.bonus-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.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 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 12px;
}

.bonus-amount {
	font-size: 3rem;
	font-weight: 800;
	color: var(--primary);
	line-height: 1.1;
	margin-bottom: 16px;
}

.bonus-details {
	margin-bottom: 16px;
}

.bonus-details p {
	font-size: 0.875rem;
	color: var(--gray-500);
	margin-bottom: 4px;
}

.bonus-highlight {
	font-size: 0.9375rem;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 20px;
}

.btn-bonus {
	display: inline-block;
	padding: 14px 32px;
	background: var(--accent);
	color: white;
	font-size: 0.9375rem;
	font-weight: 700;
	border-radius: 50px;
	transition: background var(--transition), transform var(--transition);
}

.btn-bonus:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
}

/* ===== 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);
	}

	.payments-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bonuses-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);
	}

	.payments-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bonuses-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ===== NEW HERO WITH SIDEBAR ===== */
.hero-new {
	background: linear-gradient(135deg, #FFF9E6 0%, #FFFEF5 50%, #F0F9FF 100%);
	padding: 40px 0;
}

.hero-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.hero-content h1 {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 16px;
	line-height: 1.3;
}

.hero-text {
	font-size: 1rem;
	color: var(--gray-600);
	margin-bottom: 24px;
	line-height: 1.7;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--accent);
	color: var(--white);
	font-size: 1rem;
	font-weight: 700;
	border-radius: 50px;
	transition: all var(--transition);
}

.btn-primary:hover {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-2px);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--white);
	color: var(--primary);
	font-size: 1rem;
	font-weight: 600;
	border: 2px solid var(--secondary);
	border-radius: 50px;
	transition: all var(--transition);
}

.btn-outline:hover {
	border-color: var(--accent);
	background: var(--bg-warm);
	color: var(--primary);
}

.hero-stats {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.stat-item {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary);
}

.stat-label {
	font-size: 0.75rem;
	color: var(--gray-500);
}

.hero-sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hero-card {
	background: var(--white);
	border: 2px solid var(--secondary);
	border-radius: var(--radius);
	padding: 20px;
	text-align: center;
}

.hero-card.top-pick {
	border-color: var(--accent);
	background: linear-gradient(135deg, var(--white) 0%, var(--bg-warm) 100%);
}

.card-badge {
	display: inline-block;
	background: var(--accent);
	color: var(--white);
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.card-badge.alt {
	background: var(--secondary);
	color: var(--primary);
}

.card-casino {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 4px;
}

.card-bonus {
	font-size: 0.875rem;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 12px;
}

.btn-card {
	display: block;
	padding: 12px 20px;
	background: var(--accent);
	color: var(--white);
	font-weight: 700;
	border-radius: 50px;
	transition: all var(--transition);
}

.btn-card:hover {
	background: var(--primary);
	color: var(--white);
}

.btn-card-outline {
	display: block;
	padding: 12px 20px;
	background: var(--white);
	color: var(--primary);
	font-weight: 600;
	border: 2px solid var(--secondary);
	border-radius: 50px;
	transition: all var(--transition);
}

.btn-card-outline:hover {
	border-color: var(--accent);
	color: var(--primary);
}

/* ===== HORIZONTAL CASINO CARDS ===== */
.casino-section {
	background: var(--white);
	padding: 48px 0;
}

.section-header-center {
	text-align: center;
	margin-bottom: 32px;
}

.section-header-center h2 {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 8px;
}

.section-header-center p {
	color: var(--gray-500);
	font-size: 0.9375rem;
}

.casino-list-horizontal {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.casino-row {
	background: var(--white);
	border: 2px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 20px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	transition: all var(--transition);
}

.casino-row:hover {
	border-color: var(--accent);
	box-shadow: var(--shadow-md);
}

.casino-row.featured {
	border-color: #F59E0B;
	background: linear-gradient(135deg, #FFFBEB 0%, var(--white) 100%);
}

.casino-row-rank {
	display: flex;
	align-items: center;
	gap: 8px;
}

.casino-row-rank span:first-child {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--primary);
}

.badge-top {
	background: #F59E0B;
	color: var(--white);
	font-size: 0.625rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
}

.casino-row-logo {
	width: 64px;
	height: 44px;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
	color: var(--white);
	font-size: 0.5625rem;
	font-weight: 700;
	text-align: center;
}

.casino-logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	padding: 6px;
	filter: drop-shadow(0 1px 2px rgba(0,0,0,.15));
	transition: transform var(--transition);
}

.casino-row:hover .casino-logo-img {
	transform: scale(1.06);
}

.casino-row-info h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 8px;
}

.casino-row-info ul {
	list-style: none;
}

.casino-row-info ul li {
	font-size: 0.8125rem;
	color: var(--gray-600);
	margin-bottom: 4px;
}

.casino-row-bonus {
	background: #FEF9C3;
	border: 2px solid #F59E0B;
	border-radius: var(--radius-sm);
	padding: 16px;
	text-align: center;
}

.casino-row-bonus .amount {
	font-size: 1.75rem;
	font-weight: 800;
	color: #16A34A;
}

.casino-row-bonus .desc {
	font-size: 0.75rem;
	color: var(--gray-500);
	margin: 4px 0;
}

.casino-row-bonus .highlight {
	font-size: 0.75rem;
	color: #F59E0B;
	font-weight: 600;
}

.casino-row-rating {
	text-align: center;
}

.casino-row-rating .stars {
	color: #F59E0B;
	font-size: 1rem;
	margin-bottom: 4px;
}

.casino-row-rating .score {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--gray-700);
}

.casino-row-cta {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.btn-play {
	display: block;
	padding: 12px 20px;
	background: #22C55E;
	color: var(--white);
	font-weight: 700;
	font-size: 0.9375rem;
	border-radius: 50px;
	text-align: center;
	transition: all var(--transition);
}

.btn-play:hover {
	background: #16A34A;
	color: var(--white);
	transform: translateY(-2px);
}

.link-review {
	display: block;
	padding: 10px 20px;
	background: var(--white);
	color: var(--gray-700);
	font-weight: 600;
	font-size: 0.875rem;
	border: 2px solid var(--gray-300);
	border-radius: 50px;
	text-align: center;
	transition: all var(--transition);
}

.link-review:hover {
	border-color: var(--accent);
	color: var(--primary);
}

/* ===== PLAYER REVIEWS ===== */
.player-reviews {
	background: var(--white);
	padding: 60px 0;
}

.reviews-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.review-card {
	background: var(--white);
	border: 2px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 24px;
}

.review-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.review-header .avatar {
	width: 48px;
	height: 48px;
	background: var(--secondary);
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
}

.review-header .info {
	flex: 1;
}

.review-header .info strong {
	display: block;
	color: var(--gray-900);
	font-size: 0.9375rem;
}

.review-header .info span {
	font-size: 0.75rem;
	color: var(--gray-500);
}

.review-header .rating {
	color: #F59E0B;
	font-size: 1rem;
}

.review-card>p {
	font-size: 0.9375rem;
	color: var(--gray-600);
	line-height: 1.6;
	margin-bottom: 12px;
	font-style: italic;
}

.review-casino {
	font-size: 0.8125rem;
	color: var(--gray-500);
}

.review-casino strong {
	color: var(--accent);
}

/* ===== FAQ SECTION ===== */
.faq-section {
	background: linear-gradient(135deg, #FFF9E6 0%, #FFFEF5 100%);
	padding: 60px 0;
}

.faq-item {
	background: var(--white);
	border: 2px solid var(--gray-200);
	border-radius: var(--radius-sm);
	margin-bottom: 12px;
	overflow: hidden;
}

.faq-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	cursor: pointer;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--gray-800);
	margin: 0;
}

.faq-icon {
	font-size: 1.25rem;
	color: var(--accent);
	font-weight: 300;
}

.faq-answer {
	display: none;
	padding: 0 20px 16px;
}

.faq-answer p {
	font-size: 0.875rem;
	color: var(--gray-600);
	line-height: 1.7;
}

.faq-item.open .faq-answer {
	display: block;
}

.faq-item.open .faq-icon {
	transform: rotate(45deg);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
	.hero-wrapper {
		flex-direction: row;
		align-items: flex-start;
	}

	.hero-content {
		flex: 1;
	}

	.hero-content h1 {
		font-size: 2.25rem;
	}

	.hero-sidebar {
		width: 280px;
		flex-shrink: 0;
	}

	.casino-row {
		grid-template-columns: auto 88px 1fr auto auto auto;
		align-items: center;
		gap: 20px;
	}

	.casino-row-logo {
		width: 88px;
		height: 56px;
	}

	.casino-logo-img {
		padding: 8px;
	}

	.casino-row-bonus {
		width: 180px;
	}

	.casino-row-cta {
		flex-direction: column;
		width: 120px;
	}

	.reviews-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.hero-new {
		padding: 60px 0;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-sidebar {
		width: 320px;
	}

	.stat-number {
		font-size: 2rem;
	}
}

/* ===== RESPONSIVE TABLES ===== */
.table-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gray-900);
	margin: 32px 0 16px;
}

.table-title:first-of-type {
	margin-top: 0;
}

.table-responsive {
	margin: 0 0 24px;
	border-radius: var(--radius-sm);
	overflow-x: auto;
	border: 3px solid var(--navy);
	background: var(--white);
	box-shadow: var(--shadow-md);
	-webkit-overflow-scrolling: touch;
}

.table-responsive table {
	width: 100%;
	min-width: 600px;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.table-responsive thead th {
	background: var(--navy);
	color: var(--white);
	font-weight: 700;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 14px 12px;
	text-align: center;
	white-space: nowrap;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.table-responsive thead th:last-child {
	border-right: none;
}

.table-responsive thead th:first-child {
	text-align: left;
	padding-left: 16px;
}

.table-responsive tbody td {
	padding: 12px;
	border-bottom: 2px solid var(--gray-200);
	border-right: 1px solid var(--gray-200);
	text-align: center;
	vertical-align: middle;
	color: var(--gray-700);
}

.table-responsive tbody td:last-child {
	border-right: none;
}

.table-responsive tbody td:first-child {
	text-align: left;
	font-weight: 600;
	color: var(--gray-900);
	padding-left: 16px;
	background: var(--gray-50);
	border-right: 2px solid var(--gray-300);
	white-space: nowrap;
}

.table-responsive tbody tr:last-child td {
	border-bottom: none;
}

.table-responsive tbody tr:nth-child(even) td {
	background: var(--gray-50);
}

.table-responsive tbody tr:nth-child(even) td:first-child {
	background: var(--gray-100);
}

.table-responsive tbody tr:hover td {
	background: var(--bg-warm);
}

.table-responsive tbody tr:hover td:first-child {
	background: #e8f4f8;
}

/* Table Cell Styles */
.table-responsive .cell-yes {
	color: #16A34A;
	font-weight: 700;
}

.table-responsive .cell-no {
	color: #DC2626;
	font-weight: 700;
}

.table-responsive .cell-speed {
	color: var(--accent);
	font-weight: 600;
}

.table-responsive .cell-fee-free {
	color: #16A34A;
	font-weight: 600;
}

.table-responsive .cell-fee-low {
	color: #CA8A04;
	font-weight: 600;
}

.table-responsive .cell-warning {
	color: #DC2626;
	font-weight: 600;
}

/* Mobile scroll hint */
@media (max-width: 767px) {
	.table-responsive {
		position: relative;
	}

	.table-responsive::after {
		content: '→ Scroll';
		position: absolute;
		top: 50%;
		right: 8px;
		transform: translateY(-50%);
		background: var(--navy);
		color: var(--white);
		font-size: 0.625rem;
		font-weight: 700;
		padding: 4px 8px;
		border-radius: 4px;
		opacity: 0.8;
		pointer-events: none;
		animation: fadeOut 3s forwards;
	}

	@keyframes fadeOut {

		0%,
		70% {
			opacity: 0.8;
		}

		100% {
			opacity: 0;
		}
	}
}

/* ===== CATEGORY CARDS GRID ===== */
.category-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 24px;
}

.category-card {
	background: var(--white);
	border: 3px solid var(--gray-300);
	border-radius: var(--radius-sm);
	padding: 18px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	transition: all var(--transition);
	box-shadow: var(--shadow);
}

.category-card:hover {
	border-color: var(--accent);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.category-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.category-content h4 {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 4px;
}

.category-content p {
	font-size: 0.8125rem;
	color: var(--gray-600);
	margin: 0;
}

.category-content .winner {
	color: var(--accent);
	font-weight: 600;
}

@media (min-width: 768px) {
	.category-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.category-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}