@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

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

:root {
	--sidebar-width: 260px;
	--header-height: 68px;
	--bottom-nav-height: 63px;
	--bg-sidebar: #1a1b23;
	--bg-header: #1a1b23;
	--bg-page: #1a1b23;
	--bg-bottom-nav: #1a1b23;
	--bg-secondary: #242424;
	--bg-tertiary: rgba(36, 36, 36, 0.6);
	--border-color: #2b2b2b;
	--border-secondary: #3a3a3a;
	--text-primary: #ffffff;
	--text-secondary: #c0c0c0;
	--text-muted: #9a9a9a;
	--color-primary: #ff7a00;
	--color-primary-hover: #ff9100;
	--color-primary-active: #e66a00;
	--color-primary-alt: #cc5c00;
	--color-accent: #ffffff;
	--color-gradient-end: #ffb347;
	--montserrat-font: 'Montserrat', sans-serif;
	--main-font: var(--montserrat-font);
}

body {
	font-family: var(--main-font);
	color: var(--text-primary);
	background: var(--bg-page);
}

.main-container {
	width: 100%;
	max-width: 1200px;
	margin: 32px auto 0;
	padding: 0 16px;
}

.page {
	width: calc(100% - var(--sidebar-width));
	min-height: 100vh;
	margin-left: var(--sidebar-width);
	padding-top: var(--header-height);
}

.header {
	position: fixed;
	top: 0;
	left: var(--sidebar-width);
	z-index: 1002;
	display: flex;
	width: calc(100% - var(--sidebar-width));
	height: var(--header-height);
	align-items: center;
	border-bottom: 2px solid var(--border-color);
	background: var(--bg-header);
}

.header-content {
	display: flex;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
}

.logo-img {
	width: auto;
	height: 40px;
}

.header-buttons {
	display: flex;
	gap: 12px;
	align-items: center;
}

.btn-login,
.btn-signup {
	display: flex;
	width: 120px;
	height: 44px;
	margin: 0;
	padding: 10px 24px;
	border: none;
	border-radius: 6px;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-login {
	border: 1px solid var(--color-primary);
	color: var(--text-primary);
	background: var(--bg-secondary);
}

.btn-login:hover {
	color: var(--text-primary);
	background: var(--color-primary);
}

.btn-signup {
	color: var(--text-primary);
	background: var(--color-primary);
}

.btn-signup:hover {
	background: var(--color-primary-hover);
}

.view-all-btn {
	margin: 0;
	padding: 0;
	border: none;
	margin-top: 4px;
	line-height: 1.2;
	font-family: var(--main-font);
	font-size: 13px;
	font-weight: 400;
	color: var(--text-secondary);
	background: transparent;
	cursor: pointer;
	transition: color 0.2s ease;
}

.view-all-btn:hover {
	color: var(--text-primary);
}

.nav-arrow {
	display: flex;
	width: 36px;
	height: 36px;
	border: 1px solid var(--border-secondary);
	border-radius: 6px;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	background: transparent;
	cursor: pointer;
	transition: all 0.2s ease;
}

.nav-arrow:hover {
	color: var(--text-primary);
	background: var(--border-secondary);
}

.nav-arrow:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.nav-arrow:disabled:hover {
	color: var(--text-secondary);
	background: transparent;
}

.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 1001;
	width: var(--sidebar-width);
	border-right: 2px solid var(--border-color);
	font-family: var(--main-font);
	background: var(--bg-sidebar);
	overflow-y: auto;
}

.sidebar::after {
	content: '';
	position: absolute;
	top: calc(var(--header-height) - 2px);
	left: 0;
	right: 0;
	height: 2px;
	background: var(--border-color);
}

.sidebar-nav {
	position: relative;
	display: flex;
	width: calc(100% - 32px);
	height: 48px;
	margin: calc((var(--header-height) - 48px) / 2) 16px 24px;
	padding: 4px;
	border-radius: 12px;
	align-items: center;
	gap: 4px;
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-toggle-btn {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1;
	margin: 0;
	padding: 12px 16px;
	border: none;
	border-radius: 8px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 600;
	color: var(--text-secondary);
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	overflow: hidden;
}

.sidebar-toggle-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--color-primary), var(--color-gradient-end));
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 6px;
}

.sidebar-toggle-btn.active::before {
	opacity: 1;
}

.sidebar-toggle-btn.active {
	color: var(--text-primary);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(32, 153, 255, 0.3);
}

.sidebar-toggle-btn:hover:not(.active) {
	color: var(--text-primary);
}

.toggle-icon,
.sidebar-toggle-btn span {
	position: relative;
	z-index: 3;
}

.toggle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.toggle-icon img {
	width: 20px;
	height: 20px;
	filter: brightness(1.3) saturate(0);
}

.sidebar-toggle-btn.active .toggle-icon img {
	filter: brightness(0) invert(1);
}

.weekly-raffle {
	position: relative;
	margin: 0 16px 24px;
	padding: 20px;
	border-radius: 16px;
	background: linear-gradient(135deg, #2d1b69 0%, #1a1464 50%, #0f0f3a 100%);
	border: 1px solid #3d2977;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(45, 27, 105, 0.4);
}

.raffle-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
	animation: raffleGlow 4s ease-in-out infinite;
}

.raffle-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.raffle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffd700, #ffb347);
	color: #2d1b69;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
	animation: raffleIconPulse 2s ease-in-out infinite;
}

.raffle-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border-radius: 20px;
	background: rgba(255, 107, 53, 0.2);
	border: 1px solid rgba(255, 107, 53, 0.4);
	font-size: 12px;
	font-weight: 700;
	color: #ff6b35;
	letter-spacing: 0.5px;
}

.raffle-content {
	text-align: center;
	margin-bottom: 16px;
}

.raffle-amount {
	font-size: 28px;
	font-weight: 800;
	color: #ffd700;
	text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
	margin-bottom: 4px;
}

.raffle-text {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-primary);
	letter-spacing: 1px;
	margin-bottom: 6px;
}

.raffle-description {
	font-size: 12px;
	color: var(--text-secondary);
	opacity: 0.8;
}

.raffle-progress {
	margin-top: 16px;
}

.weekly-raffle .progress-bar {
	position: relative;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
	margin-bottom: 8px;
}

.weekly-raffle .progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #ffd700, #ffb347, #ffd700);
	background-size: 200% 100%;
	border-radius: 3px;
	animation: progressShine 2s ease-in-out infinite;
	box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.weekly-raffle .progress-text {
	font-size: 11px;
	color: var(--text-secondary);
	text-align: center;
	opacity: 0.9;
}

@keyframes raffleGlow {

	0%,
	100% {
		opacity: 0.3;
		transform: rotate(0deg);
	}

	50% {
		opacity: 0.6;
		transform: rotate(180deg);
	}
}

@keyframes raffleIconPulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

.sidebar-menu {
	flex: 1;
	padding: 0 16px 24px;
	overflow-y: auto;
}

.menu-section {
	margin-bottom: 28px;
}

.menu-section:last-child {
	margin-bottom: 0;
}

.menu-section-title {
	margin-bottom: 12px;
	padding: 0 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--text-secondary);
	opacity: 0.7;
}

.menu-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	margin-bottom: 4px;
	border-radius: 12px;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 500;
	color: var(--text-secondary);
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid transparent;
	overflow: hidden;
}

.menu-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(32, 153, 255, 0.1), rgba(0, 212, 255, 0.05));
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 11px;
}

.menu-item:hover:not(.active)::before {
	opacity: 1;
}

.menu-item:hover:not(.active) {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(255, 255, 255, 0.1);
	transform: translateX(4px);
}

.menu-item.active {
	color: var(--text-primary);
	background: linear-gradient(135deg, rgba(32, 153, 255, 0.15), rgba(0, 212, 255, 0.08));
	border-color: rgba(32, 153, 255, 0.3);
	box-shadow: 0 4px 16px rgba(32, 153, 255, 0.2);
}

.menu-item.active::before {
	opacity: 0;
}

.menu-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.menu-item-text {
	flex: 1;
	position: relative;
	z-index: 2;
}

.menu-item-indicator {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-primary);
	z-index: 2;
	box-shadow: 0 0 10px rgba(32, 153, 255, 0.8);
	animation: indicatorPulse 2s ease-in-out infinite;
}

.menu-item-badge {
	position: relative;
	z-index: 2;
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: linear-gradient(135deg, #ff6b35, #ff8c42);
	color: white;
	box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.menu-item-badge.new {
	background: linear-gradient(135deg, #38c758, #2db548);
	box-shadow: 0 2px 8px rgba(56, 199, 88, 0.4);
}

.menu-item-counter {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 700;
	background: var(--color-primary);
	color: white;
	box-shadow: 0 2px 8px rgba(32, 153, 255, 0.4);
}

.menu-item-status {
	position: relative;
	z-index: 2;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.menu-item-status.online {
	background: #38c758;
	box-shadow: 0 0 8px rgba(56, 199, 88, 0.6);
	animation: statusPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {

	0%,
	100% {
		opacity: 1;
		transform: translateY(-50%) scale(1);
	}

	50% {
		opacity: 0.6;
		transform: translateY(-50%) scale(1.2);
	}
}

@keyframes statusPulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.6;
	}
}

.bottom-nav {
	display: none;
	z-index: 1002;
}

.nav-item {
	display: flex;
	flex: 1;
	border: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	font-family: var(--main-font);
	font-size: 12px;
	color: var(--text-muted);
	background: transparent;
	cursor: pointer;
}

.nav-item svg {
	stroke: currentColor;
}

.nav-item.active {
	color: var(--color-primary);
}

.nav-item.active svg {
	stroke: currentColor;
}

.hero {
	position: relative;
	width: 100%;
	height: 345px;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #141931 0%, #1f2747 25%, #0f1328 50%, #1a2042 75%, #141931 100%);
	opacity: 0.85;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	width: 100%;
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 0 16px;
	align-items: center;
	gap: 60px;
}

.hero-left {
	flex: 0 0 auto;
	max-width: 450px;
}

.hero-header {
	margin-bottom: 40px;
}

.hero-badge {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 16px;
	border-radius: 20px;
	font-family: var(--main-font);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--color-primary);
	background: rgba(32, 153, 255, 0.15);
	border: 1px solid rgba(32, 153, 255, 0.3);
}

.hero-title {
	margin: 0 0 16px;
	font-family: var(--main-font);
	font-size: 32px;
	font-weight: 800;
	line-height: 1.1;
	color: var(--text-primary);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	margin: 0;
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--text-secondary);
	opacity: 0.9;
}

.hero-actions {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
}

.hero-primary-action {
	width: 100%;
}

.hero-register-btn {
	position: relative;
	display: flex;
	width: 100%;
	max-width: 280px;
	margin: 0;
	padding: 16px 32px;
	border: none;
	border-radius: 12px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: var(--main-font);
	font-size: 18px;
	font-weight: 700;
	color: var(--text-primary);
	background: linear-gradient(135deg, #38c758, #2db548);
	cursor: pointer;
	transition: all 0.3s ease;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(56, 199, 88, 0.4);
}

.hero-register-btn::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -100%;
	width: 30%;
	height: 200%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
	transform: rotate(25deg);
	animation: shine 1.8s ease-in-out infinite;
}

@keyframes shine {
	0% {
		left: -100%;
	}

	50% {
		left: 120%;
	}

	100% {
		left: 120%;
	}
}

.hero-register-btn:hover {
	background: linear-gradient(135deg, #2db548, #248a3d);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(56, 199, 88, 0.5);
}

.hero-register-btn:hover svg {
	transform: translateX(6px);
}

.hero-register-btn svg {
	transition: transform 0.3s ease;
}

.hero-right {
	display: flex;
	flex: 1;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
}

.hero-categories {
	display: flex;
	height: 280px;
	gap: 16px;
}

.hero-category-card {
	position: relative;
	display: flex;
	flex: 1;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	align-items: flex-end;
	aspect-ratio: 1;
	background: var(--bg-secondary);
	cursor: pointer;
	overflow: hidden;
	transition: all 0.2s ease;
}

.hero-category-card.casino-card {
	background-image: url('/img/hero/casino.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.8;
}

.hero-category-card.casino-card:hover {
	opacity: 1;
}

.hero-category-card.sports-card {
	background-image: url('/img/hero/sportsbook.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.8;
}

.hero-category-card.sports-card:hover {
	opacity: 1;
}

.hero-category-card:hover {
	transform: translateY(-2px);
}

.hero-category-content {
	display: flex;
	width: 100%;
	padding: 20px;
	align-items: center;
	gap: 16px;
	background: linear-gradient(transparent, rgba(32, 153, 255, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-category-icon {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.hero-category-title {
	flex: 1;
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	color: var(--text-primary);
}

.hero-category-arrow {
	color: var(--text-primary);
}

.game-section {
	position: relative;
	height: 270px;
	margin-bottom: 24px;
}

.providers-section {
	position: relative;
	height: 200px;
	margin-bottom: 24px;
}

.section-header {
	display: flex;
	margin-bottom: 20px;
	justify-content: space-between;
	align-items: center;
}

.section-title-wrapper {
	display: flex;
	gap: 12px;
	align-items: center;
}

.section-title-wrapper * {
	align-self: center;
}

.section-icon {
	display: flex;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	align-items: center;
	justify-content: center;
	font-family: var(--main-font);
	font-size: 18px;
	font-weight: 700;
	color: var(--text-primary);
}

.section-icon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.section-title {
	margin: 0;
	font-family: var(--main-font);
	font-size: 24px;
	font-weight: 600;
	color: var(--text-primary);
}

.navigation-arrows {
	display: flex;
	gap: 8px;
}

.games-grid {
	position: relative;
	height: calc(100% - 64px);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	background: var(--bg-tertiary);
	overflow: hidden;
}

.games-grid.empty {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--text-secondary);
}

.games-slider {
	display: flex;
	height: 100%;
	transition: transform 0.3s ease;
}

.games-slide {
	flex: 0 0 100%;
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: 1fr;
	gap: 12px;
	padding: 16px;
}

.game-card {
	position: relative;
	border: none;
	border-radius: 12px;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.3s ease;
}

.game-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(32, 153, 255, 0.3);
}

.game-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	transition: all 0.3s ease;
}

.game-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(32, 153, 255, 0.4);
	opacity: 0;
	border-radius: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.game-card:hover::before {
	opacity: 1;
}

.game-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-left: 20px solid rgba(255, 255, 255, 0.9);
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
}

.game-card:hover::after {
	opacity: 1;
}

.providers-grid {
	position: relative;
	height: calc(100% - 64px);
	background: transparent;
	overflow: hidden;
}

.providers-grid .games-slider {
	display: flex;
	height: 100%;
	transition: transform 0.3s ease;
}

.providers-grid .games-slide {
	flex: 0 0 100%;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: 1fr;
	gap: 16px;
	padding: 16px 0;
}

.providers-grid .game-card {
	position: relative;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	background: var(--bg-secondary);
	cursor: pointer;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 18px;
	height: 70px;
}

.providers-grid .game-card:hover {
	transform: translateY(-1px);
	border-color: var(--border-secondary);
	background: var(--bg-tertiary);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.providers-grid .game-card::before,
.providers-grid .game-card::after {
	display: none;
}

.providers-grid .game-card img {
	width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
	transition: all 0.3s ease;
}

.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	display: none;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	background: rgba(15, 19, 40, 0.95);
	backdrop-filter: blur(10px);
	animation: fadeIn 0.3s ease;
}

.loading-overlay.active {
	display: flex;
}

.loading-content {
	text-align: center;
	color: var(--text-primary);
}

.casino-loader {
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: center;
}

.roulette-wheel {
	position: relative;
	width: 120px;
	height: 120px;
	animation: spin 3s linear infinite;
}

.wheel-inner {
	position: relative;
	width: 100%;
	height: 100%;
	border: 3px solid var(--text-primary);
	border-radius: 50%;
	background: conic-gradient(from 0deg,
			var(--color-primary) 0deg 45deg,
			var(--color-accent) 45deg 90deg,
			var(--color-primary) 90deg 135deg,
			var(--color-accent) 135deg 180deg,
			var(--color-primary) 180deg 225deg,
			var(--color-accent) 225deg 270deg,
			var(--color-primary) 270deg 315deg,
			var(--color-accent) 315deg 360deg);
	box-shadow:
		0 0 30px rgba(32, 153, 255, 0.6),
		inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.wheel-center {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: flex;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background: var(--text-primary);
	transform: translate(-50%, -50%);
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.ball {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-accent);
	box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
	animation: ballBounce 0.6s ease-in-out infinite alternate;
}

.loading-text {
	text-align: center;
}

.loading-title {
	margin-bottom: 8px;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 4px;
	color: var(--text-primary);
	text-shadow: 0 0 20px rgba(32, 153, 255, 0.8);
	animation: glow 2s ease-in-out infinite alternate;
}

.loading-subtitle {
	font-size: 15px;
	font-weight: 400;
	color: var(--text-secondary);
	opacity: 0.9;
	animation: textFade 3s ease-in-out infinite;
}

.progress-container {
	width: 280px;
	text-align: center;
}

.progress-bar {
	position: relative;
	width: 100%;
	height: 8px;
	border-radius: 4px;
	background: var(--bg-secondary);
	overflow: hidden;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
	width: 0%;
	height: 100%;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-gradient-end), var(--color-primary));
	background-size: 200% 100%;
	transition: width 0.3s ease;
	animation: progressShine 2s ease-in-out infinite;
	box-shadow: 0 0 10px rgba(32, 153, 255, 0.6);
}

.progress-text {
	margin-top: 12px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-primary);
	text-shadow: 0 0 10px rgba(32, 153, 255, 0.6);
}

@media (max-width: 767px) {
	:root {
		--header-height: 72px;
	}

	body {
		overflow-x: hidden;
	}

	* {
		max-width: 100vw;
		box-sizing: border-box;
	}

	.main-container {
		padding: 0 8px;
	}

	.sidebar {
		top: var(--header-height);
		bottom: var(--bottom-nav-height);
		z-index: 1003;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		display: flex;
		flex-direction: column;
	}

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

	.sidebar-nav {
		margin: 16px 16px 20px;
		height: 44px;
	}

	.sidebar-toggle-btn {
		padding: 10px 12px;
		font-size: 13px;
		gap: 6px;
	}

	.weekly-raffle {
		margin: 0 16px 20px;
		padding: 16px;
	}

	.raffle-amount {
		font-size: 24px;
	}

	.raffle-text {
		font-size: 12px;
	}

	.raffle-description {
		font-size: 11px;
	}

	.menu-section {
		margin-bottom: 24px;
	}

	.menu-item {
		padding: 12px 14px;
		gap: 10px;
		font-size: 13px;
	}

	.menu-item-icon {
		width: 20px;
		height: 20px;
	}

	.menu-item-badge {
		font-size: 9px;
		padding: 3px 6px;
	}

	.menu-item-counter {
		min-width: 18px;
		height: 18px;
		font-size: 10px;
	}

	.page {
		width: 100%;
		margin-left: 0;
		padding-bottom: var(--bottom-nav-height);
	}

	.header {
		left: 0;
		right: 0;
		width: 100%;
	}

	.bottom-nav {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 1001;
		display: flex;
		height: var(--bottom-nav-height);
		border-top: 2px solid var(--border-color);
		background: var(--bg-bottom-nav);
	}

	.logo-img {
		height: 32px;
	}

	.header-buttons {
		gap: 6px;
		max-width: 140px;
		flex-shrink: 0;
	}

	.btn-login,
	.btn-signup {
		width: auto;
		min-width: 60px;
		height: 42px;
		padding: 8px 12px;
		font-size: 12px;
		white-space: nowrap;
	}

	.view-all-btn {
		display: none;
	}

	.hero {
		height: 450px;
	}

	.hero-content {
		flex-direction: column;
		gap: 20px;
		padding: 20px 8px;
		text-align: center;
	}

	.hero-left {
		width: 100%;
		max-width: none;
	}

	.hero-badge {
		font-size: 11px;
		padding: 6px 12px;
		margin-bottom: 12px;
	}

	.hero-title {
		margin-bottom: 12px;
		font-size: 24px;
		line-height: 1.2;
	}

	.hero-subtitle {
		font-size: 14px;
		line-height: 1.3;
	}

	.hero-header {
		margin-bottom: 32px;
	}

	.hero-actions {
		width: 100%;
		align-items: center;
		gap: 20px;
	}

	.hero-primary-action {
		width: 100%;
	}

	.hero-register-btn {
		max-width: none;
		padding: 14px 24px;
		font-size: 16px;
	}

	.hero-categories {
		height: auto;
		flex-direction: row;
		gap: 12px;
		margin-top: 16px;
		padding: 0 8px;
	}

	.hero-category-card {
		flex: 1;
		height: 185px;
		aspect-ratio: none;
	}

	.hero-category-content {
		padding: 16px;
		justify-content: center;
		gap: 8px;
	}

	.hero-category-title {
		font-size: 16px;
	}

	.games-slide {
		grid-template-columns: repeat(4, auto);
		grid-template-rows: 1fr;
		gap: 6px;
		padding: 8px;
		justify-content: flex-start;
	}

	.games-slide .game-card:nth-child(n+5) {
		display: none;
	}

	.game-section {
		height: 200px;
	}

	.providers-section {
		height: 160px;
	}

	.providers-grid .games-slide {
		grid-template-columns: repeat(4, 1fr);
		gap: 8px;
		padding: 8px 0;
		overflow: hidden;
	}

	.providers-grid .game-card {
		height: 65px;
		padding: 12px 14px;
		min-width: 0;
	}

	.rewards-section {
		padding: 20px 14px !important;
		margin-bottom: 24px;
	}

	.rewards-title {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.rewards-content {
		flex-direction: column;
		gap: 32px;
	}

	.rewards-left {
		gap: 12px;
	}

	.reward-card {
		padding: 16px;
		gap: 12px;
	}

	.reward-icon {
		width: 40px;
		height: 40px;
	}

	.reward-title {
		font-size: 16px;
		margin-bottom: 6px;
	}

	.reward-description {
		font-size: 13px;
	}

	.rewards-promo {
		padding: 20px 16px;
	}

	.promo-title {
		font-size: 22px;
		margin-bottom: 24px;
	}

	.promo-badges {
		gap: 16px;
		margin-bottom: 24px;
	}

	.promo-badge svg {
		width: 32px;
		height: 32px;
	}

	.vip-rewards-btn {
		padding: 14px 28px;
		font-size: 15px;
	}

	.content-section {
		margin-bottom: 20px;
		padding: 16px 4px;
	}

	.content-title {
		font-size: 24px;
		margin-bottom: 24px;
	}

	.content-text {
		font-size: 15px;
		line-height: 1.6;
		margin-bottom: 24px;
	}

	.content-text p {
		margin-bottom: 16px;
	}

	.content-text h1 {
		font-size: 26px;
		margin: 32px 0 20px 0;
	}

	.content-text h1::after {
		width: 40px;
		height: 2px;
	}

	.content-text h2 {
		font-size: 20px;
		margin: 28px 0 16px 0;
		padding-left: 12px;
	}

	.content-text h2::before {
		width: 3px;
		height: 16px;
	}

	.content-text h3 {
		font-size: 18px;
		margin: 20px 0 12px 0;
	}

	.content-text ul li {
		padding-left: 24px;
		font-size: 15px;
		margin: 10px 0;
	}

	.content-text ul li::before {
		width: 6px;
		height: 6px;
		top: 10px;
	}

	.content-text ol li {
		padding-left: 34px;
		font-size: 15px;
		margin: 10px 0;
	}

	.content-text ol li::before {
		width: 20px;
		height: 20px;
		font-size: 11px;
	}

	.table-container {
		margin: 20px 0;
		border-radius: 6px;
	}

	.info-table {
		font-size: 13px;
		min-width: 420px;
	}

	.info-table th {
		padding: 10px 6px;
		font-size: 11px;
		line-height: 1.3;
	}

	.info-table td {
		padding: 8px 6px;
		font-size: 12px;
		line-height: 1.4;
	}

	.table-container::-webkit-scrollbar {
		height: 6px;
	}

	@media (max-width: 480px) {
		.info-table {
			min-width: 100%;
			font-size: 12px;
		}

		.info-table th {
			padding: 8px 4px;
			font-size: 10px;
		}

		.info-table td {
			padding: 6px 4px;
			font-size: 11px;
		}
	}

	@media (max-width: 360px) {
		.info-table {
			min-width: 100%;
		}

		.info-table th {
			padding: 6px 3px;
			font-size: 9px;
			word-break: break-word;
		}

		.info-table td {
			padding: 5px 3px;
			font-size: 10px;
			word-break: break-word;
		}

		.table-container {
			margin: 16px 0;
		}
	}

	.faq-section {
		margin-bottom: 24px;
		padding: 20px 4px;
	}

	.faq-title {
		font-size: 24px;
		margin-bottom: 24px;
	}

	.faq-list {
		gap: 8px;
	}

	.faq-question {
		padding: 16px 18px;
		font-size: 15px;
	}

	.faq-icon {
		margin-left: 12px;
	}

	.faq-answer p {
		padding: 0 18px 16px 18px;
		font-size: 14px;
		line-height: 1.5;
	}

	.footer {
		margin-top: 40px;
	}

	.footer-content {
		padding: 28px 8px 20px;
	}

	.footer-top {
		display: flex !important;
		flex-direction: column;
		gap: 24px;
		margin-bottom: 32px;
	}

	.footer-brand {
		text-align: center;
		gap: 16px;
		width: 100%;
	}

	.footer-logo img {
		height: 40px;
	}

	.footer-description p {
		font-size: 13px;
		line-height: 1.5;
	}

	.footer-contacts {
		gap: 8px;
		align-items: center;
	}

	.footer-contact {
		font-size: 13px;
		justify-content: center;
	}

	.footer-social {
		justify-content: center;
		gap: 10px;
	}

	.social-link {
		width: 36px;
		height: 36px;
	}

	.footer-links {
		display: flex !important;
		flex-direction: column;
		gap: 20px;
		text-align: center;
		width: 100%;
	}

	.footer-column-title {
		font-size: 14px;
		margin-bottom: 12px;
	}

	.footer-menu {
		gap: 10px;
	}

	.footer-menu li a {
		font-size: 13px;
		word-break: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
	}

	.footer-payments {
		margin-bottom: 24px;
		padding: 20px 0;
	}

	.payment-methods {
		gap: 6px;
		padding: 0 4px;
		justify-content: center;
		flex-wrap: wrap;
	}

	.payment-item {
		width: 24px;
		height: 24px;
		flex-shrink: 0;
	}

	.more-payments {
		font-size: 12px;
		margin-left: 0;
		margin-top: 8px;
		width: 100%;
		text-align: center;
	}

	.footer-features {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 24px;
		align-items: center;
	}

	.footer-feature {
		gap: 8px;
		font-size: 13px;
	}

	.feature-icon {
		width: 28px;
		height: 28px;
	}

	.footer-copyright p {
		font-size: 12px;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes ballBounce {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.3);
	}
}

@keyframes glow {
	0% {
		text-shadow: 0 0 20px rgba(32, 153, 255, 0.8);
	}

	100% {
		text-shadow: 0 0 30px rgba(32, 153, 255, 1), 0 0 40px rgba(32, 153, 255, 0.6);
	}
}

@keyframes textFade {

	0%,
	100% {
		opacity: 0.6;
	}

	50% {
		opacity: 1;
	}
}

@keyframes progressShine {
	0% {
		background-position: -200% 0;
	}

	100% {
		background-position: 200% 0;
	}
}

.rewards-section {
	position: relative;
	margin-bottom: 60px;
	padding: 40px;
	border-radius: 16px;
	background: linear-gradient(135deg, #141931 0%, #1f2747 30%, #0f1328 60%, #1a2042 100%);
	overflow: hidden;
}

.rewards-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 80%, rgba(32, 153, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.rewards-header {
	position: relative;
	z-index: 2;
	text-align: center;
	margin-bottom: 40px;
}

.rewards-title {
	margin: 0;
	font-family: var(--main-font);
	font-size: 36px;
	font-weight: 700;
	color: var(--text-primary);
	text-shadow: 0 2px 10px rgba(32, 153, 255, 0.3);
}

.rewards-content {
	position: relative;
	z-index: 2;
	display: flex;
	gap: 60px;
	align-items: center;
}

.rewards-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.reward-card {
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 20px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.reward-card:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.reward-icon {
	display: flex;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.reward-card.green .reward-icon {
	background: linear-gradient(135deg, #38c758, #2db548);
	color: white;
}

.reward-card.purple .reward-icon {
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
	color: white;
}

.reward-card.gold .reward-icon {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: white;
}

.reward-card.red .reward-icon {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: white;
}

.reward-content {
	flex: 1;
}

.reward-title {
	margin: 0 0 8px 0;
	font-family: var(--main-font);
	font-size: 18px;
	font-weight: 600;
	color: var(--text-primary);
}

.reward-description {
	margin: 0;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--text-secondary);
}

.rewards-right {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rewards-promo {
	text-align: center;
	padding: 40px 30px;
}

.promo-title {
	margin: 0 0 32px 0;
	font-family: var(--main-font);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-primary);
	text-shadow: 0 2px 8px rgba(32, 153, 255, 0.2);
}

.promo-badges {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 32px;
}

.promo-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: float 3s ease-in-out infinite;
}

.promo-badge.diamond {
	animation-delay: 0s;
}

.promo-badge.crystal {
	animation-delay: 1.5s;
}

.vip-rewards-btn {
	display: inline-flex;
	padding: 16px 32px;
	border: none;
	border-radius: 8px;
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	background: linear-gradient(135deg, var(--color-primary), #0ea5e9);
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(32, 153, 255, 0.3);
}

.vip-rewards-btn:hover {
	background: linear-gradient(135deg, var(--color-primary-hover), #0284c7);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(32, 153, 255, 0.4);
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

.content-section {
	position: relative;
	margin-bottom: 40px;
	padding: 48px 24px;
	border-radius: 16px;
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
	overflow: hidden;
}

.content-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 80% 20%, rgba(32, 153, 255, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

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

.content-title {
	margin: 0 0 32px 0;
	font-family: var(--main-font);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text-primary);
	text-align: center;
}

.content-text {
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--text-muted);
	margin-bottom: 32px;
}

.content-text p {
	margin: 0 0 20px 0;
}

.content-text p:last-child {
	margin-bottom: 0;
}

.content-text h1 {
	margin: 40px 0 24px 0;
	font-family: var(--main-font);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-primary);
	background: linear-gradient(135deg, var(--color-primary), var(--color-gradient-end));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.content-text h1:first-child {
	margin-top: 0;
}

.content-text h1::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-gradient-end));
	border-radius: 2px;
}

.content-text h2 {
	margin: 32px 0 20px 0;
	font-family: var(--main-font);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-primary);
	position: relative;
	padding-left: 16px;
}

.content-text h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 20px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-gradient-end));
	border-radius: 2px;
}

.content-text h3 {
	margin: 24px 0 16px 0;
	font-family: var(--main-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-primary);
}

.content-text a {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.content-text a:hover {
	color: var(--color-primary-hover);
	text-decoration: underline;
}

.content-text ul {
	margin: 20px 0;
	padding-left: 0;
	list-style: none;
}

.content-text ul li {
	position: relative;
	margin: 12px 0;
	padding-left: 28px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-muted);
}

.content-text ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 12px;
	width: 8px;
	height: 8px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-gradient-end));
	border-radius: 50%;
	box-shadow: 0 0 6px rgba(32, 153, 255, 0.4);
}

.content-text .pros-list {
	position: relative;
	padding: 24px;
	background: rgba(56, 199, 88, 0.05);
	border: 1px solid rgba(56, 199, 88, 0.2);
	border-radius: 16px;
	margin: 24px 0;
}

.content-text .pros-list::before {
	content: 'ADVANTAGES';
	position: absolute;
	top: -12px;
	left: 20px;
	padding: 6px 16px;
	background: linear-gradient(135deg, #38c758, #2db548);
	color: white;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(56, 199, 88, 0.3);
}

.content-text .pros-list li {
	position: relative;
	padding-left: 32px;
	margin: 12px 0;
	color: var(--text-muted);
	transition: color 0.3s ease;
}

.content-text .pros-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: white;
	background: linear-gradient(135deg, #38c758, #2db548);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(56, 199, 88, 0.4);
}

.content-text .cons-list {
	position: relative;
	padding: 24px;
	background: rgba(239, 68, 68, 0.05);
	border: 1px solid rgba(239, 68, 68, 0.2);
	border-radius: 16px;
	margin: 24px 0;
}

.content-text .cons-list::before {
	content: 'DISADVANTAGES';
	position: absolute;
	top: -12px;
	left: 20px;
	padding: 6px 16px;
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: white;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.content-text .cons-list li {
	position: relative;
	padding-left: 32px;
	margin: 12px 0;
	color: var(--text-muted);
	transition: color 0.3s ease;
}

.content-text .cons-list li::before {
	content: '✗';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: white;
	background: linear-gradient(135deg, #ef4444, #dc2626);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

@media (hover: hover) {
	.content-text .pros-list li:hover {
		color: var(--text-secondary);
	}

	.content-text .cons-list li:hover {
		color: var(--text-secondary);
	}
}

.content-text ol {
	margin: 24px 0;
	padding-left: 0;
	list-style: none;
	counter-reset: step-counter;
}

.content-text ol li {
	position: relative;
	margin: 18px 0;
	padding: 16px 20px 16px 60px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-muted);
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	counter-increment: step-counter;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.content-text ol li::before {
	content: counter(step-counter);
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
	color: var(--text-primary);
	background: linear-gradient(135deg, var(--color-primary), var(--color-gradient-end));
	box-shadow:
		0 4px 12px rgba(32, 153, 255, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-text ol li::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(32, 153, 255, 0.03), rgba(0, 212, 255, 0.01));
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

@media (hover: hover) {
	.content-text ol li:hover {
		transform: translateX(4px);
		background: rgba(255, 255, 255, 0.04);
		border-color: rgba(32, 153, 255, 0.2);
		box-shadow:
			0 8px 25px rgba(0, 0, 0, 0.15),
			0 2px 8px rgba(32, 153, 255, 0.1);
		color: var(--text-secondary);
	}

	.content-text ol li:hover::before {
		transform: translateY(-50%) scale(1.1);
		box-shadow:
			0 6px 20px rgba(32, 153, 255, 0.5),
			inset 0 1px 0 rgba(255, 255, 255, 0.3);
	}

	.content-text ol li:hover::after {
		opacity: 1;
	}
}

.content-text ol li:nth-child(odd)::before {
	background: linear-gradient(135deg, var(--color-primary), #0ea5e9);
}

.content-text ol li:nth-child(even)::before {
	background: linear-gradient(135deg, #8b5cf6, var(--color-primary));
}

.content-text ol li:first-child {
	border-top: 2px solid rgba(32, 153, 255, 0.3);
}

.content-text ol li:last-child {
	margin-bottom: 0;
}

.table-container {
	width: 100%;
	margin: 24px 0;
	overflow-x: auto;
	border-radius: 8px;
	border: 1px solid var(--border-secondary);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	-webkit-overflow-scrolling: touch;
}

.table-container::-webkit-scrollbar {
	height: 8px;
}

.table-container::-webkit-scrollbar-track {
	background: var(--bg-secondary);
	border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, var(--color-primary), var(--color-gradient-end));
	border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
}

.info-table {
	width: 100%;
	min-width: 600px;
	border-collapse: collapse;
	background: var(--bg-tertiary);
	margin: 0;
}

.info-table th {
	padding: 16px 20px;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-primary);
	background: linear-gradient(135deg, rgba(32, 153, 255, 0.1), rgba(0, 212, 255, 0.05));
	border-bottom: 1px solid var(--border-secondary);
	text-align: left;
	white-space: nowrap;
}

.info-table td {
	padding: 14px 20px;
	font-family: var(--main-font);
	font-size: 15px;
	font-weight: 400;
	color: var(--text-muted);
	border-bottom: 1px solid var(--border-color);
}

.info-table tr:last-child td {
	border-bottom: none;
}

.info-table tr:hover {
	background: rgba(255, 255, 255, 0.02);
}

.info-table td:first-child {
	font-weight: 500;
	color: var(--text-secondary);
}

@media (max-width: 767px) {
	.info-table {
		min-width: 100%;
	}

	.info-table th {
		white-space: nowrap;
		min-width: 80px;
	}

	.info-table td {
		word-wrap: break-word;
		hyphens: auto;
	}

	.info-table td:first-child {
		font-weight: 600;
		min-width: 70px;
		padding-right: 4px;
	}

	.info-table th:first-child {
		padding-right: 4px;
	}

	.info-table td:last-child {
		padding-left: 4px;
	}

	.info-table th:last-child {
		padding-left: 4px;
	}
}

.faq-section {
	position: relative;
	margin-bottom: 40px;
	padding: 48px 24px;
	border-radius: 16px;
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
	overflow: hidden;
}

.faq-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 80%, rgba(32, 153, 255, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

.faq-wrapper {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.faq-title {
	margin: 0 0 32px 0;
	font-family: var(--main-font);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text-primary);
	text-align: center;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	border: 1px solid var(--border-secondary);
	border-radius: 12px;
	background: transparent;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
	border-color: var(--color-primary);
	background: rgba(255, 255, 255, 0.02);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.faq-question {
	display: flex;
	width: 100%;
	padding: 20px 24px;
	align-items: center;
	justify-content: space-between;
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	background: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.faq-question:hover {
	color: var(--color-primary);
}

.faq-question span,
.faq-question h3 {
	flex: 1;
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	line-height: inherit;
}

.faq-icon {
	margin-left: 16px;
	color: var(--text-secondary);
	transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
	color: var(--color-primary);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 200px;
}

.faq-answer p {
	margin: 0;
	padding: 0 24px 20px 24px;
	font-family: var(--main-font);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--text-secondary);
}

.footer {
	width: 100%;
	background: var(--bg-sidebar);
	border-top: 2px solid var(--border-color);
	margin-top: 60px;
}

.footer-content {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 16px 24px;
}

.footer-top {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	margin-bottom: 40px;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.footer-logo img {
	width: auto;
	height: 48px;
}

.footer-description p {
	margin: 0;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--text-secondary);
}

.footer-contacts {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-contact {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--main-font);
	font-size: 14px;
	color: var(--color-primary);
}

.footer-contact svg {
	flex-shrink: 0;
	color: var(--color-primary);
}

.footer-contact img {
	width: 25px;
	height: 25px;
	flex-shrink: 0;
}

.footer-contact a {
	color: inherit;
	text-decoration: none;
}

.footer-social {
	display: flex;
	gap: 12px;
}

.social-link {
	display: flex;
	width: 40px;
	height: 40px;
	border: 1px solid var(--border-secondary);
	border-radius: 8px;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	background: transparent;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	color: var(--color-primary);
	border-color: var(--color-primary);
	background: rgba(32, 153, 255, 0.1);
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
}

.footer-column-title {
	margin-bottom: 20px;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--text-primary);
}

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-menu li a {
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 400;
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-menu li a:hover {
	color: var(--text-primary);
}

.footer-payments {
	margin-bottom: 32px;
	padding: 24px 0;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.payment-methods {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.payment-item {
	display: flex;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	align-items: center;
	justify-content: center;
	background: transparent;
	overflow: hidden;
	transition: all 0.2s ease;
}

.payment-item:hover {
	transform: scale(1.05);
}

.payment-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
}

.more-payments {
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 500;
	color: var(--text-secondary);
	margin-left: 8px;
}

.footer-features {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-bottom: 32px;
}

.footer-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 500;
	color: var(--text-primary);
}

.feature-icon {
	display: flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
}

.footer-bottom {
	padding-top: 24px;
	border-top: 1px solid var(--border-color);
	text-align: center;
}

.footer-copyright p {
	margin: 0;
	font-family: var(--main-font);
	font-size: 13px;
	font-weight: 400;
	color: var(--text-secondary);
}

.contact-page-section {
	position: relative;
	margin-bottom: 40px;
	padding: 48px;
	border-radius: 16px;
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
}

.contact-page-wrapper {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.contact-page-header {
	text-align: center;
	margin-bottom: 48px;
}

.contact-page-title {
	margin: 0 0 16px 0;
	font-family: var(--main-font);
	font-size: 36px;
	font-weight: 700;
	color: var(--text-primary);
}

.contact-page-subtitle {
	margin: 0 0 32px 0;
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--text-secondary);
}

.contact-methods-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 48px;
}

.contact-method-card {
	display: flex;
	gap: 20px;
	padding: 24px;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	background: var(--bg-tertiary);
	transition: all 0.3s ease;
}

.contact-method-card:hover {
	border-color: var(--color-primary);
	background: rgba(255, 255, 255, 0.02);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(32, 153, 255, 0.1);
}

.contact-method-icon {
	display: flex;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	color: var(--text-primary);
}

.contact-method-icon.chat-icon {
	background: linear-gradient(135deg, #38c758, #2db548);
}

.contact-method-icon.email-icon {
	background: linear-gradient(135deg, var(--color-primary), #0ea5e9);
}

.contact-method-icon.business-icon {
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.contact-method-content {
	flex: 1;
}

.contact-method-title {
	margin: 0 0 8px 0;
	font-family: var(--main-font);
	font-size: 20px;
	font-weight: 600;
	color: var(--text-primary);
}

.contact-method-desc {
	margin: 0 0 16px 0;
	font-family: var(--main-font);
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.5;
}

.contact-method-status {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 12px;
	color: var(--text-secondary);
}

.contact-method-status.online {
	color: #38c758;
}

.status-indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	animation: statusPulse 2s ease-in-out infinite;
}

.contact-email-link {
	margin-bottom: 12px;
}

.contact-email-link a {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}

.contact-email-link a:hover {
	text-decoration: underline;
}

.contact-method-info {
	margin-bottom: 16px;
	font-size: 12px;
	color: var(--text-secondary);
}

.contact-method-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	font-family: var(--main-font);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.contact-method-btn.primary-btn {
	color: white;
	background: linear-gradient(135deg, #38c758, #2db548);
}

.contact-method-btn.primary-btn:hover {
	background: linear-gradient(135deg, #2db548, #248a3d);
	transform: translateY(-1px);
}

.contact-method-btn.secondary-btn {
	color: var(--text-primary);
	background: var(--bg-secondary);
	border: 1px solid var(--border-secondary);
}

.contact-method-btn.secondary-btn:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
}

.contact-social-section {
	text-align: center;
	padding: 32px 0;
	border-top: 1px solid var(--border-color);
}

.contact-social-title {
	margin: 0 0 8px 0;
	font-family: var(--main-font);
	font-size: 24px;
	font-weight: 600;
	color: var(--text-primary);
}

.contact-social-desc {
	margin: 0 0 24px 0;
	font-family: var(--main-font);
	font-size: 14px;
	color: var(--text-secondary);
}

.contact-social-links {
	display: flex;
	justify-content: center;
	gap: 24px;
}

.social-platform-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	border: 1px solid var(--border-secondary);
	border-radius: 8px;
	font-size: 14px;
	color: var(--text-secondary);
	background: transparent;
	cursor: pointer;
	transition: all 0.2s ease;
}

.social-platform-item:hover {
	color: var(--color-primary);
	border-color: var(--color-primary);
	background: rgba(32, 153, 255, 0.1);
}

.social-platform-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 767px) {
	.contact-page-section {
		padding: 20px 8px;
	}

	.contact-page-title {
		font-size: 28px;
	}

	.contact-page-subtitle {
		font-size: 15px;
	}

	.contact-method-card {
		flex-direction: column;
		gap: 16px;
		padding: 20px;
	}

	.contact-method-icon {
		width: 40px;
		height: 40px;
		align-self: flex-start;
	}

	.contact-social-links {
		flex-direction: column;
		gap: 12px;
		align-items: center;
	}

	.social-platform-item {
		width: 200px;
		justify-content: center;
	}
}

@media (max-width: 350px) {
	.hero-categories {
		margin-top: 16px;
		transform: translateY(-16px);
	}

	.hero-category-content {
		padding: 12px;
		justify-content: center;
		align-items: center;
		gap: 6px;
	}

	.hero-category-icon {
		width: 24px;
		height: 24px;
	}

	.hero-category-card.casino-card .hero-category-icon {
		transform: translateX(21px);
	}
}