@font-face {
	font-family: Oswald;
	src: url('./font/Oswald-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: Oswald;
	src: url('./font/Oswald-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: Oswald;
	src: url('./font/Oswald-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: Oswald;
	src: url('./font/Oswald-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: JosefinSans;
	src: url('./font/JosefinSans-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: JosefinSans;
	src: url('./font/JosefinSans-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: JosefinSans;
	src: url('./font/JosefinSans-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: JosefinSans;
	src: url('./font/JosefinSans-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

/* ── RESET ── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

:root {
	--header: linear-gradient(45deg, #d8d5cb, #dab047, #9c4b0c);
	--background: linear-gradient(135deg, #fdfbfa 0%, #f7f2ed 45%, #f5ebe2 75%, #eaddd0);
	--container: rgba(196, 110, 12, 0.05);
	--card: rgba(235, 224, 224, 0.94);
	--border: rgba(49, 49, 77, 0.07);
	--link: rgba(20, 51, 136, 0.85);
	--hover: rgba(187, 106, 13, 0.08);
	--title: #23233d;
	--txt: #2d2d36;
	--txt-second: #4b3e32;
	--color-1: #bde724;
	--color-2: #2a448b;
	--color-3: #2e74e6;
	--color-4: #a74e0b;
	--white: #ece6e6;
	--shadow: rgba(35, 30, 20, 0.03);
	--shadow-second: rgba(255, 255, 255, 0.96);

	--radius: 16px;
}

html {
	scroll-behavior: smooth;
	scrollbar-color: var(--color-1) var(--white);
	scrollbar-width: thin;
}

body {
	font-family: 'Oswald';
	background: var(--background);
	color: var(--c-text);
	line-height: 1.7;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	background-attachment: fixed;
	position: relative;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(124, 111, 255, 0.35) 0%, transparent 70%);
	top: -100px;
	left: -100px;
	pointer-events: none;
	z-index: 0;
}

body::after {
	content: '';
	position: fixed;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 212, 224, 0.28) 0%, transparent 70%);
	bottom: -150px;
	right: -100px;
	pointer-events: none;
	z-index: 0;
}

.sr-only {
	position: absolute;
	width: 100px;
	height: 20px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

/* ── HEADER ── */
header {
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 100px;
	background: var(--header);
	box-shadow: 0 3px 3px var(--txt);
	border-radius: 0 0 var(--radius) var(--radius);
	z-index: 100;
}

.logo {
	position: relative;
}

.logo:hover {
	transform: scale(0.95);
}

.logo-badge {
	position: absolute;
	bottom: 2px;
	left: 0;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--color-4);
}
.ping {
	position: relative;
	display: inline-block;
	color: var(--color-4);
	text-shadow: 0 0 5px var(--color-2);
}

.ping::after {
	content: 'o';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: var(--color-4);
	opacity: 1;
	animation: ping-wave 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping-wave {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	80%,
	100% {
		transform: scale(2.5);
		opacity: 0;
	}
}

.ping {
	animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
	0%,
	100% {
		text-shadow: 0 0 5px var(--color-1);
	}
	50% {
		text-shadow:
			0 0 15px var(--color-1),
			0 0 20px var(--color-2);
	}
}

.main-nav {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	padding: 5px 50px;
	border-radius: 0 0 var(--radius) var(--radius);
	background: var(--txt-second);
	box-shadow:
		0 3px 5px var(--color-2),
		inset 0 1px 3px var(--txt);
	transition: all 0.2s ease;
	z-index: 100;
}

.main-nav a {
	text-decoration: none;
	color: var(--white);
	font-size: 14px;
	letter-spacing: 0.02em;
	transition: all 0.3s ease;
}
.main-nav a:hover {
	color: var(--color-3);
}

/* ── HERO ── */
.blob,
.blob1,
.blob2 {
	position: absolute;
	width: 100px;
	height: 100px;
	filter: blur(25px);
	z-index: -1;
}

/* Общий стиль для всех blob */
.blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(15px);
	z-index: -1;
}

/* Каждый blob с уникальным размером, цветом, позицией и анимацией */
.blob1 {
	width: 80px;
	height: 80px;
	background: var(--color-4);
	top: 10%;
	left: 50%;
	animation:
		morph 10s ease-in-out infinite,
		float1 15s ease-in-out infinite;
}

.blob2 {
	width: 50px;
	height: 50px;
	background: var(--color-2);
	top: 30%;
	left: 70%;
	animation:
		morph 12s ease-in-out infinite,
		float2 18s ease-in-out infinite;
}

.blob3 {
	width: 90px;
	height: 90px;
	background: var(--color-3);
	top: 60%;
	left: 30%;
	animation:
		morph 14s ease-in-out infinite,
		float3 20s ease-in-out infinite;
}

.blob4 {
	width: 110px;
	height: 110px;
	background: var(--color-1);
	top: 50%;
	left: 50%;
	animation:
		morph 11s ease-in-out infinite,
		float4 16s ease-in-out infinite;
}

.blob5 {
	width: 90px;
	height: 90px;
	background: rgba(224, 43, 248, 0.785);
	top: 70%;
	left: 20%;
	animation:
		morph 13s ease-in-out infinite,
		float5 19s ease-in-out infinite;
}

/* Morph-Animation для плавной смены формы */
@keyframes morph {
	0%,
	100% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
	25% {
		border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
	}
	50% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	}
	75% {
		border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
	}
}

/* Float-анимации для движения */
@keyframes float1 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(50px, -40px) rotate(10deg);
	}
	66% {
		transform: translate(-30px, 20px) rotate(-10deg);
	}
}

@keyframes float2 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(-50px, 30px) rotate(-15deg);
	}
	66% {
		transform: translate(40px, -50px) rotate(15deg);
	}
}

@keyframes float3 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(30px, 40px) rotate(5deg);
	}
	66% {
		transform: translate(-60px, -20px) rotate(-10deg);
	}
}

@keyframes float4 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(-20px, -30px) rotate(-5deg);
	}
	66% {
		transform: translate(50px, 20px) rotate(8deg);
	}
}

@keyframes float5 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(40px, 10px) rotate(7deg);
	}
	66% {
		transform: translate(-30px, -40px) rotate(-6deg);
	}
}

.hero {
	position: relative;
	margin: 35px 0 20px 0;
	overflow: hidden;
}

.hero .container {
	z-index: 10;
}

.author-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	color: var(--title);
	& span {
		text-transform: none;
		font-weight: 400;
		color: var(--txt);
	}
}

.img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid var(--link);
	box-shadow: 0 0 8px var(--title);
}

.hero-glow {
	pointer-events: none;
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 55% at 50% 0%, rgba(245, 200, 67, 0.13) 0%, transparent 70%),
		radial-gradient(ellipse 40% 30% at 20% 100%, rgba(230, 78, 108, 0.08) 0%, transparent 70%);
	z-index: 0;
}

.hero-badge {
	position: absolute;
	top: 20px;
	right: -35px;
	width: 150px;
	text-align: center;
	background: var(--color-1);
	box-shadow: 0 1px 3px var(--title);
	color: white;
	padding: 5px 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	transform: rotate(45deg);
	z-index: 1;
}

.hero h1 {
	text-align: center;
	text-shadow: 1px 1px 2px var(--color-3);
	z-index: 10;
}

.p-txt {
	color: var(--txt);
	margin-bottom: 10px;
}

.hero-stats {
	display: inline-flex;
	align-items: center;
	gap: 32px;
	background: var(--c-surface);
	border: 1px solid var(--c-border);
	border-radius: 999px;
	padding: 13px 32px;
}
.stat {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.stat-num {
	font-family: var(--ff-head);
	font-size: 1.64px;
	font-weight: 800;
	color: var(--c-accent);
	line-height: 1;
}
.stat-label {
	font-size: 0.7rem;
	color: var(--c-accent);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: 0.15rem;
}
.stat-divider {
	width: 1px;
	height: 36px;
	background: var(--c-border);
}

.hero-top {
	display: flex;
	gap: 10px;
	margin: 10px;
}

.read-more-checker {
	display: none;
}

.hero-txt {
	max-height: 1000px;
	overflow: hidden;
	transition: max-height 0.4s ease;
	position: relative;
}
.read-more-button {
	display: none;
	cursor: pointer;
	color: var(--color-1);
	font-weight: bold;
	margin-top: 10px;
}

.read-more-button::before {
	content: 'More';
}

.read-more-checker:checked ~ .hero-txt {
	max-height: 1000px;
}

.read-more-checker:checked ~ .read-more-button::before {
	content: 'Less';
}

.hero-txt::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 40px;
	background: linear-gradient(transparent, var(--link));
	pointer-events: none;
}

.read-more-checker:checked ~ .hero-txt::after {
	display: none;
}

.container {
	padding: 10px 20px;
	background: var(--container);
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);
	border-radius: var(--radius);
	box-shadow: 0 0 7px var(--txt);
	transition: all 0.3s ease;
}

.container:hover {
	box-shadow: 0 0 12px var(--color-1);
}

/* ── SECTIONS ── */
section {
	margin-bottom: 40px;
}

.section {
	padding: 0 100px;
}

.section h2 {
	font-size: clamp(1.64px, 2.5vw, 32px);
	font-weight: 800;
	letter-spacing: -0.03em;
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: var(--color-2);
	text-shadow: 0 2px 3px var(--txt-second);
	border-bottom: 1px solid var(--border);
}
.section h3,
.section-sub {
	font-size: 18px;
	font-weight: 700;
	color: var(--header);
	padding-left: 10px;
	margin: 10px 0;
	letter-spacing: 1px;
	text-align: center;
}

/* ── CASINO LIST ── */
.casino-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 20px;
}

.casino-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px 20px;
	background: var(--card);
	border-radius: 0 calc(var(--radius) * 2) calc(var(--radius) * 2) 0;
	box-shadow: 0 0 3px var(--color-3);
	transition: all 0.3s ease;
	overflow: hidden;
}

.casino-card:nth-child(1) {
	--hover-shadow-color: var(--color-4);
}

.casino-card:nth-child(2) {
	--hover-shadow-color: var(--color-2);
}

.casino-card:nth-child(3) {
	--hover-shadow-color: var(--color-3);
}

.casino-card:nth-child(4) {
	--hover-shadow-color: var(--color-1);
}

.casino-card:has(.btn-secondary:hover) {
	box-shadow: 0 0 10px var(--hover-shadow-color);
}

.casino-card:has(.btn-secondary:hover) img {
	transform: scale(1.2);
}

.casino-card--featured {
	border-color: rgba(247, 189, 17, 0.35);
	background: linear-gradient(135deg, rgba(245, 200, 67, 0.05) 0%, var(--c-surface) 60%);
}
.casino-card--featured:hover {
	border-color: var(--c-accent);
}

.casino-rank {
	position: absolute;
	top: 0;
	left: 0;
	padding: 5px;
	background: var(--color-1);
	color: var(--white);
	border-radius: 0 6px 6px 0;
	font-size: 11px;
	font-weight: 800;
	z-index: 100;
}

.casino-badge-new {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-4);
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	padding: 3px 7px;
	border-radius: var(--radius);
	text-transform: uppercase;
}

.casino-logo-wrap,
.user-img {
	background: var(--white);
	border: 5px solid var(--color-2);
	box-shadow: 0 0 7px var(--title);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.5s ease;
}

.casino-logo-wrap {
	width: 150px;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.casino-logo-wrap a {
	display: flex;
}

.casino-logo-wrap img {
	width: 100%;
	height: auto;
	transition: transform 0.6s ease;
}

.user-img {
	width: 100px;
	height: 100px;
}

.user-img img {
	width: 100%;
	height: 100%;
}

.casino-info {
	flex: 1;
	min-width: 0;
}

.casino-name {
	font-size: 24px;
	font-weight: 700;
	color: var(--txt);
	border-bottom: 1px solid var(--shadow);
	margin-bottom: 8px;
}

.casino-bonus {
	font-size: 14px;
	font-weight: 600;
	color: var(--txt);
	margin-bottom: 8px;
}

.casino-features {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}
.casino-features li {
	font-size: 12px;
	color: var(--txt-second);
}

.casino-rating {
	display: flex;
	align-items: center;
	gap: 0.64px;
}
.stars {
	color: goldenrod;
	font-size: 14px;
}
.rating-text {
	font-size: 12px;
	color: var(--txt-second);
	font-weight: 600;
}

.casino-cta-wrap {
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 7px;
	flex-shrink: 0;
}

.btn {
	display: inline-block;
	font-weight: 600;
	padding: 8px 14px;
	transition: all 0.35s;
	cursor: pointer;
}
.btn-primary {
	border: 3px solid var(--white);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--title);
	text-shadow: 1px 1px 2px var(--white);
	box-shadow: 5px 5px 5px var(--title);
}
.btn-primary:hover {
	border: 3px solid var(--color-3);
	box-shadow: -3px -3px 8px var(--color-2);
	background: var(--white);
	color: var(--title);
	transform: scale(0.98);
}
.btn-secondary {
	border-radius: var(--radius);
	background: var(--txt-second);
	color: var(--white);
	text-shadow: 1px 1px 2px var(--title);
	box-shadow: 2px 2px 3px var(--title);
}
.btn-secondary:hover {
	background: var(--color-1);
	transform: scale(0.98);
}

.cta-note {
	font-size: 0.632px;
	color: var(--c-muted);
	text-align: center;
	max-width: 130px;
	line-height: 1.4;
}

blockquote {
	font-size: 14px;
	border-left: 3px solid var(--color-1);
	margin: 10px 0;
	padding: 10px;
}

/* ── FEATURE GRID ── */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-top: 16px;
}

.feature-card {
	background: var(--hover);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 1px 1px 2px var(--color-1);
	padding: 28px 24px;
	transition:
		border-color 0.2s,
		transform 0.2s;
}

.feature-icon {
	font-size: 32px;
	margin-bottom: 12px;
	display: block;
}

.feature-card h3 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: 0.15px;
}
.feature-card p {
	font-size: 13px;
	color: var(--color-4);
	text-shadow: 0 0 1px var(--title);
	line-height: 1.65;
	letter-spacing: 0.95px;
}

/* ── TWO COL ── */
.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 24px;
}

/* ── CHECKLIST ── */
.check-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 8px;
}
.check-list li {
	font-size: 14px;
	background: var(--card);
	color: var(--txt);
	text-shadow: 1px 1px 1px var(--txt-second);
	padding: 5px;
	position: relative;
}

/* ── COMPARE TABLE ── */
.compare-table-wrap {
	overflow-x: auto;
	margin: 24px 0 32px;
	border-radius: var(--card-radius);
	border: 2px solid var(--border);
}

.compare-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.compare-table thead {
	background: var(--txt-second);
}
.compare-table th {
	padding: 14px 16px;
	text-align: left;
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	text-shadow: 1px 1px 1px var(--color-4);
	letter-spacing: 1px;
	text-transform: uppercase;
}
.compare-table td {
	padding: 13px 20px;
	border-top: 1px solid var(--c-border);
	color: var(--c-muted);
}
.compare-table tr:first-child td {
	border-top: none;
}
.compare-table tr:hover td {
	background: rgba(255, 255, 255, 0.025);
}
.compare-table td:first-child {
	font-weight: 600;
	color: var(--c-text);
}

.compare-table tbody tr:nth-child(odd) {
	box-shadow: 0 0 4px var(--txt);
}

.compare-table tbody tr:nth-child(even) {
	background: var(--card);
}

.good {
	color: var(--c-good) !important;
}
.neutral {
	color: var(--c-muted) !important;
}

.detail-wrapper {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.brand-logo {
	width: 60%;
	border-radius: var(--radius);
	overflow: hidden;
	& img {
		width: 100%;
		height: auto;
		border-radius: var(--radius);
		box-shadow: 0 4px 4px var(--color-4);
	}
}

.detail-info {
	width: 40%;
}

/* ── STEP LIST ── */
.step-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 8px;
}
.step-list li {
	display: flex;
	align-items: center;
	gap: 13px;
	font-size: 0.88rem;
	color: var(--c-muted);
}

/* ── PROS & CONS ── */
.pros-cons-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 24px;
}

.pros-block,
.cons-block {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 0 8px var(--shadow);
	padding: 28px;
}
.pros-block {
	background: linear-gradient(-135deg, var(--color-3), transparent 30%), var(--hover);
	border-top: 3px solid var(--color-3);
}
.cons-block {
	background: linear-gradient(-135deg, var(--color-4), transparent 30%), var(--hover);
	border-top: 3px solid var(--color-4);
}

.title-pros {
	color: var(--color-3) !important;
}
.title-cons {
	color: var(--color-4) !important;
}
.pros-block ul,
.cons-block ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.pros-block ul li,
.cons-block ul li {
	font-size: 13px;
	color: var(--txt-second);
	padding-left: 13px;
	position: relative;
}
ol li {
	margin-left: 15px;
}
.list {
	list-style: none;
	padding-left: 20px;
	margin-left: 10px;
	color: var(--txt-second);
}

.list li::before {
	content: '❯';
	position: absolute;
	left: 35px;
	color: var(--color-4);
	font-weight: 500;
}
.pros-block ul li::before {
	content: '+';
	position: absolute;
	left: 0;
	color: var(--color-3);
	font-weight: 700;
}

.cons-block ul li::before {
	content: '–';
	position: absolute;
	left: 0;
	color: var(--color-4);
	font-weight: 700;
}

.review-list {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	& h3 {
		padding-bottom: 5px;
		border-bottom: 1px solid var(--border);
	}
}

.rewiev-item:nth-child(1) {
	--border-color: var(--color-4);
}

.rewiev-item:nth-child(2) {
	--border-color: var(--color-2);
}

.rewiev-item:nth-child(3) {
	--border-color: var(--color-3);
}

.rewiev-item p {
	padding-left: 5px;
	border-left: 3px solid var(--border-color);
}

/* ── FAQ ── */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 24px;
}

.faq-item {
	background: var(--hover);
	border: 1px solid var(--border);
	border-left: 4px solid var(--color-4);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.2s;
}

.faq-item:nth-child(odd) {
	border-left: 4px solid var(--color-1);
}

.faq-item[open] {
	border-color: var(--color-3);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	cursor: pointer;
	list-style: none;
	gap: 16px;
	user-select: none;
}
.faq-question::-webkit-details-marker {
	display: none;
}
.faq-question h3 {
	font-size: 15px;
	font-weight: 500;
	color: var(--title);
	letter-spacing: 0.15px;
	border: none;
	margin: 0;
}
.faq-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--txt-second);
	border-radius: 50%;
	font-size: 16px;
	color: var(--txt-second);
	font-weight: 700;
	transition:
		transform 0.25s,
		background 0.2s;
}
.faq-item[open] .faq-icon {
	transform: rotate(45deg);
	background: var(--color-3);
	color: var(--white);
}

.faq-answer {
	padding: 12px 20px;
	border-top: 2px solid var(--card);
	background: var(--white);
}
.faq-answer p {
	font-size: 14px;
	line-height: 1.7;
}

.cookie-checkbox {
	display: none;
}

.cookie-checkbox:checked + .cookie-modal {
	display: none;
}

.cookie-modal {
	position: fixed;
	bottom: 0;
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-around;
	padding: 8px 16px;

	border-radius: 0 var(--radius) var(--radius) 0;
	background: var(--color-1);
	box-shadow: 0 0 9px var(--txt);
	z-index: 1000;
	transition: opacity 0.3s ease;
}

.cookie-modal p {
	font-size: 12px;
	margin: 5px;
}

.icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: auto;
	border-radius: 50%;
	background: var(--white);
	& img {
		width: 100%;
	}
}

.agree {
	cursor: pointer;
	border-radius: var(--radius);
	background: var(--link);
	color: var(--white);
}

/* ── FOOTER ── */
.site-footer {
	margin-top: 64px;
	background: var(--header);
	border-top: 1px solid var(--border);
}
.footer-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
}

.footer-logo {
	position: absolute;
	left: 20px;
	display: flex;
	align-items: center;
	& img {
		width: 60px;
	}
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}
.footer-links a {
	font-size: 12px;
	color: var(--white);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-links a:hover {
	color: var(--color-4);
}

.footer-disclaimer p {
	font-size: 13px;
	margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
	header {
		padding: 8px 25px;
		overflow: hidden;
	}

	.logo img {
		width: 60px;
	}

	.logo-badge {
		font-size: 12px;
	}

	.hero {
		padding: 5px;
		margin: 5px;
	}
	.hero-stats {
		gap: 16px;
		padding: 12px 20px;
	}
	.stat-num {
		font-size: 1.15rem;
	}

	.section {
		padding: 0 10px;
	}

	.casino-card {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.casino-rank {
		writing-mode: horizontal-tb;
		transform: none;
	}

	.casino-badge-new {
		left: 80%;
	}
	.casino-logo-wrap img {
		margin: 0 auto;
	}
	.two-col {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.pros-cons-grid {
		grid-template-columns: 1fr;
	}
	.feature-grid {
		grid-template-columns: 1fr;
	}

	.compare-table th,
	.compare-table td {
		padding: 0.7rem 12px;
		font-size: 0.78rem;
	}

	.brand-logo {
		width: 50%;
	}

	.detail-info {
		width: 50%;
	}

	.hero-stats {
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	header {
		padding: 6px 20px;
	}

	.main-nav {
		display: none;
	}

	.main-nav a {
		font-size: 12px;
	}

	.btn-primary {
		padding: 6px 12px;
	}

	.hero {
		margin: 1px;
	}

	.hero-txt {
		max-height: 4.5em;
	}

	.hero-txt::after {
		display: block;
	}

	.read-more-button {
		display: block;
	}
	.section {
		padding: 0 3px;
	}

	.hero-badge {
		font-size: 8px;
		top: 13px;
		right: -50px;
	}

	.hero-stats {
		display: none;
	}

	.hero h1 {
		font-size: 1.55rem;
		line-height: 1.2;
	}
	.hero-top {
		margin: 5px;
	}
	.author-info {
		font-size: 10px;
	}
	.section h2 {
		font-size: 20px;
	}
	.p-txt {
		font-size: 14px;
	}
	.container {
		padding: 10px 5px;
	}
	/* .section img {
		max-width: 316px;
	} */
	.casino-card {
		display: flex;
		flex-direction: column;
		border-radius: var(--radius);
	}

	.detail-wrapper {
		flex-direction: column;
	}

	.brand-logo,
	.detail-info {
		width: 100%;
	}
	.list li::before {
		left: 15px;
	}
	.review-list {
		flex-direction: column;
	}
	.footer-logo {
		position: relative;
	}
	.footer-links {
		flex-direction: column;
	}
	.footer-links a {
		font-size: 15px;
	}
}
