* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--color-primary: #fdb913;
	--color-primary-dark: #e0a510;
	--color-primary-light: #ffca28;
	--color-secondary: #3d4420;
	--color-background: #0a0a0a;
	--color-card-bg: #1a1a1a;
	--color-text: #ffffff;
	--color-text-secondary: #9ca3af;
	--color-border: #2a2a2a;
	--color-overlay: rgba(0, 0, 0, 0.85);
	--sidebar-width: 240px;
	--header-height: 70px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	background-color: var(--color-background);
	color: var(--color-text);
	line-height: 1.6;
	overflow-x: hidden;
}

.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: var(--sidebar-width);
	height: 100vh;
	background: linear-gradient(180deg, #3d4420 0%, #2a2e18 50%, #1f2410 100%);
	border-right: 1px solid rgba(253, 185, 19, 0.1);
	z-index: 1000;
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5);
}

.sidebar-header {
	padding: 24px 20px;
	border-bottom: 1px solid rgba(253, 185, 19, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f6b815;
}

.logo {
	display: flex;
	align-items: center;
}

.logo-text {
	font-size: 24px;
	font-weight: 800;
	color: var(--color-primary);
	letter-spacing: 1px;
	text-shadow: 0 2px 8px rgba(253, 185, 19, 0.3);
}

.sidebar-close {
	display: none;
	background: none;
	border: none;
	color: var(--color-text);
	font-size: 24px;
	cursor: pointer;
	padding: 0;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition: background-color 0.2s;
}

.sidebar-close:hover {
	background-color: var(--color-card-bg);
}

.sidebar-nav {
	flex: 1;
	padding: 20px 0;
	overflow-y: auto;
}

.nav-link {
	display: block;
	padding: 14px 20px;
	color: var(--color-text-secondary);
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.2s;
	border-left: 3px solid transparent;
	position: relative;
}

.nav-link::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background: linear-gradient(
		90deg,
		rgba(253, 185, 19, 0.1) 0%,
		transparent 100%
	);
	transition: width 0.3s ease;
}

.nav-link:hover::before {
	width: 100%;
}

.nav-link:hover {
	color: var(--color-primary);
	border-left-color: var(--color-primary);
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--color-overlay);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

.main-content {
	margin-left: var(--sidebar-width);
	min-height: 100vh;
	transition: margin-left 0.3s ease;
}

.header {
	position: sticky;
	top: 0;
	background: linear-gradient(90deg, #3d4420 0%, #4a5028 50%, #3d4420 100%);
	border-bottom: 1px solid rgba(253, 185, 19, 0.15);
	z-index: 900;
	height: var(--header-height);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 32px;
	height: 100%;
	max-width: 1600px;
	margin: 0 auto;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 8px;
}

.menu-toggle span {
	width: 24px;
	height: 2px;
	background-color: var(--color-text);
	border-radius: 2px;
	transition: all 0.3s;
}

.header-logo {
	display: none;
}
.header-logo img,
.logo img{
height: 35px;
object-fit: contain;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.btn-login,
.btn-register {
	padding: 12px 28px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
	position: relative;
	overflow: hidden;
	letter-spacing: 0.5px;
}

.btn-login {
	color: var(--color-text);
	background-color: transparent;
	border: 2px solid rgba(253, 185, 19, 0.3);
}

.btn-login:hover {
	background-color: rgba(253, 185, 19, 0.1);
	border-color: var(--color-primary);
	color: var(--color-primary);
	box-shadow: 0 0 16px rgba(253, 185, 19, 0.2);
}

.btn-register {
	color: #2a2e18;
	background: linear-gradient(135deg, #fdb913 0%, #ffca28 100%);
	border: none;
	box-shadow: 0 4px 12px rgba(253, 185, 19, 0.3);
}

.btn-register:hover {
	background: linear-gradient(135deg, #ffca28 0%, #fdb913 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(253, 185, 19, 0.5);
}

.btn-register:active {
	transform: translateY(0);
}

.language-selector {
	padding: 8px 12px;
	background-color: var(--color-card-bg);
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.language-selector:hover {
	background-color: var(--color-border);
}

.flag {
	font-size: 20px;
}

.hero {
	position: relative;
	background: var(--color-background);
}

.carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease;
}

.carousel-slide {
	min-width: 100%;
	display: none;
}

.carousel-slide.active {
	display: block;
}

.carousel-slide img {
	width: 100%;
	height: auto;
	display: block;
	max-height: 500px;
	object-fit: cover;
	border-radius: 0;
}

.carousel-nav {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s;
}

.carousel-dot.active {
	background-color: var(--color-primary);
	width: 32px;
	border-radius: 6px;
}

.carousel-arrows {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	pointer-events: none;
}

.carousel-arrow {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #fdb913 0%, #ffca28 100%);
	color: #2a2e18;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: all;
	font-weight: bold;
	box-shadow: 0 4px 16px rgba(253, 185, 19, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.carousel-arrow:hover {
	background: linear-gradient(135deg, #ffca28 0%, #fdb913 100%);
	transform: scale(1.1);
	box-shadow: 0 6px 24px rgba(253, 185, 19, 0.6);
}

.carousel-arrow:active {
	transform: scale(1);
}

.slots {
	padding: 80px 0;
	background: linear-gradient(180deg, var(--color-background) 0%, #0f0f0f 100%);
}

.container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 32px;
}

.section-title {
	font-size: 40px;
	font-weight: 800;
	color: var(--color-text);
	margin-bottom: 48px;
	display: block;

	background: linear-gradient(135deg, #ffffff 0%, #fdb913 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 28px;
	margin-bottom: 48px;
}

.slot-card {
	background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	position: relative;

	border: 1px solid rgba(253, 185, 19, 0.1);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.slot-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 16px;
	padding: 2px;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-light) 100%
	);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s;
}

.slot-card:hover::before {
	opacity: 1;
}

.slot-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(253, 185, 19, 0.3),
		0 0 0 1px rgba(253, 185, 19, 0.2);
}

.slot-image {
	position: relative;
	width: 100%;
	height: 220px;
	overflow: hidden;

	background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.slot-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slot-card:hover .slot-image img {
	transform: scale(1.08);
}

.slot-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slot-card:hover .slot-overlay {
	opacity: 1;
}

.play-button {
	padding: 14px 36px;
	background: linear-gradient(135deg, #fdb913 0%, #ffca28 100%);
	color: #2a2e18;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 16px rgba(253, 185, 19, 0.4);
	border: 2px solid rgba(255, 255, 255, 0.2);
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.play-button:hover {
	background: linear-gradient(135deg, #ffca28 0%, #fdb913 100%);
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 8px 24px rgba(253, 185, 19, 0.6);
}

.play-button:active {
	transform: translateY(0) scale(1);
}

.slot-info {
	padding: 20px;

	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(253, 185, 19, 0.03) 100%
	);
}

.slot-name {
	font-size: 17px;
	font-weight: 700;
	color: var(--color-text);
	display: block;
	margin-bottom: 10px;

	letter-spacing: 0.3px;
}

.slot-meta {
	display: flex;
	align-items: center;
	gap: 8px;
}

.trophy {
	font-size: 18px;

	filter: drop-shadow(0 0 4px rgba(253, 185, 19, 0.5));
}

.jackpot {
	font-size: 15px;
	color: var(--color-primary);
	font-weight: 700;

	text-shadow: 0 0 8px rgba(253, 185, 19, 0.3);
	letter-spacing: 0.5px;
}

.section-footer {
	display: flex;
	justify-content: center;
}

.btn-more {
	padding: 16px 56px;
	background: transparent;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	border-radius: 10px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
	position: relative;

	letter-spacing: 1px;
	text-transform: uppercase;
}

.btn-more:hover {
	background: linear-gradient(135deg, #fdb913 0%, #ffca28 100%);
	color: #2a2e18;
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(253, 185, 19, 0.4);
}

.btn-more:active {
	transform: translateY(0);
}

.providers {
	padding: 80px 0;

	background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
	position: relative;
}

.providers::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		var(--color-primary) 50%,
		transparent 100%
	);
}

.providers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;
}

.provider-card {
	background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
	border-radius: 12px;
	padding: 2rem 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	border: 1px solid rgba(253, 185, 19, 0.1);
	position: relative;
	overflow: hidden;
}

.provider-card::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(253, 185, 19, 0.1) 50%,
		transparent 70%
	);
	transform: rotate(45deg);
	transition: all 0.5s;
	opacity: 0;
}

.provider-card:hover::after {
	left: 100%;
	opacity: 1;
}

.provider-card:hover {
	border-color: var(--color-primary);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(253, 185, 19, 0.2);
	background: linear-gradient(135deg, #1f1f1f 0%, #1a1a1a 100%);
}

.provider-logo {
	text-align: center;
}
.provider-logo img {
	height: 50px;
	object-fit: contain;
	width: 100%;
}

.provider-name {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-text);

	letter-spacing: 0.5px;
	text-align: center;
}

.footer {
	background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 50%, #0a0a0a 100%);
	padding: 60px 0 30px;
	border-top: 1px solid rgba(253, 185, 19, 0.15);

	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-heading {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 12px;
	display: block;
	letter-spacing: 0.5px;
}

.footer-text {
	font-size: 14px;
	color: var(--color-text-secondary);
	line-height: 1.6;
}

.footer-link {
	color: var(--color-text-secondary);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}

.footer-link:hover {
	color: var(--color-primary);

	transform: translateX(4px);
}

.footer-disclaimer {
	padding: 32px;
	background: linear-gradient(
		135deg,
		rgba(253, 185, 19, 0.05) 0%,
		rgba(253, 185, 19, 0.02) 100%
	);
	border-radius: 12px;
	margin-bottom: 30px;

	border: 1px solid rgba(253, 185, 19, 0.1);
}

.footer-disclaimer p {
	font-size: 13px;
	color: var(--color-text-secondary);
	line-height: 1.6;
	text-align: center;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
	border-top: 1px solid var(--color-border);
	flex-wrap: wrap;
	gap: 20px;
}

.copyright {
	font-size: 14px;
	color: var(--color-text-secondary);
}

.payment-methods {
	display: flex;
	gap: 12px;
}

.payment-icon {
	font-size: 24px;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.payment-icon:hover {
	opacity: 1;
}

.content-section {
	padding: 80px 0;
	background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
	position: relative;
}

.content-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		var(--color-primary) 50%,
		transparent 100%
	);
}

.content-section h1 {
	font-size: 48px;
	font-weight: 800;
	color: var(--color-text);
	margin-bottom: 32px;
	background: linear-gradient(135deg, #ffffff 0%, #fdb913 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

.content-section h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--color-primary);
	margin-top: 56px;
	margin-bottom: 24px;
	letter-spacing: -0.3px;
	line-height: 1.3;
	position: relative;
	padding-bottom: 16px;
}

.content-section h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
	border-radius: 2px;
}

.content-section h3 {
	font-size: 28px;
	font-weight: 600;
	color: var(--color-text);
	margin-top: 48px;
	margin-bottom: 20px;
	letter-spacing: -0.2px;
	line-height: 1.4;
}

.content-section h4 {
	font-size: 22px;
	font-weight: 600;
	color: var(--color-primary-light);
	margin-top: 40px;
	margin-bottom: 16px;
	letter-spacing: 0;
	line-height: 1.4;
}

.content-section p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--color-text-secondary);
	margin-bottom: 24px;
	max-width: 900px;
}

.content-section ul,
.content-section ol {
	margin-bottom: 32px;
	padding-left: 32px;
	max-width: 900px;
}

.content-section ul li,
.content-section ol li {
	font-size: 16px;
	line-height: 1.8;
	color: var(--color-text-secondary);
	margin-bottom: 12px;
	position: relative;
}

.content-section ul li {
	list-style: none;
	padding-left: 28px;
}

.content-section ul li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: bold;
	font-size: 18px;
}

.content-section ol li {
	padding-left: 12px;
	color: var(--color-text);
}

.content-section ol li::marker {
	color: var(--color-primary);
	font-weight: 700;
}

.content-section table {
	width: 100%;
	max-width: 1000px;
	border-collapse: separate;
	border-spacing: 0;
	margin: 40px 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(253, 185, 19, 0.1);
}

.content-section thead {
	background: linear-gradient(135deg, var(--color-secondary) 0%, #2a2e18 100%);
}

.content-section thead th {
	padding: 20px 24px;
	text-align: left;
	font-size: 15px;
	font-weight: 700;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
	border-bottom: 2px solid rgba(253, 185, 19, 0.2);
}

.content-section tbody tr {
	transition: background-color 0.2s;
}

.content-section tbody tr:hover {
	background-color: rgba(253, 185, 19, 0.05);
}

.content-section tbody tr:not(:last-child) {
	border-bottom: 1px solid rgba(253, 185, 19, 0.05);
}

.content-section tbody td {
	padding: 18px 24px;
	font-size: 15px;
	color: var(--color-text-secondary);
	line-height: 1.6;
}

@media (max-width: 1024px) {
	.container {
		padding: 0 24px;
	}

	.slots-grid {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		gap: 20px;
	}

	.providers-grid {
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
		gap: 20px;
	}

	.section-title {
		font-size: 32px;
		margin-bottom: 32px;
	}

	.content-section h1 {
		font-size: 36px;
	}

	.content-section h2 {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	:root {
		--sidebar-width: 280px;
		--header-height: 60px;
	}

	.sidebar {
		transform: translateX(-100%);
	}

	.sidebar.active {
		transform: translateX(0);
	}

	.sidebar-close {
		display: flex;
	}

	.main-content {
		margin-left: 0;
	}

	.menu-toggle {
		display: flex;
	}

	.header-logo,
.header-logo > *{
		display: inline-flex;
		align-items: center;
	}

	.header-container {
		padding: 0 16px;
		gap: 12px;
	}

	.header-actions {
		gap: 8px;
		flex-wrap: nowrap;
	}

	.btn-login,
	.btn-register {
		padding: 10px 16px;
		font-size: 13px;
		letter-spacing: 0.3px;
	}

	.btn-login {
		border-width: 1px;
	}

	.language-selector {
		padding: 6px 8px;
	}

	.flag {
		font-size: 18px;
	}

	.carousel-slide img {
		max-height: 300px;
	}

	.carousel-arrow {
		width: 40px;
		height: 40px;
		font-size: 24px;
	}

	.carousel-arrows {
		padding: 0 10px;
	}

	.carousel-nav {
		bottom: 20px;
		gap: 8px;
	}

	.carousel-dot {
		width: 8px;
		height: 8px;
	}

	.carousel-dot.active {
		width: 24px;
	}

	.slots {
		padding: 48px 0;
	}

	.container {
		padding: 0 16px;
	}

	.section-title {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.slots-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.slot-card {
		border-radius: 12px;
	}

	.slot-image {
		height: 160px;
	}

	.slot-info {
		padding: 12px;
	}

	.slot-name {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.jackpot {
		font-size: 13px;
	}

	.trophy {
		font-size: 14px;
	}

	.play-button {
		padding: 10px 24px;
		font-size: 13px;
	}

	.btn-more {
		padding: 12px 32px;
		font-size: 14px;
		letter-spacing: 0.5px;
	}

	.providers {
		padding: 48px 0;
	}

	.providers-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.provider-card {
		padding: 32px 16px;
	}

	.provider-name {
		font-size: 14px;
	}

	.content-section {
		padding: 48px 0;
	}

	.content-section h1 {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.content-section h2 {
		font-size: 22px;
		margin-top: 40px;
		margin-bottom: 16px;
	}

	.content-section h3 {
		font-size: 20px;
		margin-top: 32px;
		margin-bottom: 12px;
	}

	.content-section h4 {
		font-size: 18px;
		margin-top: 28px;
		margin-bottom: 12px;
	}

	.content-section p {
		font-size: 15px;
		margin-bottom: 16px;
	}

	.content-section ul,
	.content-section ol {
		padding-left: 24px;
		margin-bottom: 20px;
	}

	.content-section ul li,
	.content-section ol li {
		font-size: 14px;
		margin-bottom: 8px;
	}

	.content-section table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin: 24px 0;
	}

	.content-section thead th {
		padding: 12px 16px;
		font-size: 12px;
		white-space: nowrap;
	}

	.content-section tbody td {
		padding: 12px 16px;
		font-size: 13px;
	}

	.content-section blockquote {
		padding: 16px;
		margin: 24px 0;
		font-size: 14px;
	}

	.content-section pre {
		padding: 12px;
		font-size: 12px;
		overflow-x: auto;
	}

	.footer {
		padding: 40px 0 20px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 32px;
	}

	.footer-heading {
		font-size: 16px;
		margin-bottom: 12px;
	}

	.footer-text,
	.footer-link {
		font-size: 13px;
	}

	.footer-disclaimer {
		padding: 20px;
		margin-bottom: 24px;
	}

	.footer-disclaimer p {
		font-size: 12px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 20px;
		gap: 16px;
	}

	.copyright {
		font-size: 12px;
	}

	.payment-icon {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.header-actions {
		display: none;
	}
	.header-container {
		padding: 0 12px;
	}

	.btn-login {
		display: none;
	}

	.btn-register {
		padding: 8px 20px;
		font-size: 12px;
	}

	.language-selector {
		padding: 5px 6px;
	}

	.flag {
		font-size: 16px;
	}

	.slots-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.slot-image {
		height: 200px;
	}

	.section-title {
		font-size: 24px;
	}

	.providers-grid {
		grid-template-columns: 1fr;
	}

	.carousel-slide img {
		max-height: 250px;
	}

	.carousel-arrow {
		width: 36px;
		height: 36px;
		font-size: 20px;
	}

	.content-section h1 {
		font-size: 24px;
	}

	.content-section h2 {
		font-size: 20px;
	}

	.content-section h3 {
		font-size: 18px;
	}
}

* {
	max-width: 100%;
}

img {
	height: auto;
}

.sidebar,
.main-content,
.header-actions {
	transition: all 0.3s ease;
}
.accordion-item {
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}

.accordion-header {
	padding: 16px 20px;
	cursor: pointer;
	font-weight: 600;
	color: inherit;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: border-color 0.3s ease;
	background: transparent;
}

.accordion-header:hover {
	background: transparent;
}

.accordion-header.active {
}

.accordion-icon {
	font-size: 18px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 12px;
}

.accordion-header.active .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: transparent;
}

.accordion-content.active {
	max-height: 2000px;
}

.accordion-body {
	padding: 16px 20px;
	color: inherit;
	line-height: 1.6;
	border-top: 1px solid #d0d0d0;
}
