* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-purple: #6b46c1;
	--primary-blue: #3b82f6;
	--dark-bg: #0f0f23;
	--darker-bg: #0a0a15;
	--card-bg: #1a1a2e;
	--text-primary: #ffffff;
	--text-secondary: #a0aec0;
	--accent-orange: #ff6b35;
	--accent-green: #4ecb71;
	--gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-blue: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	--gradient-hero: linear-gradient(
		135deg,
		#1e1b4b 0%,
		#312e81 50%,
		#1e3a8a 100%
	);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	background: var(--dark-bg);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: 80px;
	height: 100vh;
	background: var(--darker-bg);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
	z-index: 1000;
	transition: transform 0.3s ease;
}

.sidebar-header {
	margin-bottom: 30px;
}

.logo {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-icon {
	font-size: 32px;
}

.sidebar-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	padding: 15px 10px;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 11px;
	border-left: 3px solid transparent;
}

.nav-item:hover {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.05);
	border-left-color: var(--primary-purple);
}

.nav-icon {
	font-size: 24px;
}

.nav-text {
	text-align: center;
	line-height: 1.2;
}

.mobile-header {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: var(--darker-bg);
	z-index: 999;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
}

.mobile-logo {
	display: flex;
	align-items: center;
	gap: 8px;
}

.logo-text {
	font-size: 20px;
	font-weight: bold;
}

.mobile-actions {
	display: flex;
	gap: 10px;
}

.mobile-login,
.mobile-register {
	padding: 6px 12px;
	text-decoration: none;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.mobile-login {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.1);
}

.mobile-register {
	color: var(--text-primary);
	background: var(--accent-orange);
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
	padding: 5px;
}

.hamburger span {
	width: 22px;
	height: 2px;
	background: var(--text-primary);
	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);
}

.main-content {
	margin-left: 80px;
	min-height: 100vh;
}

.top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	background: rgba(0, 0, 0, 0.3);
}

.brand-name {
	font-size: 24px;
	font-weight: bold;

	background-clip: text;
	line-height: 1.57;
	font-style: italic;
	color: rgb(255, 255, 255);
	height: 30px;
	animation: 0.3s animation-yvxynm;
	font-size: 20px;
	font-weight: 600;
	user-select: none;
}

.top-bar-right {
	display: flex;
	gap: 15px;
}

.btn-login,
.btn-register {
	padding: 10px 24px;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-login {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.1);
}

.btn-login:hover {
	background: rgba(255, 255, 255, 0.15);
}

.btn-register {
	color: var(--text-primary);
	background: var(--accent-orange);
}

.btn-register:hover {
	background: #ff8052;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.hero {
	position: relative;
	padding: 40px;
}

.hero-carousel {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease;
}

.hero-slide {
	min-width: 100%;
	background: var(--gradient-hero);
	padding: 60px 40px;
	border-radius: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.hero-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	max-width: 1400px;
	margin: 0 auto;
}

.hero-promo {
	flex: 1;
}

.promo-title {
	font-size: 28px;
	color: var(--text-secondary);
	margin-bottom: 10px;
}

.promo-value {
	font-size: 64px;
	font-weight: bold;
	background: linear-gradient(135deg, var(--accent-green), #4ecdc4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 30px;
	line-height: 1.1;
}

.promo-btn {
	display: inline-block;
	padding: 16px 40px;
	background: var(--accent-orange);
	color: var(--text-primary);
	text-decoration: none;
	border-radius: 12px;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.3s ease;
}

.promo-btn:hover {
	background: #ff8052;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.hero-mascot {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-mascot img {
	max-width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: contain;
}

.hero-feature {
	flex: 1;
}

.feature-title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 10px;
}

.feature-subtitle {
	font-size: 18px;
	color: var(--text-secondary);
	line-height: 1.5;
}

.highlight {
	color: var(--accent-green);
	font-weight: bold;
	font-size: 22px;
}

.hero-text-promo {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.text-promo-title {
	font-size: 56px;
	font-weight: bold;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--accent-orange), #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.text-promo-subtitle {
	font-size: 20px;
	color: var(--text-primary);
	margin-bottom: 30px;
}

.carousel-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	pointer-events: none;
}

.carousel-prev,
.carousel-next {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	cursor: pointer;
	pointer-events: all;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.carousel-prev:hover,
.carousel-next:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-dot.active {
	background: var(--text-primary);
	width: 30px;
	border-radius: 6px;
}

.payment-methods {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.payment-icon {
	width: 60px;
	height: 40px;
	background: var(--card-bg);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.payment-icon:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.payment-icon svg {
	width: 100%;
	height: 100%;
}

.slots-section,
.live-casino,
.info-section,
.providers-section {
	padding: 60px 40px;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.section-title {
	font-size: 32px;
	font-weight: bold;
}

.view-all {
	padding: 10px 24px;
	background: var(--accent-orange);
	color: var(--text-primary);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.view-all:hover {
	background: #ff8052;
	transform: translateY(-2px);
}

.slots-carousel,
.live-carousel {
	position: relative;
	overflow: hidden;
}

.slots-track,
.live-track {
	display: flex;
	gap: 20px;
	transition: transform 0.3s ease;
	padding-top: 20px;
}

.slot-card,
.live-card {
	flex: 0 0 250px;
	background: var(--card-bg);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: var(--text-primary);
	transition: all 0.3s ease;
}

.slot-card:hover,
.live-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.slot-image,
.live-image {
	width: 100%;
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.slot-placeholder,
.live-placeholder {
	font-size: 80px;
}

.live-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #ff0000;
	color: white;
	padding: 5px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: bold;
}

.slot-info,
.live-info {
	padding: 15px;
}

.slot-name,
.live-name {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}

.slot-provider,
.live-provider {
	font-size: 13px;
	color: var(--text-secondary);
}

.carousel-nav {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 30px;
}

.carousel-nav .carousel-prev,
.carousel-nav .carousel-next {
	position: static;
	transform: none;
}

.info-section {
	background: var(--darker-bg);
}

.info-content {
	max-width: 1200px;
	margin: 0 auto;
}

.info-content > div {
	margin-bottom: 40px;
}

.info-content h1 {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 15px;
	color: var(--text-primary);
}
.info-content h2 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
	color: var(--text-primary);
}
.info-content h3 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	color: var(--text-primary);
}

.info-content p {
	color: var(--text-secondary);
	margin-bottom: 15px;
	line-height: 1.8;
}

.info-content ul {
	list-style: none;
	padding-left: 0;
	margin: 20px 0;
}

.info-content li {
	color: var(--text-secondary);
	padding-left: 30px;
	position: relative;
	margin-bottom: 10px;
	line-height: 1.8;
}
.info-content :is(ul, ol) {
	list-style-position: inside;
}
.info-content ul li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent-green);
	font-weight: bold;
	font-size: 18px;
}
.info-content table {
	width: 100%;
	margin: 2em 0;
	border-collapse: collapse;
	font-size: 0.95em;
	display: inline-block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
}

.info-content th,
.info-content td {
	padding: 0.75em 1em;
	border: 1px solid #ddd;
	text-align: left;
	vertical-align: top;
}

.info-content th {
	font-weight: 600;
}
@media (max-width: 991px) {
	.info-content table {
		white-space: nowrap;
	}
}
.info-content hr {
	margin: 2rem 0;
}
.info-content .promo-btn {
	margin-top: 2rem;
}
.accordion-item {
	border: 1px solid var(--accent-orange);
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}
.accordion-header {
	background: #f8f9fa;
	padding: 16px 20px;
	cursor: pointer;
	font-weight: bold;
	color: #333;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}
.accordion-header:hover, .accordion-header.active {
	background: var(--accent-orange);
	color: #fff;
}
.accordion-icon {
	font-size: 18px;
	transition: transform 0.3s ease;
}
.accordion-header.active .accordion-icon {
	transform: rotate(180deg);
}
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: white;
}
.accordion-content.active {
	max-height: 300px;
}
.accordion-body {
	padding: 16px 20px;
	color: #555;
	line-height: 1.6;
}

.providers-section {
	background: var(--dark-bg);
}

.providers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.provider-card {
	background: var(--card-bg);
	padding: 40px 20px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.provider-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.provider-logo {
	font-size: 18px;
	font-weight: bold;
	color: var(--text-primary);
	text-align: center;
}

.footer {
	background: var(--darker-bg);
	padding: 60px 40px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto 40px;
}

.footer-column p {
	color: var(--text-secondary);
	line-height: 1.8;
}

.footer-column a {
	color: var(--primary-blue);
	text-decoration: none;
}

.footer-column a:hover {
	text-decoration: underline;
}

.footer-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
	color: var(--text-primary);
}

.footer-disclaimer {
	max-width: 1200px;
	margin: 0 auto 30px;
	padding: 20px;
	background: rgba(255, 107, 53, 0.1);
	border-left: 4px solid var(--accent-orange);
	border-radius: 8px;
}

.footer-disclaimer p {
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.8;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-secondary);
	font-size: 14px;
}

@media (max-width: 1024px) {
	.hero-content {
		flex-direction: column;
		text-align: center;
	}

	.hero-promo,
	.hero-feature {
		flex: none;
		width: 100%;
	}

	.promo-value {
		font-size: 48px;
	}

	.feature-title {
		font-size: 28px;
	}

	.slots-track,
	.live-track {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.slots-track::-webkit-scrollbar,
	.live-track::-webkit-scrollbar {
		display: none;
	}

	.slot-card,
	.live-card {
		scroll-snap-align: start;
	}
}

@media (max-width: 768px) {
	.sidebar {
		transform: translateX(-100%);
	}

	.sidebar.active {
		transform: translateX(0);
	}

	.mobile-header {
		display: flex;
	}

	.hamburger {
		display: flex;
	}

	.main-content {
		margin-left: 0;
		padding-top: 60px;
	}

	.top-bar {
		display: none;
	}

	.hero {
		padding: 20px 15px;
	}

	.hero-slide {
		padding: 30px 20px;
	}

	.promo-title {
		font-size: 20px;
	}

	.promo-value {
		font-size: 36px;
	}

	.text-promo-title {
		font-size: 36px;
	}

	.text-promo-subtitle {
		font-size: 16px;
	}

	.promo-btn {
		padding: 12px 30px;
		font-size: 16px;
	}

	.feature-title {
		font-size: 24px;
	}

	.feature-subtitle {
		font-size: 16px;
	}

	.hero-mascot img {
		max-height: 250px;
	}

	.section-title {
		font-size: 24px;
	}

	.slots-section,
	.live-casino,
	.info-section,
	.providers-section {
		padding: 40px 15px;
	}

	.carousel-controls {
		display: none;
	}

	.providers-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 15px;
	}

	.footer {
		padding: 40px 15px 20px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.mobile-actions {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: var(--darker-bg);
		padding: 15px;
		display: flex;
		gap: 10px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		z-index: 998;
	}

	.mobile-login,
	.mobile-register {
		flex: 1;
		text-align: center;
		padding: 12px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.promo-value {
		font-size: 28px;
	}

	.text-promo-title {
		font-size: 28px;
	}

	.section-title {
		font-size: 20px;
	}

	.view-all {
		padding: 8px 16px;
		font-size: 14px;
	}

	.payment-methods {
		gap: 10px;
	}

	.payment-icon {
		width: 50px;
		height: 35px;
	}
}
