@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Orbitron:wght@400;700;900&display=swap');

:root {
	/* Updated color scheme with modern gradients and neon accents */
	--primary: #3498fe;
	--primary-dark: #2980b9;
	--secondary: #f39c12;
	--accent: #7c3aed;
	--accent-light: #a855f7;
	--neon-green: #39ff14;
	--neon-pink: #ff073a;

	--black: #0a0a0f;
	--dark-bg: #111118;
	--card-bg: #1a1a24;
	--surface: #1a1a24;
	--surface-light: #2a2a2a;
	--white: #ffffff;
	--grey: #6b7280;
	--grey-light: #9ca3af;

	--body-bg: linear-gradient(135deg, #0a0a0f 0%, #111118 50%, #1a1a24 100%);
	--card-gradient: linear-gradient(145deg, #1a1a24 0%, #252530 100%);
	--button-gradient: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--primary-dark) 100%
	);
	--accent-gradient: linear-gradient(
		135deg,
		var(--accent) 0%,
		var(--accent-light) 100%
	);
	--neon-gradient: linear-gradient(
		90deg,
		var(--neon-green) 0%,
		var(--primary) 50%,
		var(--neon-pink) 100%
	);

	--text-color: #ffffff;
	--text-secondary: #b0b0b0;
	--text-muted: #808080;
	--border-color: rgba(255, 255, 255, 0.1);
	--success: #27ae60;
	--warning: #f39c12;
	--error: #e74c3c;

	--transition: all 0.3s ease;
	--border-radius: 8px;
	--border-radius-lg: 12px;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
	--glow: 0 0 20px rgba(0, 212, 255, 0.3);

	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	--font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	--bg-secondary: #1a1a24; /* Added for slots background */
}

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

body {
	font-family: var(--font-primary);
	background: var(--body-bg);
	background-attachment: fixed;
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Enhanced typography with better hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
	/* Changed all headings to white color */
	color: white;
}

h1 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	/* Removed gradient, using white color */
	color: white;
	background: none; /* Removed gradient */
	-webkit-background-clip: initial;
	-webkit-text-fill-color: initial;
	background-clip: initial;
}

h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	/* Changed from primary color to white */
	color: white;
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	color: var(--text-color);
}

h4 {
	font-size: 1.125rem;
}

h5 {
	font-size: 1rem;
}

h6 {
	font-size: 0.875rem;
}

/* Modern button system with gradients and animations */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	text-decoration: none;
	white-space: nowrap;
	max-width: 100%;
}

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

.btn:hover::before {
	left: 100%;
}

.btn_red {
	background: var(--primary);
	color: white;
	box-shadow: var(--glow);
}

.btn_red:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: var(--shadow-lg);
	/* Changed hover color to white instead of blue */
	color: white;
}

.btn_accent {
	background: var(--accent-gradient);
	color: white;
}

.btn_outline {
	background: transparent;
	border: 2px solid var(--primary);
	/* Changed text color to white for buttons without blue background */
	color: white;
}

.btn_outline:hover {
	background: var(--primary);
	/* Changed hover text color to white */
	color: white;
}
.btn_center {
	margin-right: auto;
	margin-left: auto;
	width: max-content;
	display: block;
	margin: 1rem auto;
}
.mt-1 {
	margin-top: 1rem !important;
}

/* Enhanced card system with glassmorphism */
.card {
	background: var(--card-gradient);
	border-radius: var(--border-radius-lg);
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--neon-gradient);
	opacity: 0;
	transition: var(--transition);
}

.card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: rgba(0, 212, 255, 0.3);
}

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

/* Modern game cards with hover effects */
.game-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	width: 220px;
	height: 200px;
}

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

.game-image {
	width: 100%;
	height: 160px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.game-card:hover .game-image {
	transform: scale(1.02);
}

.game-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	padding: 0.5rem;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.game-title {
	font-size: 0.9rem;
	font-weight: 500;
	color: #ffffff;
	margin: 0;
	text-align: center;
}

.game-actions {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	gap: 0.5rem;
	opacity: 0;
	transition: all 0.3s ease;
}

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

.game-actions .btn {
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	text-transform: uppercase;
}

.game-actions .btn_red {
	background: #4a90e2;
	color: white;
}

.game-actions .btn_red:hover {
	background: #357abd;
}

.game-actions .btn_transparent {
	background: transparent;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.game-actions .btn_transparent:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Enhanced jackpot display with neon effects */
.jackpot-display {
	background: linear-gradient(
		135deg,
		var(--surface) 0%,
		var(--surface-light) 100%
	);
	border-radius: var(--border-radius-lg);
	padding: 2rem;
	text-align: center;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.jackpot-display::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(
		from 0deg,
		transparent,
		var(--primary),
		transparent
	);
	animation: rotate 4s linear infinite;
	opacity: 0.1;
}

@keyframes rotate {
	to {
		transform: rotate(360deg);
	}
}

.jackpot-amount {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 1;
}

/* Removed jackpot-status styles completely */
/* .jackpot-status styles removed */

/* Modern payment methods grid */
.payments-section {
	margin: 3rem 0;
}

.payment-category {
	margin-bottom: 2.5rem;
}

.payment-category-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.payment-category-title::before {
	content: '';
	width: 3px;
	height: 1.5rem;
	background: var(--primary);
	border-radius: 2px;
}

.payment-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
}

.payment-item {
	background: var(--surface);
	border-radius: var(--border-radius);
	padding: 1.25rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	transition: var(--transition);
	border: 1px solid var(--border-color);
	position: relative;
	overflow: hidden;
}

.payment-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 212, 255, 0.1),
		transparent
	);
	transition: left 0.6s;
}

.payment-item:hover::before {
	left: 100%;
}

.payment-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.payment-logo {
	width: 50px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--surface-light);
	border-radius: var(--border-radius);
	padding: 0.5rem;
	border: 1px solid var(--border-color);
	flex-shrink: 0;
}

.payment-info h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-color);
	margin: 0 0 0.25rem 0;
}

.payment-info p {
	color: var(--text-secondary);
	font-size: 0.8rem;
	margin: 0 0 0.25rem 0;
}

.payment-limits {
	color: var(--primary);
	font-size: 0.75rem;
	font-weight: 500;
	margin: 0;
}

/* Enhanced winners board */
.winners-board {
	background: var(--card-gradient);
	border-radius: var(--border-radius-lg);
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.winners-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.winner-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--border-radius);
	transition: var(--transition);
	border-left: 3px solid transparent;
}

.winner-item:hover {
	background: rgba(255, 255, 255, 0.1);
	border-left-color: var(--primary);
	transform: translateX(4px);
}

.winner-info {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.winner-avatar {
	width: 40px;
	height: 40px;
	background: var(--accent-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: white;
}

.winner-details h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.25rem;
}

.winner-details p {
	font-size: 0.875rem;
	color: var(--text-muted);
}

.winner-amount {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--neon-green);
}

/* Responsive improvements */
@media (max-width: 768px) {
	.payment-grid {
		grid-template-columns: 1fr;
	}

	.game-actions {
		flex-direction: column;
	}

	.winner-item {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.jackpot-amount {
		font-size: 2rem;
	}
}

/* Added new styles for enhanced components */

/* Breadcrumbs */
.breadcrumbs {
	background-color: rgba(0, 0, 0, 0.3);
	padding: 10px 0;
	margin-top: 65px; /* Уменьшили отступ с 70px до 65px для лучшего позиционирования */
}

.breadcrumbs__list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.breadcrumbs__list li {
	color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs__list li:not(:last-child)::after {
	content: ' / ';
	margin: 0 8px;
	color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs__list a {
	color: var(--link-hover-color);
	text-decoration: none;
}

.breadcrumbs__list a:hover {
	text-decoration: underline;
}

/* Table of Contents */
.toc {
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	padding: 2rem;
	margin: 2rem 0;
}

.toc h2 {
	margin-top: 0;
	color: var(--primary);
}

.toc__list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
	gap: 1rem;
}

.toc__list a {
	display: block;
	padding: 0.8rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-color);
	border-radius: 8px;
	text-decoration: none;
	transition: var(--transition);
}

.toc__list a:hover {
	background: var(--primary-dark);
	color: var(--text-color);
	transform: translateY(-2px);
}

/* Brand Rating */
.brand-rating {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	margin: 2rem 0;
}

.rating-stars {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.stars {
	color: #ffd700;
	font-size: 1.5rem;
}

.rating-value {
	font-weight: bold;
	font-size: 1.2rem;
}

.reviews-count {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.license {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.license-img {
	height: 30px;
}

/* Info Table */
.brand-info {
	margin: 3rem 0;
}

.info-table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.info-table td {
	padding: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table td:first-child {
	width: 30%;
	background: rgba(255, 255, 255, 0.05);
}

.mirror-link {
	color: var(--primary);
	font-weight: bold;
}

/* Bonuses Table */
.bonuses-table {
	margin: 2rem 0;
}

.bonus-table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.bonus-table th,
.bonus-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-table th {
	background: var(--primary);
	color: white;
	font-weight: bold;
}

.bonus-table tr:hover {
	background: rgba(255, 255, 255, 0.05);
}

/* Providers Grid */
.providers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.provider-item {
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	padding: 2rem;
	text-align: center;
	transition: var(--transition);
}

.provider-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
}

.provider-logo {
	height: 60px;
	margin-bottom: 1rem;
	filter: brightness(0.8);
	transition: var(--transition);
}

.provider-item:hover .provider-logo {
	filter: brightness(1);
}

.provider-name {
	font-weight: bold;
	color: var(--text-color);
}

/* Payment Methods */
.payments-section {
	margin: 4rem 0;
}

.payment-logos {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 2rem;
	padding: 2rem;
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
}

.payment-logo {
	height: 40px;
	filter: brightness(0.8);
	transition: var(--transition);
}

.payment-logo:hover {
	filter: brightness(1);
	transform: scale(1.1);
}

.payment-table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.payment-table th,
.payment-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-table th {
	background: var(--primary);
	color: white;
	font-weight: bold;
}

/* Improved payment methods styling */
.payment-methods {
	margin: 2rem 0;
}

.payment-category {
	margin-bottom: 3rem;
}

.payment-category-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.payment-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.payment-item {
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	transition: var(--transition);
	border: 1px solid rgba(52, 152, 254, 0.1);
}

.payment-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(52, 152, 254, 0.2);
	border-color: rgba(52, 152, 254, 0.3);
}

.payment-logo {
	width: 60px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 0.5rem;
}

.payment-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: brightness(0.9);
	transition: var(--transition);
}

.payment-item:hover .payment-logo img {
	filter: brightness(1.1);
}

.payment-info {
	flex: 1;
}

.payment-info h4 {
	margin: 0 0 0.5rem 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-color);
}

.payment-info p {
	margin: 0 0 0.5rem 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

.payment-limits {
	font-size: 0.8rem;
	color: var(--primary);
	font-weight: 500;
}

.payment-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
	padding: 2rem;
	background: rgba(17, 16, 16, 0.6);
	border-radius: var(--border-radius);
	border: 1px solid rgba(52, 152, 254, 0.1);
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.feature-icon {
	font-size: 2rem;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(52, 152, 254, 0.1);
	border-radius: 50%;
	flex-shrink: 0;
}

.feature-text h4 {
	margin: 0 0 0.5rem 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-color);
}

.feature-text p {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.4;
}

/* Mobile responsive improvements for payment methods */
@media (max-width: 768px) {
	.payment-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.payment-item {
		padding: 1rem;
	}

	.payment-logo {
		width: 50px;
		height: 35px;
	}

	.payment-features {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1.5rem;
	}

	.feature-item {
		gap: 0.75rem;
	}

	.feature-icon {
		width: 40px;
		height: 40px;
		font-size: 1.5rem;
	}
}

/* Registration Steps */
.registration-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 4rem 0 2rem;
}

.step {
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	padding: 2rem;
	position: relative;
	transition: var(--transition);
}

.step:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
}

.step-number {
	position: absolute;
	top: -15px;
	left: 20px;
	background: var(--primary);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.2rem;
}

.step-content {
	margin-top: 1rem;
}

.step-content h3 {
	color: var(--primary);
	margin-bottom: 1rem;
}

.step-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 1.5rem;
}

.registration-cta {
	text-align: center;
	margin: 3rem 0;
}

.registration-btn {
	font-size: 1.2rem;
	padding: 1rem 2rem;
	height: auto;
}

/* Alternatives Grid */
.alternatives-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.alternative-item {
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	padding: 2rem;
	text-align: center;
	transition: var(--transition);
}

.alternative-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
}

.alternative-item h3 {
	color: var(--primary);
	margin-bottom: 1rem;
}

.alternative-item p {
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.8);
}

/* Footer Disclaimers */
.footer__disclaimers {
	text-align: center;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__disclaimers p {
	margin: 0.5rem 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

.age-restriction {
	font-weight: bold;
	color: var(--primary) !important;
}

.footer__disclaimers a {
	color: var(--primary);
	text-decoration: none;
}

.footer__disclaimers a:hover {
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
	.brand-rating {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

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

	.registration-steps {
		grid-template-columns: 1fr;
	}

	.providers-grid,
	.alternatives-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.payment-logos {
		gap: 1rem;
	}

	.payment-logo {
		height: 30px;
	}
}

html,
body {
	min-height: 100vh;
	scrollbar-color: #1e1e1e transparent;
	overflow-x: hidden;
	width: 100%;
}
html {
	position: relative;
	isolation: isolate;
	background-size: cover;
	background-attachment: fixed;
	background-color: var(--dark-bg);
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-padding-top: 74px;
	scroll-behavior: smooth;
}

body {
	position: relative;
	overflow-x: hidden;
	color: var(--text-color);
	margin: 0;
	padding: 0;
	font-family: var(--font-primary);
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
}
body * {
	transition: var(--transition);
	-moz-user-select: none;
	-o-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	box-sizing: border-box;
}

a {
	color: var(--primary);
	text-decoration: none;
}
a:hover {
	color: var(--primary-dark);
}

section:not(.hero) {
	margin: var(--section-indent) 0;
	position: relative;
	display: inline-block;
	width: 100%;
}
section.hero {
	margin-bottom: var(--section-indent);
}

.page-wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow-x: hidden;
}

.main {
	flex: 1 1 auto;
}

.wrapper {
	width: 1300px;
	margin: 0 auto;
}
@media (max-width: 1350px) {
	.wrapper {
		width: 90%;
	}
}
.wrapper figure img {
	width: 100%;
	max-height: 500px;
	height: auto;
	margin-block: 2rem;
}
@media (max-width: 767px) {
	.wrapper figure img {
		max-height: 350px;
	}
}
.wrapper li {
	list-style-position: inside;
}

.no-scroll {
	overflow: hidden;
}

.hidden {
	display: none !important;
}

@media (max-width: 991px) {
	.hidden-mobile {
		display: none;
	}
}

.red {
	color: var(--primary);
}

/* Header */
.header {
	z-index: 5;
	background-color: var(--dark-bg);
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	max-width: 100vw;
	padding: 15px 0 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Улучшили тень для лучшей видимости липкой шапки */
}
@media (max-width: 767px) {
	.header {
		padding: 0.9rem 0 0.7rem;
	}
}

.header__wrapper {
	display: inline-flex;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	grid-gap: 2rem;
}

.header__img-wrapper {
	display: inline-flex;
	align-items: center;
	height: 40px;
}
@media (max-width: 767px) {
	.header__img-wrapper {
		width: 160px;
		height: unset;
	}
}
@media (max-width: 510px) {
	.header__img-wrapper {
		width: 90px;
	}
}

.header__logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.header-menu {
}
.header__nav {
	display: inline-flex;
	/* 	width: 100%; */
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	/* 	padding: 10px 0 13px; */
	/* 	background-color: var(--grey-bg); */
	/* 	border-bottom: 2px solid var(--primary); */
}

@media (max-width: 991px) {
	.header__nav {
		position: absolute;
		opacity: 0;
		top: 75px;
		left: 100vw;
		background: var(--dark-bg);
		height: 100vh;
		padding: 20px 0;
		flex-direction: column;
		align-items: center;
		justify-content: start;
		width: 100%;
		transition: var(--transition);
	}

	.header__nav.active {
		opacity: 1;
		left: 0;
		text-align: center;
		transition: var(--transition);
		z-index: 100;
		overflow-y: scroll;
	}
}

.header__list {
	display: inline-flex;
	flex-wrap: wrap;
	width: auto;
	gap: 20px;
	margin: 0;
	padding: 0;
}
@media (max-width: 991px) {
	.header__list {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 15px 0;
		padding-left: 0;
		margin-block: 0;
	}
}

.header__list-item {
	list-style-type: none;
}

.header__list-link {
	color: #b6bcc4;
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	white-space: nowrap;
	padding: 12px;
	text-decoration: none;
	-webkit-user-select: none;
	user-select: none;
	border-radius: 5px;
}

.header__list-link:hover {
	color: #f8fafc;
	background-color: var(--primary-dark);
}

.header__buttons-wrapper {
	display: inline-flex;
	/* 	margin-left: auto; */
	gap: 20px;
}
@media (max-width: 767px) {
	.header__buttons-wrapper {
		gap: 10px;
	}
}

.header__btn {
}

@media (max-width: 1199px) {
	.header__btn {
		/* 		padding: 0.8rem; */
		font-size: 1rem;
	}
}
@media (max-width: 767px) {
	.header__btn {
		/* 		padding: 0.5rem; */
		font-size: 0.8rem;
	}
}
@media (max-width: 510px) {
	.header__btn {
		/* 		padding: 0.2rem; */
		font-size: 0.7rem;
	}
}
@media (max-width: 440px) {
	.header__btn {
		display: none;
	}
}

.header__burger {
}

.header-burger {
	display: none;
}

.header__burger-line {
	background-color: var(--text-color);
	width: 30px;
	height: 2px;
	transition: var(--transition);
}

.header-burger__line {
}

@media (max-width: 991px) {
	.header-burger {
		display: inline-flex;
		cursor: pointer;
		margin-left: 20px;
		position: relative;
		width: 35px;
		height: 14px;
		align-items: center;
		justify-content: end;
	}

	.header-burger:before,
	.header-burger:after {
		content: '';
		background-color: var(--text-color);
		position: absolute;
		height: 2px;
		transition: var(--transition);
	}

	.header-burger:before {
		width: 35px;
		top: 0;
		transition: var(--transition);
	}

	.header-burger:after {
		width: 25px;
		bottom: 0;
		transition: var(--transition);
	}

	.header-burger.pressed:before,
	.header-burger.pressed:after {
		width: 30px;
	}

	.header-burger.pressed:before {
		transform: rotate(45deg);
		top: 6px;
	}

	.header-burger.pressed:after {
		transform: rotate(-45deg);
		bottom: 6px;
	}

	.header-burger.pressed .header-burger__line {
		opacity: 0;
	}
}
@media (max-width: 767px) {
	.header-burger {
		margin-left: 10px;
	}
}

.main {
	display: flex;
	width: 100%;
	flex-direction: column;
	padding-top: 50px;
}

.main .wrapper {
	padding: 1rem 0;
}

.hero {
	display: inline-flex;
	width: 100%;
}

.hero__wrapper {
	background-color: transparent !important;
	z-index: 1;
}
.hero__slide {
	min-height: 320px;
	isolation: isolate;
	position: relative;
	display: grid;
	align-content: center;
	position: relative;
	z-index: 0;
	overflow: hidden;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
}
.hero__slide:before {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero__img,
.hero__img_2 {
	position: absolute;
	inset: 0;
	width: calc(100% + 40px);
	max-width: unset;
	height: 100%;
	object-fit: cover;
}
@keyframes banners-move-bg {
	0%,
	100% {
		transform: translateX(-20px);
	}
	50% {
		transform: translateX(0); /* Двигаем вправо на 100% ширины элемента */
	}
}

@keyframes banners-move-main {
	0%,
	100% {
		transform: translateX(20px);
	}
	50% {
		transform: translateX(0); /* Двигаем влево на 100% ширины элемента */
	}
}

/* Анимация для активного состояния */
.swiper-slide-active .hero__img {
	z-index: -2;
	animation-name: banners-move-bg;
	animation-duration: 15s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.swiper-slide-active .hero__img_2 {
	z-index: -1;
	animation-name: banners-move-main;
	animation-duration: 15s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

/* Сброс анимации для неактивного состояния */
.swiper-slide:not(.swiper-slide-active) .hero__img,
.swiper-slide:not(.swiper-slide-active) .hero__img_2 {
	animation-name: none;
}

/* @media (max-width: 767px) {
	.hero__img {
		opacity: 0.6;
	}
} */

.hero__slide-caption {
	display: inline-flex;
	flex-direction: column;
	padding: 7rem 5rem !important;
	width: 100%;
}
@media (max-width: 1199px) {
	.hero__slide-caption {
		padding: 4rem 2rem !important;
	}
}
@media (max-width: 767px) {
	.hero__slide-caption {
		padding: 1rem !important;
	}
}

.hero__slide-title {
}

.hero__slide-semititle {
	font-size: 24px;
	font-weight: 500;
	line-height: 28px;
	letter-spacing: normal;
}

.hero__slide-btn {
	margin-top: 2.26rem;
	cursor: pointer;
	width: max-content;
	border-radius: var(--border-radius);
	box-shadow: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	text-transform: uppercase;
	letter-spacing: 0.25px;
	text-decoration: none;
	background-color: var(--white);
	color: var(--black);
	padding: 16px 28px;
	height: unset;
	transition: box-shadow 0.2s ease;
}

.hero__slide-btn:hover {
	background-color: var(--white);
	color: var(--black);
	box-shadow: 0 0 12px var(--white);
}
.hero__swiper-pagination {
	position: relative !important;
	bottom: 30px !important;
	margin-top: 0;
}
.hero__swiper-pagination .swiper-pagination-bullet {
	background-color: var(--white);
	width: 8px;
	height: 8px;
	background-color: #00000080;
	border: 1px solid var(--white);
	border-radius: 50%;
	margin: 0 6px !important;
}
.hero__swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--white);
}
@media (max-width: 767px) {
	.hero__slide-btn {
		margin-top: 2rem;
		cursor: pointer;
		padding: 1rem 4rem;
		width: max-content;
		max-width: 100%;
		font-weight: 700;
	}
}

.rating {
}
.rating__wrapper {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	isolation: isolate;
}
.rating__item {
}
.rating__table {
	border-radius: var(--border-radius);
	/* background: linear-gradient(
		180deg,
		rgba(216, 42, 78, 0.6) 0%,
		rgba(23, 11, 25, 0.6) 68.02%
	); */
	background: rgba(17, 16, 16, 0.8);
	width: 100%;
	padding: 44px 42px;
	display: grid;
	width: 100%;
}
.rating__table-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.7);
	padding-bottom: 7px;
	margin-bottom: 27px;
}
.rating__table-item {
	display: grid;
	grid-template-columns: 66px calc(70% - 66px) 30%;
}
.rating__table-item:not(.rating__table-header.rating__table-item, :last-child) {
	margin-bottom: 15px;
}
.rating__table-number {
	font-weight: 400;
	font-size: 1rem;
	opacity: 0.4;
}
.rating__table-name {
	font-weight: 400;
	font-size: 1rem;
}
.rating__table-result {
	font-weight: 400;
	font-size: 1rem;
}
.rating__table-number,
.rating__table-name,
.rating__table-result {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.rating__table-header .rating__table-number,
.rating__table-header .rating__table-name,
.rating__table-header .rating__table-result {
	color: var(--primary);
	opacity: 1;
}
.rating__table-body {
}
.rating__table-link {
	margin: 40px auto 0;
}
.rating__jackpot::before {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.rating__jackpot {
	border-radius: var(--border-radius-lg);
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)),
		url('../img/jackpot.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
	display: grid;
	place-content: center;
	gap: 1.5rem;
	position: relative;
	padding: 2rem;
	border: 1px solid var(--border-color);
}

.rating__jackpot-title {
	text-align: center;
	margin: 0;
	position: relative;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-color);
}
.rating__jackpot-text {
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1;
	text-align: center;
	margin: 0;
	position: relative;
	color: var(--primary);
}

/* Enhanced jackpot styling */
.jackpot-info {
	text-align: center;
	position: relative;
}

.jackpot-description {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 1rem 0 0;
}

/* Enhanced jackpot status indicator */
.jackpot-status {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	font-size: 0.9rem;
}

.status-indicator {
	width: 8px;
	height: 8px;
	background: #00ff88;
	border-radius: 50%;
	animation: pulse-green 2s infinite;
}

.status-text {
	color: #00ff88;
	font-weight: 500;
}

@keyframes pulse-green {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.2);
	}
}

/* Add pulse animation for orange status */
@keyframes pulse-orange {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.2);
	}
}

@media (max-width: 1199px) {
	.rating__wrapper {
		grid-template-columns: 100%;
		gap: 2rem;
	}
	.rating__table {
		width: 100%;
	}
	.rating__jackpot {
		padding: 5rem 0.5rem;
		gap: 1.5rem;
	}
	.rating__jackpot-title {
		font-size: 1.8rem;
		line-height: 120%;
	}
	.rating__jackpot-text {
		font-size: 2.8rem;
	}
}
@media (max-width: 540px) {
	.rating__table {
		padding: 1.2em 1.5rem;
	}
	.rating__table-item {
		grid-template-columns: 35px calc(72% - 35px) 28%;
	}
	.rating__table-name,
	.rating__table-number,
	.rating__table-result {
		font-size: 0.9rem;
	}
}
@media (max-width: 410px) {
	.rating__table-item {
		grid-template-columns: 35px calc(65% - 35px) 35%;
	}
}
.slots {
	padding: 4rem 0;
	background: #0f0f23;
}

.slots .wrapper {
	padding: 0;
	max-width: 1400px;
	margin: 0 auto;
}

.slots__filters-wrapper {
	margin-top: 1rem;
}

.slots__filter-tabs-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	gap: 1rem;
	flex-wrap: wrap;
}

.slots__filter-tabs-items-wrapper {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	flex-wrap: wrap;
}

.slots__filter-tabs-link {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-size: 0.85rem;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
	cursor: pointer;
}

.slots__filter-tabs-link:hover {
	/* Changed hover color to white instead of blue */
	background: rgba(255, 255, 255, 0.2);
	color: white;
	transform: translateY(-1px);
}

.slots__filter-tabs-link.red,
.slots__filter-tabs-link.active {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
}

.slots__filter-search-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	padding: 0.5rem;
	min-width: 200px;
	max-width: 250px;
}

.slots__filter-search-input {
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 0.9rem;
	padding: 0 0.5rem;
	flex: 1;
	outline: none;
}

.slots__filter-search-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.slots__filter-tabs-search-img,
.slots__filter-tabs-search-close-img {
	width: 16px;
	height: 16px;
	opacity: 0.7;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.slots__filter-tabs-search-close-img:hover {
	opacity: 1;
}

.slots__category-items-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(175px, 100%), 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
	justify-content: flex-start;
}

.slots__category-item {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	width: 100%;
	height: 200px;
	max-width: 195px;
}

.slots__category-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.2);
}
.slots__category-item:hover img {
	opacity: 0.5;
}

.slots__category-img-wrapper {
	position: relative;
	width: 100%;
	height: 160px;
	overflow: hidden;
}

.slots__category-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.slots__category-item:hover .slots__category-img {
	transform: scale(1.02);
}

.slots__category-info-wrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	padding: 0.5rem;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slots__category-title {
	display: block;
	color: white;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	padding: 8px 0;
	transition: color 0.3s ease;
}

.slots__category-title:hover {
	/* Changed hover color to white */
	color: white;
	text-decoration: none;
}

.slots__action {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	gap: 0.5rem;
	opacity: 0;
	transition: all 0.3s ease;
}

.slots__category-item:hover .slots__action {
	opacity: 1;
}

.slots__action-link {
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
}

.slots__action-link.btn_red {
	background: #4a90e2;
	color: white;
}

.slots__action-link.btn_red:hover {
	background: #357abd;
}

.slots__action-link.btn {
	background: transparent;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.slots__action-link.btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Improved filter tabs styling */
/* Improved search wrapper styling */
/* Fixed game cards layout and styling */

/* Modern game cards with hover effects */
.game-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	width: 220px;
	height: 200px;
}

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

.game-image {
	width: 100%;
	height: 160px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.game-card:hover .game-image {
	transform: scale(1.02);
}

.game-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	padding: 0.5rem;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.game-title {
	font-size: 0.9rem;
	font-weight: 500;
	color: #ffffff;
	margin: 0;
	text-align: center;
}

.game-actions {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	gap: 0.5rem;
	opacity: 0;
	transition: all 0.3s ease;
}

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

.game-actions .btn {
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	text-transform: uppercase;
}

.game-actions .btn_red {
	background: #4a90e2;
	color: white;
}

.game-actions .btn_red:hover {
	background: #357abd;
}

.game-actions .btn_transparent {
	background: transparent;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.game-actions .btn_transparent:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Enhanced jackpot display with neon effects */
.jackpot-display {
	background: linear-gradient(
		135deg,
		var(--surface) 0%,
		var(--surface-light) 100%
	);
	border-radius: var(--border-radius-lg);
	padding: 2rem;
	text-align: center;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.jackpot-display::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(
		from 0deg,
		transparent,
		var(--primary),
		transparent
	);
	animation: rotate 4s linear infinite;
	opacity: 0.1;
}

@keyframes rotate {
	to {
		transform: rotate(360deg);
	}
}

.jackpot-amount {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 1;
}

/* Responsive improvements */
@media (max-width: 768px) {
	.payment-grid {
		grid-template-columns: 1fr;
	}

	.game-actions {
		flex-direction: column;
	}

	.winner-item {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.jackpot-amount {
		font-size: 2rem;
	}
}

/* Added new styles for enhanced components */

/* Breadcrumbs */
.breadcrumbs {
	background-color: rgba(0, 0, 0, 0.3);
	padding: 10px 0;
	margin-top: 65px; /* Уменьшили отступ с 70px до 65px для лучшего позиционирования */
}

.breadcrumbs__list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.breadcrumbs__list li {
	color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs__list li:not(:last-child)::after {
	content: ' / ';
	margin: 0 8px;
	color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs__list a {
	color: var(--link-hover-color);
	text-decoration: none;
}

.breadcrumbs__list a:hover {
	text-decoration: underline;
}

/* Table of Contents */
.toc {
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	padding: 2rem;
	margin: 2rem 0;
}

.toc h2 {
	margin-top: 0;
	color: var(--primary);
}

.toc__list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
	gap: 1rem;
}

.toc__list a {
	display: block;
	padding: 0.8rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	text-decoration: none;
	transition: var(--transition);
}

.toc__list a:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

/* Brand Rating */
.brand-rating {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	margin: 2rem 0;
}

.rating-stars {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.stars {
	color: #ffd700;
	font-size: 1.5rem;
}

.rating-value {
	font-weight: bold;
	font-size: 1.2rem;
}

.reviews-count {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.license {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.license-img {
	height: 30px;
}

/* Info Table */
.brand-info {
	margin: 3rem 0;
}

.info-table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.info-table td {
	padding: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table td:first-child {
	width: 30%;
	background: rgba(255, 255, 255, 0.05);
}

.mirror-link {
	color: var(--primary);
	font-weight: bold;
}

/* Bonuses Table */
.bonuses-table {
	margin: 2rem 0;
}

.bonus-table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.bonus-table th,
.bonus-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-table th {
	background: var(--primary);
	color: white;
	font-weight: bold;
}

.bonus-table tr:hover {
	background: rgba(255, 255, 255, 0.05);
}

/* Providers Grid */
.providers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.provider-item {
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	padding: 2rem;
	text-align: center;
	transition: var(--transition);
}

.provider-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
}

.provider-logo {
	height: 60px;
	margin-bottom: 1rem;
	filter: brightness(0.8);
	transition: var(--transition);
}

.provider-item:hover .provider-logo {
	filter: brightness(1);
}

.provider-name {
	font-weight: bold;
	color: var(--text-color);
}

/* Payment Methods */
.payments-section {
	margin: 4rem 0;
}

.payment-logos {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 2rem;
	padding: 2rem;
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
}

.payment-logo {
	height: 40px;
	filter: brightness(0.8);
	transition: var(--transition);
}

.payment-logo:hover {
	filter: brightness(1);
	transform: scale(1.1);
}

.payment-table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(17, 16, 16, 0.8);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.payment-table th,
.payment-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-table th {
	background: var(--primary);
	color: white;
	font-weight: bold;
}

/* Improved FAQ section styles */
.faq {
	padding: 4rem 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.faq h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
	color: #ffffff;
	font-weight: 700;
}

.faq__wrapper {
	max-width: 900px;
	margin: 0 auto;
}

.faq__item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq__item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: #4a9eff;
}

.faq__item[open] {
	background: rgba(74, 158, 255, 0.1);
	border-color: #4a9eff;
}

.faq__question {
	padding: 1.5rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: #ffffff;
	cursor: pointer;
	list-style: none;
	position: relative;
	transition: all 0.3s ease;
}

.faq__question::-webkit-details-marker {
	display: none;
}

.faq__question::after {
	content: '+';
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: #4a9eff;
	transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq__answer {
	padding: 0 2rem 2rem 2rem;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq__answer-item {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}

.faq__answer-info {
	flex: 1;
	color: #e0e0e0;
	line-height: 1.6;
	font-size: 1rem;
}

.faq__answer-img {
	width: 120px;
	height: 80px;
	object-fit: cover;
	border-radius: 8px;
	border: 2px solid rgba(74, 158, 255, 0.3);
}

/* Responsive improvements for smaller screens */
@media (max-width: 768px) {
	.faq__question {
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}

	.faq__question::after {
		right: 1.5rem;
	}

	.faq__answer {
		padding: 0 1.5rem 1.5rem 1.5rem;
	}

	.faq__answer-item {
		flex-direction: column;
		gap: 1rem;
	}

	.faq__answer-img {
		width: 100%;
		height: 120px;
	}
}

.footer {
	background-color: var(--dark-bg);
	color: var(--text-color);
	padding-bottom: 2.5rem;
}

.footer__wrapper {
	text-align: center;
}

.footer__payment {
	margin-top: 8rem;
	margin-bottom: 2.5rem;
}

.footer__payment-list {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 0;
}

.footer__payment-list-item {
	display: inline-flex;
	align-items: center;
}

.footer__payment-img-wrapper {
	height: 100%;
	display: inline-flex;
	align-items: center;
}

.footer__payment-img {
	object-fit: contain;
}
@media (max-width: 767px) {
	.footer__payment-img {
		height: 30px;
	}
}

.footer__nav {
	padding: 90px 0;
}

.footer__nav-list {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 1.25rem;
	flex-wrap: wrap;
	padding: 0;
}

.footer__nav-list-item {
	display: inline-block;
}

.footer__nav-list-item-link {
	text-transform: uppercase;
}

.footer__copyright-wrapper {
	border-top: 1px solid #909090;
	padding: 6px 0;
	display: grid;
	grid-template-columns: repeat(3, 33.3%);
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

.footer__copyright-homelink {
	margin-right: auto;
}

.footer__copyright-btn {
	padding: 15px;
	margin-left: auto;
	display: inline-grid;
	place-content: center;
	border-radius: 15px;
	width: 5.5rem;
	height: 5.5rem;
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 1000;
}

@media (max-width: 1199px) {
	.footer__payment {
		padding: 34px;
	}
	.footer__copyright-wrapper {
		grid-template-columns: 50% 50%;
		gap: 2rem 0;
	}
	.footer__copyright-year {
		text-align: right;
	}
	.footer__copyright-btn {
		grid-column: -3 / -1;
		justify-content: end;
	}
	.footer__nav {
		margin-bottom: var(--section-indent);
	}
	.footer__copyright-btn {
		width: 75px;
		height: 75px;
		place-content: center;
		padding: 5px;
	}
	.footer__copyright-btn img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	.footer__nav-list {
		margin-bottom: 3rem;
	}
}
@media (max-width: 767px) {
	.footer__payment {
		margin-top: 4rem;
	}
	.footer__payment-list {
		justify-content: center;
		gap: 1.5rem;
	}
	.footer__nav-list-item-link {
		font-size: 0.9rem;
	}
}
@media (max-width: 610px) {
	.footer__payment {
		padding: 22px;
	}
	.footer__copyright-wrapper {
		grid-template-columns: 100%;
		place-content: center;
	}
	.footer__copyright-btn {
		grid-column: unset;
	}
	.footer__copyright-year,
	.footer__copyright-homelink {
		text-align: center;
		width: 100%;
		gap: 1rem;
	}
	.footer__copyright-btn {
		width: 60px;
		height: 60px;
		margin: 0 auto;
	}
}

img {
	max-width: 100%;
	object-fit: contain;
}
.center {
	text-align: center;
	justify-content: center;
	align-items: center;
}
iframe {
	width: 100%;
	height: calc(100vh - 250px);
}
#slider-1 .slides__item {
	height: 400px;
	max-height: 80vh;
	background-position: center center !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slides__inner {
	display: inline-flex;
	flex-direction: column;
	justify-items: center;
	grid-gap: 1rem;
	font-size: 2rem;
	font-weight: bold;
	padding: 2.5rem;
	backdrop-filter: blur(10px);
}
.slides__inner p {
	display: inline-block;
	margin: 0;
	line-height: 1.2;
}
.slides__button {
	font-size: 1.25rem;
	transition: unset;
}
.prize__wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
	grid-gap: 2rem;
	justify-items: center;
}
.action-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
	grid-gap: 2rem;
	justify-items: center;
}
.action-img {
	object-fit: cover;
}
.action-button {
	color: var(--primary);
}
.action-text p {
	margin: 1rem 0 0;
}
@-webkit-keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}

	1% {
		display: block;
		opacity: 0;
	}

	100% {
		display: block;
		opacity: 1;
	}
}

@-moz-keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}

	1% {
		display: block;
		opacity: 0;
	}

	100% {
		display: block;
		opacity: 1;
	}
}

@-o-keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}

	1% {
		display: block;
		opacity: 0;
	}

	100% {
		display: block;
		opacity: 1;
	}
}

@keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}

	1% {
		display: block;
		opacity: 0;
	}

	100% {
		display: block;
		opacity: 1;
	}
}

@-webkit-keyframes fadeOutToNone {
	100% {
		display: block;
		opacity: 1;
	}

	1% {
		display: block;
		opacity: 0;
	}

	0% {
		display: none;
		opacity: 0;
	}
}

@-moz-keyframes fadeOutToNone {
	100% {
		display: block;
		opacity: 1;
	}

	1% {
		display: block;
		opacity: 0;
	}

	0% {
		display: none;
		opacity: 0;
	}
}

@-o-keyframes fadeOutToNone {
	100% {
		display: block;
		opacity: 1;
	}

	1% {
		display: block;
		opacity: 0;
	}

	0% {
		display: none;
		opacity: 0;
	}
}

@keyframes fadeOutToNone {
	100% {
		display: block;
		opacity: 1;
	}

	1% {
		display: block;
		opacity: 0;
	}

	0% {
		display: none;
		opacity: 0;
	}
}

table {
	border-collapse: collapse;
	width: 100%;
	border: 1px solid #fff; /* Устанавливаем белые рамки */
}

@media (max-width: 767px) {
	table {
		display: block;
		overflow-x: auto;
	}
}

td {
	padding: 8px;
	text-align: left; /* Ориентация по левому краю */
	border: 1px solid #fff; /* Устанавливаем белые рамки */
}

@media (max-width: 767px) {
	.wrapper img {
		max-height: 350px;
	}
}

img.wp-smiley,
img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 0.07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}

/* Updated games grid alignment to left */
.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.5rem;
	justify-items: start;
	margin-top: 2rem;
}

.wrapper table {
	width: 100%;
	margin: 2em 0;
	border-collapse: collapse;
	font-size: 0.95em;
}

.wrapper th,
.wrapper td {
	padding: 0.75em 1em;
	text-align: left;
	vertical-align: top;
	word-break: break-word;
}

.wrapper th {
	font-weight: 600;
}

@media (max-width: 767px) {
	.wrapper table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		width: 100%;
		border-radius: 6px;
	}

	.wrapper th,
	.wrapper td {
		white-space: normal;
		word-break: break-word;
	}

	.wrapper li {
		list-style-position: inside;
	}
}

@media (max-width: 767px) {
	.wrapper table.scrollable {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
		border-radius: 6px;
	}

	.wrapper table.scrollable th,
	.wrapper table.scrollable td {
		white-space: nowrap;
		word-break: normal;
	}

	.wrapper table.scrollable::-webkit-scrollbar {
		height: 6px;
	}
	.wrapper table.scrollable::-webkit-scrollbar-thumb {
		background: rgba(0, 0, 0, 0.2);
		border-radius: 3px;
	}
	.wrapper table.scrollable::-webkit-scrollbar-track {
		background: transparent;
	}
}
