/* --- Цветовые переменные бренда --- */
:root {
	--brand-blue: #1a4fa3;
	--brand-blue-dark: #142e4d;
	--brand-blue-light: #2196f3;
	--brand-cyan: #00cfff;
	--brand-yellow: #ffd600;
	--brand-yellow-dark: #e6b800;
	--brand-orange: #ff9800;
	--brand-purple: #7c3aed;
	--brand-pink: #ff4fa3;
	--brand-grey: #232b3e;
	--brand-gradient: linear-gradient(90deg, #1a4fa3 0%, #00cfff 100%);
	--brand-gradient-yellow: linear-gradient(90deg, #ffd600 0%, #ff9800 100%);
	--brand-gradient-purple: linear-gradient(90deg, #7c3aed 0%, #ff4fa3 100%);
	--brand-shadow: 0 4px 24px rgba(26, 79, 163, 0.15);
	--text-dark: #232b3e;
	--text-light: #fff;
}

body {
	background: #002b66 !important;
	color: var(--text-light);
	font-family: 'Montserrat', Arial, sans-serif;

	background-position: top center;
	background-size: contain;
	overflow-x: hidden;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
body:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/Mask.png');
	background-repeat: repeat-y;
	background-position: center;
	background-size: contain;
	z-index: 0;
	pointer-events: none;
}

.bg-brand-blue {
	background: #003366 !important;
	position: relative;
	overflow: hidden;
}

.text-brand-yellow {
	color: var(--brand-yellow) !important;
}

.text-brand {
	color: var(--brand-yellow) !important;
	text-decoration: none !important;
	font-weight: 600;
	transition: color 0.2s ease;
}

.text-brand:hover {
	color: #fff200 !important;
	text-decoration: underline !important;
}

.btn-warning {
	background: var(--brand-yellow);
	color: #222;
	font-weight: bold;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.btn-warning:hover {
	background: var(--brand-yellow-dark);
}

/* --- HEADER --- */
header {
	background: var(--brand-blue);
	box-shadow: var(--brand-shadow);
}
header nav a {
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-left: 8px;
}
header nav a.btn-success {
	background: var(--brand-gradient);
	border: none;
	color: var(--text-light);
}
header nav a.btn-success:hover {
	background: var(--brand-blue-light);
}
header nav a.btn-warning {
	background: var(--brand-gradient-yellow);
	color: var(--text-dark);
	border: none;
}
header nav a.btn-warning:hover {
	background: var(--brand-yellow-dark);
	color: var(--text-light);
}

/* --- HEADER MENU & BUTTONS (точно как на скрине) --- */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
.py-2 {
	padding-top: 0.5rem !important;
	padding-bottom: 0rem !important;
}
header nav.menu {
	background-color: #2445a6 !important;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	background: transparent;
	border-top: 4px solid #000;
	margin-top: 12px;
	margin-bottom: 0;
	padding: 10px 0 10px 0;
}
header nav.menu a {
	font-family: 'Fira Sans', Arial, sans-serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
	color: var(--brand-yellow);
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
	padding: 0 18px;
	text-decoration: none;
	transition: color 0.2s;
}
header nav.menu a:hover {
	color: #fff200;
}

header .header-actions {
	display: flex;
	gap: 16px;
}
header .header-actions .btn-header {
	font-family: 'Fira Sans', Arial, sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 16px;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(180deg, #4bb6ff 0%, #2196f3 100%);
	border: 1px solid #000;
	border-radius: 7px;
	box-shadow:
		-0.65px 5.2px 0px 0px #1599fe inset,
		0px -5.2px 0px 0px #0a4aec inset,
		0px 2px 0px 0px #000000;
	padding: 10px 44px 10px 44px;
	margin-top: 0;
	margin-bottom: 0;
	letter-spacing: 0;
	text-align: center;
	text-shadow:
		-2px -2px 0 #000,
		2px -2px 0 #000,
		-2px 2px 0 #000,
		2px 2px 0 #000;
	transition:
		background 0.2s,
		color 0.2s,
		box-shadow 0.1s,
		transform 0.1s;
	position: relative;
	display: inline-block;
	text-decoration: none !important;
	overflow: visible;
	transform: skew(-12deg);
}
header .header-actions .btn-header span {
	display: inline-block;
	transform: skew(12deg);
}
header .header-actions .btn-header:hover {
	background: linear-gradient(180deg, #2196f3 0%, #1a4fa3 100%);
	color: #fff200;
}
header .header-actions .btn-header:active {
	box-shadow:
		-0.65px 2.2px 0px 0px #1599fe inset,
		0px -2.2px 0px 0px #0a4aec inset,
		0px 1px 0px 0px #000000;
	transform: skew(-12deg) translateY(2px);
}
@media (max-width: 768px) {
	header .header-actions .btn-header {
		font-size: 1.1rem;
		padding: 2px 16px 2px 16px;
		border-radius: 8px;
	}
}

/* --- HERO --- */
.hero {
	position: relative;
	background-image:
		url('../images/hero-bg1.webp'), url('../images/hero-characters.webp');
	background-size: cover, contain;
	background-position:
		center,
		bottom center;
	background-repeat: no-repeat, no-repeat;
	box-shadow: var(--brand-shadow);
	color: var(--text-light);
	overflow: hidden;
	margin-bottom: 32px;
	min-height: 450px;
	padding: 40px 20px;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgb(0 73 175 / 42%) 50.02%, #0049af 100%);
	z-index: 0;
	pointer-events: none;
}
.hero > * {
	position: relative;
	z-index: 1;
}
.img-characters {
	z-index: -1;
	max-width: 380px;
}
.hero-content {
	margin-top: -130px;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
	padding: 20px;
	gap: 15px;
}

@media (max-width: 768px) {
	.hero {
		min-height: 500px;
		padding: 30px 15px;
		margin-bottom: 20px;
	}
	.hero-content {
		margin-top: -80px;
		padding: 15px;
		gap: 12px;
	}
	.img-characters {
		max-width: 280px;
	}
}

@media (max-width: 480px) {
	.hero {
		min-height: 450px;
		padding: 20px 10px;
	}
	.hero-content {
		margin-top: -60px;
		padding: 10px;
		gap: 10px;
	}
	.img-characters {
		max-width: 240px;
	}
}
.hero .btn-warning {
	font-family: 'Kanit', Arial, sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 28.9px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	background: linear-gradient(180deg, #02ff08 0%, #02db08 100%);
	border: 3px solid #000;
	border-radius: 10px;
	box-shadow:
		0 6px 0 #111,
		0 8px 20px rgba(0, 0, 0, 0.4);
	color: #fff;
	text-shadow:
		-2px -2px 0 #000,
		2px -2px 0 #000,
		-2px 2px 0 #000,
		2px 2px 0 #000;
	padding: 18px 70px !important;
	margin: 10px auto;
	display: inline-block;
	transform: skew(-8deg);
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.hero .btn-warning::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s;
}

.hero .btn-warning:hover::before {
	left: 100%;
}

.hero .btn-warning span {
	display: inline-block;
	transform: skew(8deg);
	position: relative;
	z-index: 1;
}

.hero .btn-warning:hover {
	background: linear-gradient(180deg, #00ff47 0%, #02db08 100%);
	color: #fff;
	transform: skew(-8deg) translateY(-2px);
	box-shadow:
		0 8px 0 #111,
		0 12px 25px rgba(0, 255, 71, 0.4);
}

.hero .btn-warning:active {
	box-shadow:
		0 2px 0 #111,
		0 4px 10px rgba(0, 0, 0, 0.4);
	transform: skew(-8deg) translateY(4px);
}

@media (max-width: 768px) {
	.hero .btn-warning {
		font-size: 22px;
		padding: 14px 50px !important;
		border-width: 2px;
	}
}

@media (max-width: 480px) {
	.hero .btn-warning {
		font-size: 18px;
		padding: 12px 35px !important;
		border-width: 2px;
		box-shadow:
			0 4px 0 #111,
			0 6px 15px rgba(0, 0, 0, 0.4);
	}

	.hero .btn-warning:hover {
		box-shadow:
			0 5px 0 #111,
			0 8px 20px rgba(0, 255, 71, 0.4);
	}
}

.hero-content h1.display-5 {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 24px;
	line-height: 1.3;
	letter-spacing: 0.5px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	text-shadow:
		-3px -3px 0 #000,
		3px -3px 0 #000,
		-3px 3px 0 #000,
		3px 3px 0 #000,
		0 0 20px rgba(13, 202, 240, 0.8),
		0 0 40px rgba(13, 202, 240, 0.5);
	margin-bottom: 0.5rem;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
	.hero-content h1.display-5 {
		font-size: 20px;
		line-height: 1.2;
	}
}

@media (max-width: 480px) {
	.hero-content h1.display-5 {
		font-size: 18px;
		line-height: 1.2;
		text-shadow:
			-2px -2px 0 #000,
			2px -2px 0 #000,
			-2px 2px 0 #000,
			2px 2px 0 #000,
			0 0 15px rgba(13, 202, 240, 0.8);
	}
}

/* --- WELCOME BONUS SPAN STYLES --- */
.hero-content span.display-5 {
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 22px;
	line-height: 1.3;
	letter-spacing: 0.5px;
	text-align: center;
	text-transform: uppercase;
	color: #0dfff2;
	text-shadow:
		-3px -3px 0 #000,
		3px -3px 0 #000,
		-3px 3px 0 #000,
		3px 3px 0 #000,
		0 0 20px rgba(13, 255, 242, 0.8),
		0 0 40px rgba(13, 255, 242, 0.5);
	margin-bottom: 0.5rem;
	display: block;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
	.hero-content span.display-5 {
		font-size: 18px;
		line-height: 1.2;
	}
}

@media (max-width: 480px) {
	.hero-content span.display-5 {
		font-size: 16px;
		line-height: 1.2;
		text-shadow:
			-2px -2px 0 #000,
			2px -2px 0 #000,
			-2px 2px 0 #000,
			2px 2px 0 #000,
			0 0 15px rgba(13, 255, 242, 0.8);
	}
}

.hero-content .display-3 {
	max-width: 600px;
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 68px;
	line-height: 1.1;
	text-transform: uppercase;
	text-align: center;
	color: #ffd600;
	text-shadow:
		-4px -4px 0 #000,
		4px -4px 0 #000,
		-4px 4px 0 #000,
		4px 4px 0 #000,
		0 0 30px rgba(255, 214, 0, 0.8),
		0 0 50px rgba(255, 152, 0, 0.6),
		0 6px 0 #ff9800;
	letter-spacing: 2px;
	margin-bottom: 1.2rem;
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
	padding: 0 10px;
}

@media (max-width: 768px) {
	.hero-content .display-3 {
		font-size: 42px;
		line-height: 1.1;
		letter-spacing: 1px;
		text-shadow:
			-3px -3px 0 #000,
			3px -3px 0 #000,
			-3px 3px 0 #000,
			3px 3px 0 #000,
			0 0 20px rgba(255, 214, 0, 0.8),
			0 4px 0 #ff9800;
	}
}

@media (max-width: 480px) {
	.hero-content .display-3 {
		font-size: 32px;
		line-height: 1.1;
		letter-spacing: 0.5px;
		text-shadow:
			-2px -2px 0 #000,
			2px -2px 0 #000,
			-2px 2px 0 #000,
			2px 2px 0 #000,
			0 0 15px rgba(255, 214, 0, 0.8),
			0 3px 0 #ff9800;
		padding: 0 5px;
	}
}

/* --- CATEGORIES --- */
.categories,
.slider-section {
	/* background: #0048ac; убран, фон теперь только у body */
}
.categories .btn-outline-light {
	color: var(--brand-yellow);
	border: 2px solid var(--brand-yellow);
	font-weight: 600;
	border-radius: 8px;
}
.categories .btn-outline-light:hover {
	background: var(--brand-yellow);
	color: var(--brand-blue);
}

.categories-bar {
	gap: 28px;
}
.category-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background-image: url('../images/Group.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	min-width: 180px;
	min-height: 56px;
	transform: skew(-10deg);
	position: relative;
	text-decoration: none;
	transition:
		box-shadow 0.15s,
		background 0.2s;
	justify-content: center;
}
.category-item span {
	font-family: 'Kanit', Arial, sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 16px;
	color: #ffd600;
	text-shadow:
		-2px -2px 0 #000,
		2px -2px 0 #000,
		-2px 2px 0 #000,
		2px 2px 0 #000;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transform: skew(10deg);
	display: inline-block;
}
.category-item .cat-icon {
	width: 40px;
	height: 40px;
	position: absolute;
	left: 0px;
	transform: skew(10deg);
}
.category-item.category-search {
	background: #ffd600;
	border-radius: 16px;
	min-width: 56px;
	min-height: 56px;
	box-shadow: 6px 8px 0 #000;
	padding: 8px;
	justify-content: center;
}
.category-item.category-search .cat-icon {
	width: 44px;
	height: 44px;
	margin: 0;
}

/* --- SLIDER --- */

.slider-section h2 {
	color: var(--brand-yellow);
}
.slider-section .slider .slick-slide {
	margin: 0 8px;
	text-align: center;
	padding: 10px;
}

/* --- TABLES --- */
.seo-table {
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(26, 79, 163, 0.1);
	padding: 24px 16px;
	margin-bottom: 24px;
}
.seo-table h2 {
	color: #ffd600;
	font-family: 'Kanit', Arial, sans-serif;
	font-weight: 700;
	font-style: italic;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
}
.seo-table .table {
	background: transparent;
	color: #fff;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 0;
	border: 1.5px solid #003b7a;
}
.seo-table .table th,
.seo-table .table td {
	border-color: #2196f3;
	font-family: 'Kanit', Arial, sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 1.1rem;
	text-shadow: 1px 1px 0 #000;
	background: #2196f3;
	color: #fff;
}
.seo-table .table th {
	color: #ffd600;
	background: #1a4fa3;
	border-bottom: 2px solid #ffd600;
}
.seo-table .table-striped > tbody > tr:nth-of-type(odd) > * {
	background: #0048ac;
	--bs-table-color-type: var(--bs-table-striped-color);
	--bs-table-bg-type: #2196f3;
}
.seo-table .table-striped > tbody > tr:nth-of-type(even) > * {
	background: #1a4fa3;
}
@media (max-width: 768px) {
	.seo-table {
		padding: 12px 4px;
		border-radius: 8px;
	}
	.seo-table .table th,
	.seo-table .table td {
		font-size: 0.95rem;
	}
}

/* --- FOOTER --- */
footer {
	background: var(--brand-grey);
	color: var(--text-light);
	border-radius: 0 0 16px 16px;
	box-shadow: var(--brand-shadow);
}

/* --- ADAPTIVE --- */
@media (max-width: 1200px) {
	.slider-section .slider .slick-slide {
		margin: 0 4px;
	}
}
@media (max-width: 992px) {
	.hero {
		padding: 1.5rem 0;
	}
	.slider-section,
	.seo-table {
		padding: 1rem 0.5rem;
	}
}
@media (max-width: 768px) {
	header .container,
	.hero .container,
	.slider-section .container,
	.seo-table .container {
		padding-left: 8px;
		padding-right: 8px;
	}
	.hero img {
		max-height: 320px;
	}
	.slider-section .slider .slick-slide {
		padding: 4px;
	}
	.categories {
		display: flex;
		flex-direction: column;
		gap: 8px !important;
		padding: 16px 8px;
	}
	.categories-mobile {
		display: flex;
		flex-direction: row;
		gap: 16px;
		justify-content: center;
		width: 100%;
	}
	.categories-mobile .category-item {
		min-width: 130px;
		max-width: 130px;
	}
	.categories-mobile .category-search {
		min-width: 56px;
		max-width: 56px;
	}
	.categories-mobile .category-search img {
		width: 50px;
		height: 45px;
	}
	.categories-mobile .category-item .cat-icon {
		width: 30px;
		height: 30px;
		left: -15px;
	}
	header nav.menu {
		gap: 16px;
	}
	header .header-actions .btn-header {
		font-size: 15px;
		padding: 6px 16px;
	}
}
@media (max-width: 480px) {
	.hero {
		border-radius: 10px;
	}
	.slider-section,
	.seo-table {
		border-radius: 10px;
	}
	.slider-section .slider .slick-slide {
		margin: 0 2px;
	}
}

/* --- SIDEBAR --- */
.burger-icon {
	display: block;
}
.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: 270px;
	height: 100vh;
	background: #1a4fa3;
	box-shadow: 2px 0 16px rgba(0, 0, 0, 0.25);
	z-index: 2000;
	transform: translateX(-100%);
	transition: transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
	padding: 32px 24px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.img-cov {
	width: 100%;
	height: 100%;
	max-width: 900px;
	margin: 15px auto;
}

.img-cov img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.sidebar.open {
	transform: translateX(0);
}
.close-sidebar {
	background: none;
	border: none;
	color: #fff;
	font-size: 2.5rem;
	position: absolute;
	top: 18px;
	right: 18px;
	cursor: pointer;
	z-index: 2100;
}
.sidebar-menu {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 40px;
}
.sidebar-menu a {
	font-family: 'Fira Sans', Arial, sans-serif;
	font-weight: 700;
	font-size: 1.2rem;
	color: #ffd600;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: color 0.2s;
}
.sidebar-menu a:hover {
	color: #fff200;
}
@media (max-width: 768px) {
	.sidebar {
		width: 80vw;
		min-width: 180px;
	}
}

.slider-header {
	margin-bottom: 12px;
}

.slider-seeall,
.slider-title {
	font-family: 'Kanit', Arial, sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 22px;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.5px;
	margin-right: 8px;
	display: flex;
	align-items: center;
	gap: 4px;
	text-shadow:
		-2px -2px 0 #000,
		2px -2px 0 #000,
		-2px 2px 0 #000,
		2px 2px 0 #000;
	transition: color 0.2s;
}

.games-slider {
	width: 100%;
	display: flex;
	overflow-x: auto;
	justify-content: center;
}
.games-slider .game-card {
	margin: 0 8px;
	min-width: 180px;
	max-width: 180px;
	position: relative;
	text-decoration: none;
	display: block;
}
.games-slider .game-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.games-slider.slick-slider {
	margin-left: -8px;
	margin-right: -8px;
}
.games-slider .slick-slide {
	padding: 0 4px;
}
.games-slider .slick-arrow {
	display: none !important;
}

@media (max-width: 768px) {
	.slider-title-label {
		font-size: 20px;
		padding: 2px 10px 2px 18px;
	}
	.games-slider .game-card {
		min-width: 120px;
		max-width: 150px;
	}
	.slider-seeall {
		font-size: 14px;
	}
}

.categories-bar-mobile .slick-slide > div {
	display: flex;
	justify-content: center;
}
.categories-bar-mobile .category-item,
.categories-bar-mobile .category-search {
	min-width: 140px;
	max-width: 160px;
	margin: 0 auto;
}

.faq-accordion .accordion-item {
	background: #1a4fa3;
	border-radius: 8px;
	margin-bottom: 16px;
	border: 1.5px solid #003b7a;
	box-shadow: 0 2px 8px rgba(26, 79, 163, 0.1);
}
.faq-accordion .accordion-button {
	font-family: 'Kanit', Arial, sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 1.3rem;
	color: #fff;
	background: #2196f3;
	border-radius: 8px;
	box-shadow: none;
	border: none;
	outline: none;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
	transition:
		background 0.2s,
		color 0.2s;
}
.faq-accordion .accordion-button:not(.collapsed) {
	background: #1a4fa3;
	color: #ffd600;
}
.faq-accordion .accordion-body {
	background: #0048ac;
	color: #fff;
	border-radius: 0 0 8px 8px;
	font-size: 1.1rem;
	text-shadow: 1px 1px 0 #000;
}
.faq-accordion .accordion-button:after {
	filter: invert(1) drop-shadow(0 0 1px #000);
}
@media (max-width: 768px) {
	.faq-accordion .accordion-button {
		font-size: 1rem;
	}
	.faq-accordion .accordion-item {
		margin-bottom: 10px;
	}
}

.info-lists {
	/* background: #0048ac; убран, фон теперь только у body */
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(26, 79, 163, 0.1);
	margin-bottom: 24px;
}
.info-list-block {
	background: #4f8fff;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(26, 79, 163, 0.1);
	padding: 24px 20px;
	height: 100%;
}
.info-list-title {
	font-family: 'Kanit', Arial, sans-serif;
	font-weight: 700;
	font-style: italic;
	color: #ffd600;
	font-size: 1.35rem;
	margin-bottom: 16px;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
}
.info-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.info-list li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 14px;
	color: #fff;
	font-family: 'Kanit', Arial, sans-serif;
	font-weight: 500;
	font-size: 1.08rem;
	text-shadow: 1px 1px 0 #000;
}
.info-list li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: linear-gradient(90deg, #ffd600 0%, #ff9800 100%);
	box-shadow: 0 1px 2px #0006;
}
@media (max-width: 768px) {
	.info-lists {
		border-radius: 10px;
	}
	.info-list-block {
		padding: 16px 8px;
	}
	.info-list-title {
		font-size: 1.1rem;
	}
	.info-list li {
		font-size: 0.98rem;
		padding-left: 26px;
	}
	.info-list li:before {
		width: 12px;
		height: 12px;
		top: 7px;
	}
}

/* --- GAMES PAGE SECTIONS --- */
.info-text {
	margin-bottom: 32px;
}
.games-list {
	margin-bottom: 40px;
}
@media (max-width: 768px) {
	.info-text {
		margin-bottom: 20px;
	}
	.games-list {
		margin-bottom: 24px;
	}
}

.footer-menu {
	display: flex;
	justify-content: center;
	gap: 32px;
	margin-bottom: 8px;
}
.footer-link {
	font-family: 'Kanit', Arial, sans-serif;
	font-weight: 700;
	font-style: italic;
	color: #ffd600;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 1.08rem;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
	transition: color 0.2s;
}
.footer-link:hover {
	color: #fff200;
	text-decoration: underline;
}
@media (max-width: 768px) {
	.footer-menu {
		gap: 16px;
	}
	.footer-link {
		font-size: 0.98rem;
	}
}

.site-footer {
	background: linear-gradient(180deg, #003a8c 0%, #002260 100%);
	color: #fff;
	border-radius: 0;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
	padding: 0;
	font-family: 'Kanit', Arial, sans-serif;
	margin-top: 32px;
	position: relative;
	overflow: hidden;
}
.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ffd600 0%, #0dfff2 50%, #ffd600 100%);
}
.footer-top {
	padding: 28px 0 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom {
	padding: 18px 0;
	background: rgba(0, 0, 0, 0.15);
}
.footer-payments {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.footer-pay-icon {
	height: 34px;
	width: auto;
	opacity: 0.85;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}
.footer-pay-icon:hover {
	opacity: 1;
	transform: scale(1.1);
}
.footer-pay-more {
	color: #ffd600;
	font-weight: 700;
	font-style: italic;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	gap: 2px;
	cursor: pointer;
	transition: color 0.2s;
}
.footer-pay-more:hover {
	color: #fff200;
}
.footer-arrow {
	font-size: 1.3em;
	margin-left: 2px;
}
.footer-license-icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 28px;
	margin-bottom: 10px;
}
.footer-license-icon {
	height: 40px;
	width: auto;
	background: none;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}
.footer-license-icon:hover {
	opacity: 1;
}
.footer-license-title {
	color: #fff;
	font-weight: 700;
	font-style: italic;
	font-size: 1.15rem;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
	cursor: pointer;
}
.footer-warning {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	margin-bottom: 0;
	padding: 10px 20px;
	background: rgba(255, 68, 68, 0.12);
	border: 1px solid rgba(255, 68, 68, 0.25);
	border-radius: 8px;
	display: inline-block;
	max-width: 700px;
	line-height: 1.5;
}
.footer-copy {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
	margin-top: 12px;
}
.footer-divider {
	width: 60px;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 214, 0, 0.5),
		transparent
	);
	margin: 16px auto;
}
@media (max-width: 768px) {
	.site-footer {
		border-radius: 0;
	}
	.footer-top {
		padding: 20px 0 16px 0;
	}
	.footer-bottom {
		padding: 14px 0;
	}
	.footer-pay-icon {
		height: 26px;
	}
	.footer-license-icon {
		height: 30px;
	}
	.footer-license-title {
		font-size: 1rem;
	}
	.footer-warning {
		font-size: 0.82rem;
		padding: 8px 14px;
		max-width: 90%;
	}
	.footer-copy {
		font-size: 0.8rem;
	}
}

.site-footer,
.footer-warning,
.footer-copy {
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0;
	text-align: center;
	vertical-align: middle;
}

/* --- CUSTOM H2 AND H3 STYLES --- */
h2.h4 {
	font-size: 2.2rem !important;
	font-family: 'Kanit', sans-serif !important;
	font-weight: 700 !important;
	font-style: italic !important;
	color: var(--brand-yellow) !important;
	text-shadow:
		-2px -2px 0 #000,
		2px -2px 0 #000,
		-2px 2px 0 #000,
		2px 2px 0 #000 !important;
	margin-bottom: 1rem !important;
}

h3.h5 {
	font-size: 1.4rem !important;
	font-family: 'Kanit', sans-serif !important;
	font-weight: 700 !important;
	font-style: italic !important;
	color: #0dfff2 !important;
	text-shadow:
		-2px -2px 0 #000,
		2px -2px 0 #000,
		-2px 2px 0 #000,
		2px 2px 0 #000 !important;
	margin-top: 1.5rem !important;
	margin-bottom: 0.8rem !important;
	padding-bottom: 0.5rem !important;
	border-bottom: 2px solid rgba(13, 255, 242, 0.3) !important;
	display: inline-block !important;
}

@media (max-width: 768px) {
	h2.h4 {
		font-size: 1.8rem !important;
	}

	h3.h5 {
		font-size: 1.15rem !important;
		margin-top: 1.2rem !important;
	}
}

/* --- PROVIDERS LIST STYLES --- */
.providers-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
	margin-top: 1rem;
}

.providers-list li {
	position: relative;
	padding: 12px 16px 12px 40px;
	margin-bottom: 8px;
	color: #fff;
	font-family: 'Kanit', Arial, sans-serif;
	font-weight: 500;
	font-size: 1.05rem;
	text-shadow: 1px 1px 0 #000;
	background: rgba(79, 143, 255, 0.3);
	border-radius: 8px;
	border: 1px solid rgba(255, 214, 0, 0.2);
	transition: all 0.3s ease;
}

.providers-list li:before {
	content: '🎮';
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.2rem;
}

.providers-list li:hover {
	background: rgba(79, 143, 255, 0.5);
	border-color: var(--brand-yellow);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(26, 79, 163, 0.3);
}

@media (max-width: 768px) {
	.providers-list {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 8px;
	}

	.providers-list li {
		font-size: 0.95rem;
		padding: 10px 12px 10px 35px;
	}

	.providers-list li:before {
		left: 10px;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.providers-list {
		grid-template-columns: 1fr;
	}
}

/* --- TEXT OVERFLOW AND VIEWPORT FIXES --- */
* {
	box-sizing: border-box;
}

p,
li,
td,
th,
div,
span,
a {
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.container {
	max-width: 100%;
	overflow-x: hidden;
}

/* Paragraph styles with proper spacing and overflow handling */
p {
	margin-bottom: 1rem;
	line-height: 1.6;
	max-width: 100%;
	overflow-wrap: break-word;
	word-break: break-word;
}

/* Info text section fixes */
.info-text p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 1rem;
	max-width: 100%;
}

@media (max-width: 768px) {
	.info-text p {
		font-size: 1rem;
		line-height: 1.6;
	}
}

@media (max-width: 480px) {
	.info-text p {
		font-size: 0.95rem;
		line-height: 1.5;
	}
}

/* Table overflow fixes */
.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.seo-table .table {
	width: 100%;
	table-layout: auto;
}

.seo-table .table th,
.seo-table .table td {
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-width: 200px;
}

@media (max-width: 768px) {
	.seo-table .table th,
	.seo-table .table td {
		max-width: 150px;
		font-size: 0.85rem;
		padding: 8px 4px;
	}
}

/* Prevent horizontal scroll on small screens */
@media (max-width: 768px) {
	body,
	html {
		max-width: 100vw;
		overflow-x: hidden;
	}

	.container {
		padding-left: 12px;
		padding-right: 12px;
	}

	section {
		padding-left: 8px;
		padding-right: 8px;
	}
}

/* --- HERO H1 STYLES --- */
.hero-content h1 {
	font-family: 'Kanit', sans-serif !important;
	font-weight: 700 !important;
	font-style: italic !important;
	font-size: 3.5rem !important;
	color: #fff !important;
	text-transform: uppercase !important;
	text-shadow:
		-3px -3px 0 #000,
		3px -3px 0 #000,
		-3px 3px 0 #000,
		3px 3px 0 #000 !important;
	margin-bottom: 0.5rem !important;
	letter-spacing: 2px !important;
	line-height: 1.1 !important;
}

@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.5rem !important;
		letter-spacing: 1px !important;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem !important;
		letter-spacing: 0.5px !important;
	}
}

/* --- CTA BUTTON STYLES --- */
.cta-button {
	font-family: 'Kanit', Arial, sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	text-align: center;
	text-transform: uppercase;
	background: linear-gradient(180deg, #02ff08 0%, #02db08 100%);
	border: 3px solid #000;
	border-radius: 10px;
	box-shadow:
		0 6px 0 #111,
		0 8px 20px rgba(0, 0, 0, 0.4);
	color: #fff;
	text-shadow:
		-2px -2px 0 #000,
		2px -2px 0 #000,
		-2px 2px 0 #000,
		2px 2px 0 #000;
	padding: 16px 50px;
	margin: 20px auto;
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transform: skew(-8deg);
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s;
}

.cta-button:hover::before {
	left: 100%;
}

.cta-button span {
	display: inline-block;
	transform: skew(8deg);
}

.cta-button:hover {
	background: linear-gradient(180deg, #00ff47 0%, #02db08 100%);
	color: #fff;
	text-shadow:
		-2px -2px 0 #000,
		2px -2px 0 #000,
		-2px 2px 0 #000,
		2px 2px 0 #000;
	transform: skew(-8deg) translateY(-2px);
	box-shadow:
		0 8px 0 #111,
		0 12px 25px rgba(0, 255, 71, 0.4);
	text-decoration: none;
}

.cta-button:active {
	box-shadow:
		0 2px 0 #111,
		0 4px 10px rgba(0, 0, 0, 0.4);
	transform: skew(-8deg) translateY(4px);
}

.cta-container {
	text-align: center;
	margin: 30px 0;
	clear: both;
}

@media (max-width: 768px) {
	.cta-button {
		font-size: 18px;
		padding: 14px 40px;
		border-width: 2px;
	}
}

@media (max-width: 480px) {
	.cta-button {
		font-size: 16px;
		padding: 12px 30px;
		width: 90%;
		max-width: 300px;
		border-width: 2px;
		box-shadow:
			0 4px 0 #111,
			0 6px 15px rgba(0, 0, 0, 0.4);
	}

	.cta-button:hover {
		box-shadow:
			0 5px 0 #111,
			0 8px 20px rgba(0, 255, 71, 0.4);
	}
}

/* --- INLINE CONTENT IMAGES --- */
.content-image {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
	margin: 1.5rem 0;
	display: block;
}

.content-image-float-right {
	float: right;
	max-width: 45%;
	margin: 0 0 1.5rem 1.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.content-image-float-left {
	float: left;
	max-width: 45%;
	margin: 0 1.5rem 1.5rem 0;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
	.content-image-float-right,
	.content-image-float-left {
		float: none;
		max-width: 100%;
		margin: 1rem 0;
		display: block;
	}
}

/* --- NORMAL LIST STYLES --- */
.normal-list {
	list-style: disc;
	padding-left: 1.5rem;
	margin: 1rem 0;
}

.normal-list li {
	color: #fff;
	text-shadow: 1px 1px 0 #000;
	margin-bottom: 0.5rem;
	line-height: 1.5;
}

.normal-list-ordered {
	list-style: decimal;
	padding-left: 1.5rem;
	margin: 1rem 0;
}

.normal-list-ordered li {
	color: #fff;
	text-shadow: 1px 1px 0 #000;
	margin-bottom: 0.5rem;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.normal-list,
	.normal-list-ordered {
		padding-left: 1.2rem;
		margin: 0.8rem 0;
	}

	.normal-list li,
	.normal-list-ordered li {
		font-size: 0.95rem;
		margin-bottom: 0.4rem;
	}
}

/* --- GAME TAG CHIPS --- */
.game-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0.8rem 0 1.2rem 0;
}
.game-tags li {
	background: linear-gradient(
		135deg,
		rgba(33, 150, 243, 0.4) 0%,
		rgba(26, 79, 163, 0.6) 100%
	);
	border: 1px solid rgba(255, 214, 0, 0.3);
	border-radius: 20px;
	padding: 8px 18px;
	color: #fff;
	font-family: 'Kanit', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	text-shadow: 1px 1px 0 #000;
	transition: all 0.3s ease;
	cursor: default;
}
.game-tags li:hover {
	background: linear-gradient(
		135deg,
		rgba(33, 150, 243, 0.7) 0%,
		rgba(26, 79, 163, 0.8) 100%
	);
	border-color: var(--brand-yellow);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 214, 0, 0.2);
}
.game-category-label {
	color: var(--brand-yellow);
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 1.1rem;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
	margin-bottom: 0.5rem;
	display: block;
}
@media (max-width: 480px) {
	.game-tags li {
		font-size: 0.85rem;
		padding: 6px 14px;
	}
}

/* --- STEP CARDS --- */
.steps-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
	counter-reset: step-counter;
}
.steps-list li {
	counter-increment: step-counter;
	position: relative;
	background: linear-gradient(
		135deg,
		rgba(79, 143, 255, 0.25) 0%,
		rgba(26, 79, 163, 0.4) 100%
	);
	border: 1px solid rgba(33, 150, 243, 0.3);
	border-left: 4px solid var(--brand-yellow);
	border-radius: 10px;
	padding: 16px 16px 16px 60px;
	margin-bottom: 12px;
	color: #fff;
	font-size: 1.05rem;
	text-shadow: 1px 1px 0 #000;
	transition: all 0.3s ease;
	line-height: 1.5;
}
.steps-list li::before {
	content: counter(step-counter);
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	background: linear-gradient(180deg, #ffd600 0%, #ff9800 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: #000;
	text-shadow: none;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.steps-list li:hover {
	background: linear-gradient(
		135deg,
		rgba(79, 143, 255, 0.4) 0%,
		rgba(26, 79, 163, 0.5) 100%
	);
	border-left-color: #0dfff2;
	transform: translateX(4px);
}
@media (max-width: 768px) {
	.steps-list li {
		padding: 14px 14px 14px 52px;
		font-size: 0.95rem;
	}
	.steps-list li::before {
		width: 28px;
		height: 28px;
		font-size: 0.85rem;
		left: 12px;
	}
}

/* --- DOC LIST (KYC documents) --- */
.doc-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
}
.doc-list li {
	position: relative;
	padding: 10px 10px 10px 38px;
	margin-bottom: 8px;
	color: #fff;
	text-shadow: 1px 1px 0 #000;
	background: rgba(79, 143, 255, 0.15);
	border-radius: 8px;
	border: 1px solid rgba(33, 150, 243, 0.2);
	font-size: 1rem;
	line-height: 1.5;
}
.doc-list li::before {
	content: '📄';
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.1rem;
}

/* --- VIP TIER CARDS --- */
.vip-tiers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin: 1.5rem 0;
}
.vip-card {
	background: linear-gradient(
		135deg,
		rgba(79, 143, 255, 0.3) 0%,
		rgba(26, 79, 163, 0.5) 100%
	);
	border: 1.5px solid rgba(33, 150, 243, 0.3);
	border-radius: 12px;
	padding: 20px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.vip-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
}
.vip-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	border-color: var(--brand-yellow);
}
.vip-card.vip-tier-3 {
	border-color: rgba(255, 214, 0, 0.3);
}
.vip-card.vip-tier-3::before {
	background: linear-gradient(90deg, #ffd600, #ff9800);
}
.vip-card.vip-tier-4 {
	border-color: rgba(124, 58, 237, 0.4);
}
.vip-card.vip-tier-4::before {
	background: linear-gradient(90deg, #7c3aed, #ff4fa3);
}
.vip-card.vip-tier-5 {
	border-color: rgba(255, 79, 163, 0.4);
}
.vip-card.vip-tier-5::before {
	background: linear-gradient(90deg, #ff4fa3, #ffd600);
}
.vip-badge {
	display: inline-block;
	font-family: 'Kanit', sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 1.15rem;
	color: var(--brand-yellow);
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
	margin-bottom: 12px;
}
.vip-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.vip-card ul li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 8px;
	color: #fff;
	font-size: 0.95rem;
	text-shadow: 1px 1px 0 #000;
	line-height: 1.4;
}
.vip-card ul li::before {
	content: '▸';
	position: absolute;
	left: 4px;
	color: var(--brand-yellow);
	font-size: 1rem;
}
@media (max-width: 768px) {
	.vip-tiers {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
	.vip-card {
		padding: 16px;
	}
	.vip-badge {
		font-size: 1rem;
	}
	.vip-card ul li {
		font-size: 0.9rem;
	}
}
@media (max-width: 480px) {
	.vip-tiers {
		grid-template-columns: 1fr;
	}
}

/* --- PROS/CONS LISTS --- */
.pros-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
	margin-top: 1rem;
}
.pros-list li {
	position: relative;
	padding: 12px 16px 12px 40px;
	margin-bottom: 8px;
	color: #fff;
	font-family: 'Kanit', Arial, sans-serif;
	font-weight: 500;
	font-size: 1.05rem;
	text-shadow: 1px 1px 0 #000;
	background: rgba(2, 219, 8, 0.12);
	border-radius: 8px;
	border: 1px solid rgba(2, 219, 8, 0.3);
	transition: all 0.3s ease;
}
.pros-list li::before {
	content: '✅';
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.1rem;
}
.pros-list li:hover {
	background: rgba(2, 219, 8, 0.22);
	border-color: #02db08;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(2, 219, 8, 0.2);
}
.cons-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
	margin-top: 1rem;
}
.cons-list li {
	position: relative;
	padding: 12px 16px 12px 40px;
	margin-bottom: 8px;
	color: #fff;
	font-family: 'Kanit', Arial, sans-serif;
	font-weight: 500;
	font-size: 1.05rem;
	text-shadow: 1px 1px 0 #000;
	background: rgba(255, 68, 68, 0.12);
	border-radius: 8px;
	border: 1px solid rgba(255, 68, 68, 0.3);
	transition: all 0.3s ease;
}
.cons-list li::before {
	content: '❌';
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.1rem;
}
.cons-list li:hover {
	background: rgba(255, 68, 68, 0.22);
	border-color: #ff4444;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 68, 68, 0.2);
}
@media (max-width: 768px) {
	.pros-list,
	.cons-list {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 8px;
	}
	.pros-list li,
	.cons-list li {
		font-size: 0.95rem;
		padding: 10px 12px 10px 35px;
	}
}
@media (max-width: 480px) {
	.pros-list,
	.cons-list {
		grid-template-columns: 1fr;
	}
}
