* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-bg: #0f1419;
	--secondary-bg: #1a1f2e;
	--card-bg: #252b3b;
	--accent-blue: #5b6ef5;
	--accent-orange: #ff8c42;
	--accent-purple: #8b5cf6;
	--text-primary: #ffffff;
	--text-secondary: #a0aec0;
	--gradient-hero: linear-gradient(
		135deg,
		#2d1b4e 0%,
		#1e3a5f 50%,
		#2d1b4e 100%
	);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	background-color: var(--primary-bg);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgba(15, 20, 25, 0.95);
	backdrop-filter: blur(10px);
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--text-primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo-icon {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
	padding: 8px;
}

.hamburger span {
	width: 24px;
	height: 3px;
	background-color: var(--text-primary);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

.nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

.nav a:hover {
	color: var(--text-primary);
}

.header-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.search-box {
	position: relative;
	display: flex;
	align-items: center;
}

.search-box input {
	background-color: var(--card-bg);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 0.6rem 1rem 0.6rem 2.5rem;
	color: var(--text-primary);
	width: 200px;
	transition: all 0.3s ease;
}

.search-box input:focus {
	outline: none;
	border-color: var(--accent-blue);
	width: 250px;
}

.search-icon {
	position: absolute;
	left: 12px;
	color: var(--text-secondary);
}

.btn {
	padding: 0.7rem 1.5rem;
	border-radius: 24px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 0.95rem;
	display: inline-block;
	text-align: center;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	color: var(--text-primary);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(91, 110, 245, 0.4);
}

.btn-secondary {
	background-color: var(--accent-orange);
	color: var(--text-primary);
}

.btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 140, 66, 0.4);
}

.sidebar {
	position: fixed;
	left: 0;
	top: 70px;
	bottom: 0;
	width: 250px;
	background-color: var(--secondary-bg);
	padding: 2rem 1rem;
	transform: translateX(0);
	transition: transform 0.3s ease;
	z-index: 999;
	overflow-y: auto;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar.hidden {
	transform: translateX(-100%);
}

.sidebar-menu {
	list-style: none;
}

.sidebar-menu li {
	margin-bottom: 0.5rem;
}

.sidebar-menu a {
	display: block;
	padding: 0.8rem 1rem;
	color: var(--text-secondary);
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.sidebar-menu a:hover {
	background-color: var(--card-bg);
	color: var(--text-primary);
}

.main-content {
	margin-left: 250px;
	margin-top: 70px;
	transition: margin-left 0.3s ease;
}

.main-content.full-width {
	margin-left: 0;
}

/* Updated hero section styles for slider */
.hero {
	background: var(--gradient-hero);
	position: relative;
	overflow: hidden;
	min-height: 600px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
	opacity: 0.3;
}

.hero-slider-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slider {
	display: flex;
	transition: transform 0.5s ease;
	touch-action: pan-y;
}

.hero-slide {
	min-width: 100%;
	padding: 4rem 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 600px;
	position: relative;
	isolation: isolate;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	text-align: center;
}

.hero-title {
	font-size: 3rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #fff, #a0aec0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.hero-bonus {
	font-size: 4rem;
	font-weight: bold;
	margin: 1.5rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.bonus-percent {
	background: linear-gradient(135deg, #5b6ef5, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.bonus-spins {
	background-color: #ffd700;
	color: #000;
	padding: 0.5rem 1.5rem;
	border-radius: 16px;
	font-size: 2rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hero p {
	font-size: 1.1rem;
	color: var(--text-primary);
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero .btn {
	font-size: 1.2rem;
	padding: 1rem 3rem;
}
.hero-slider-controls {
	display: none;
}
.hero-slide-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	opacity: 0.5;
}
@media (max-width: 767px) {
	.hero-slider-controls {
		position: absolute;
		bottom: 10px;
		right: 10px;
		display: flex;
		gap: 1rem;
		z-index: 10;
	}
}

.hero-slider-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: rgba(37, 43, 59, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--text-primary);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	backdrop-filter: blur(10px);
}

.hero-slider-btn:hover {
	background-color: var(--accent-blue);
	border-color: var(--accent-blue);
}

.hero-slider-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 10;
}

.hero-slider-dots .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.hero-slider-dots .dot.active {
	background-color: var(--accent-blue);
	width: 30px;
	border-radius: 5px;
}

.section {
	padding: 4rem 2rem;
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	gap: 1rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.section-title {
	font-size: 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.section-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}

.show-all-btn {
	padding: 0.6rem 1.5rem;
	background-color: var(--accent-blue);
	color: var(--text-primary);
	text-decoration: none;
	border-radius: 24px;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.show-all-btn:hover {
	background-color: var(--accent-purple);
	transform: translateY(-2px);
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
}

.advantage-card {
	background-color: var(--card-bg);
	padding: 2rem 1rem;
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
	border-color: var(--accent-blue);
}

.advantage-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
}

.advantage-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.advantage-card p {
	color: var(--text-secondary);
	line-height: 1.8;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.stat-card {
	background-color: var(--card-bg);
	padding: 2.5rem;
	border-radius: 16px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px);
	border-color: var(--accent-blue);
}

.stat-number {
	font-size: 3rem;
	font-weight: bold;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--text-secondary);
	font-size: 1.1rem;
}

.games-carousel {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	padding: 1rem 0;
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: var(--accent-blue) var(--card-bg);
	max-width: 1200px;
	margin: 0 auto;
}

.games-carousel::-webkit-scrollbar {
	height: 8px;
}

.games-carousel::-webkit-scrollbar-track {
	background: var(--card-bg);
	border-radius: 4px;
}

.games-carousel::-webkit-scrollbar-thumb {
	background: var(--accent-blue);
	border-radius: 4px;
}

.game-card {
	min-width: 200px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: var(--card-bg);
}

.game-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.game-card img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}

.game-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: var(--accent-orange);
	color: var(--text-primary);
	padding: 0.3rem 0.8rem;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: bold;
}

.providers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.provider-card {
	background-color: var(--card-bg);
	padding: 1rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	cursor: pointer;
}

.provider-card:hover {
	transform: translateY(-5px);
	border-color: var(--accent-blue);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.provider-card img {
	max-width: 100%;
	height: auto;
	filter: brightness(0.9);
	transition: filter 0.3s ease;
}

.provider-card:hover img {
	filter: brightness(1.1);
}

.cta-section {
	background: var(--gradient-hero);
	padding: 5rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
	opacity: 0.3;
}

.cta-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.cta-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-section p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

.footer {
	background-color: var(--secondary-bg);
	padding: 4rem 2rem 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h3 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: var(--accent-blue);
}

.footer-section p {
	color: var(--text-secondary);
	line-height: 1.8;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.disclaimer {
	background-color: var(--card-bg);
	padding: 1.5rem;
	border-radius: 12px;
	margin-bottom: 2rem;
	border-left: 4px solid var(--accent-orange);
}

.disclaimer p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
}

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

@media (max-width: 1024px) {
	.sidebar {
		transform: translateX(-100%);
	}

	.sidebar.active {
		transform: translateX(0);
	}

	.main-content {
		margin-left: 0;
	}

	.hamburger {
		display: flex;
	}

	.nav {
		display: none;
	}
}

@media (max-width: 768px) {
	.header {
		padding: 1rem;
	}

	.search-box {
		display: none;
	}

	.header-actions {
		gap: 0.5rem;
	}

	.btn {
		padding: 0.6rem 1rem;
		font-size: 0.85rem;
	}

	.hero {
		min-height: 500px;
	}

	.hero-slide {
		padding: 3rem 1rem;
		min-height: 500px;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.hero-bonus {
		font-size: 2.5rem;
		flex-direction: column;
	}

	.bonus-spins {
		font-size: 1.5rem;
	}

	.hero-slider-controls {
		bottom: 10px;
	}

	.hero-slider-btn {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.section {
		padding: 3rem 1rem;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.advantages-grid {
		grid-template-columns: 1fr;
	}

	.stat-number {
		font-size: 2.5rem;
	}

	.cta-section {
		padding: 3rem 1rem;
	}

	.cta-section h2 {
		font-size: 1.8rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}
@media (max-width: 480px) {
	.header-actions {
		display: none;
	}
}
@media (max-width: 320px) {
	.hero h1 {
		font-size: 1.5rem;
	}

	.hero-bonus {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.3rem;
	}
}
