:root {
	--primary-purple: #4a1e78;
	--dark-purple: #2d1154;
	--bright-green: #00ff85;
	--text-dark: #1a1a2e;
	--text-light: #ffffff;
	--text-gray: #a0a0b0;
	--bg-light: #f5f7fa;
	--bg-section: #ffffff;
	--footer-bg: #f0f5fd;
	--popup-text-primary: #ffffff;
	--popup-color-primary: #00ff85;
	--popup-color-accent: #4a1e78;
	--popup-color-gradient-end: #4a1e78;
	--popup-bg: #1a1a2e;
}

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

	to {
		opacity: 1;
		transform: translateY(0);
	}

}

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

	50% {
		left: 120%;
	}

	100% {
		left: 120%;
	}

}

@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;
	}

}

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

html {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	font-family: "Arial", sans-serif;
	color: var(--text-dark);
	background: var(--bg-light);
	line-height: 1.6;
}

.container {
	max-width: 1540px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: var(--primary-purple);
	padding: 15px 0;
	z-index: 1000;
}

.header-container {
	max-width: 1540px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	gap: 30px;
}

.menu-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	width: 30px;
	height: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.burger-line {
	width: 100%;
	height: 3px;
	background: var(--bright-green);
	border-radius: 2px;
	transition: all 0.3s;
}

.menu-btn:hover .burger-line {
	background: var(--text-light);
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--bright-green);
	font-weight: bold;
	font-size: 20px;
	font-style: italic;
	text-shadow: -2px 2px 0px #e61296;
}

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

.main-nav {
	display: flex;
	gap: 30px;
}

.main-nav a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: color 0.3s;
}

.main-nav a:hover {
	color: var(--bright-green);
}

.casino-popup {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 5px;
	visibility: hidden;
	opacity: 0;
	background: var(--popup-bg);
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 1100;
}

.casino-popup.show {
	visibility: visible;
	opacity: 1;
}

.redirect-notice {
	text-align: center;
	color: #fff;
	padding: 15px;
	animation: fadeIn 0.5s ease-in-out;
}

.notice-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
	color: white;
}

.notice-text {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
}

.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(--popup-text-primary);
}

.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(--popup-text-primary);
	border-radius: 50%;
	background: conic-gradient( from 0deg, var(--popup-color-primary) 0deg 45deg, var(--popup-color-accent) 45deg 90deg, var(--popup-color-primary) 90deg 135deg, var(--popup-color-accent) 135deg 180deg, var(--popup-color-primary) 180deg 225deg, var(--popup-color-accent) 225deg 270deg, var(--popup-color-primary) 270deg 315deg, var(--popup-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(--popup-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(--popup-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(--popup-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(--popup-color-accent);
	box-shadow: 0 0 10px rgba(32, 153, 255, 0.6);
}

.progress-fill {
	width: 0%;
	height: 100%;
	overflow: hidden;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--popup-color-primary), var(--popup-color-gradient-end), var(--popup-color-primary));
	background-size: 200% 100%;
	transition: width 0.3s linear;
	animation: progressShine 2s ease-in-out infinite;
}

.progress-text {
	margin-top: 12px;
	font-size: 14px;
	font-weight: bold;
	color: var(--popup-color-primary);
	text-shadow: 0px 0px 2px var(--popup-color-accent), 0px 1px 2px var(--popup-color-accent), 1px 0px 2px var(--popup-color-accent), 1px 0px 2px var(--popup-color-accent), 0px 0px 2px var(--popup-color-accent);
}

.header-actions {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-input {
	padding: 10px 15px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-light);
	border-radius: 8px;
	outline: none;
	width: 140px;
}

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

.btn-login {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid var(--bright-green);
	color: var(--bright-green);
	padding: 10px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	transition: all 0.3s;
}

.btn-login:hover {
	background: var(--bright-green);
	color: var(--dark-purple);
}

.btn-signup {
	background: var(--bright-green);
	border: none;
	color: var(--dark-purple);
	padding: 12px 30px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	transition: transform 0.3s;
	text-decoration: none;
}

.btn-signup:hover {
	transform: scale(1.05);
}

.sidebar {
	position: fixed;
	top: 0;
	left: -100%;
	width: 380px;
	height: 100%;
	z-index: 2000;
	transition: left 0.3s;
	background: var(--primary-purple);
	box-shadow: 0px 0px 6px 2px var(--primary-purple);
}

.sidebar.active {
	left: 0;
}

.sidebar-content {
	width: 100%;
	height: 100%;
	padding: 30px;
	overflow-y: auto;
}

.sidebar-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	color: var(--text-light);
	font-size: 36px;
	cursor: pointer;
	line-height: 1;
}

.btn-signup-sidebar,
.btn-login-sidebar {
	display: block;
	width: 95%;
	text-decoration: none;
	text-align: center;
	padding: 15px;
	border-radius: 50px;
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	margin-bottom: 15px;
}

.btn-signup-sidebar {
	background: var(--bright-green);
	border: none;
	color: var(--dark-purple);
}

.btn-login-sidebar {
	background: transparent;
	border: 2px solid var(--bright-green);
	color: var(--bright-green);
}

.sidebar-nav {
	margin-top: 40px;
}

.sidebar-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 10px;
	color: var(--text-light);
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s;
	border-radius: 8px;
}

.sidebar-item:hover {
	background: rgba(255, 255, 255, 0.1);
}

.sidebar-item img {
	width: 24px;
	height: 24px;
	filter: brightness(0) invert(1);
}

.hero-left,
.hero-center,
.hero-right {
	max-height: 370px;
	overflow: auto;
}

.hero-right .heading {
	color:white;
	font-weight: bold;
}

.hero-section {
	margin-top: 70px;
	background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
	padding: 40px 0;
}

.hero-container {
	display: grid;
	grid-template-columns: 300px 1fr 390px;
	gap: 20px;
	max-width: 1540px;
	margin: 0 auto;
	padding: 0 20px;
}

.hero-left {
	background: linear-gradient(135deg, #8b2fc9 0%, #6b1fa8 100%);
	border-radius: 20px;
	padding: 20px;
}

.signup-form .heading {
	color: var(--text-light);
	margin: 0px;
	font-weight: bold;
}

.signup-form label {
	color: var(--bright-green);
	font-size: 12px;
	display: block;
	margin-top: 10px;
}

.signup-form input,
.signup-form select {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-light);
	font-size: 14px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.form-checkbox {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.form-checkbox input {
	width: auto;
}

.form-checkbox label {
	color: var(--text-light);
	font-size: 11px;
	margin: 0;
}

.btn-create-account {
	width: 100%;
	padding: 15px;
	background: var(--bright-green);
	border: none;
	border-radius: 50px;
	color: var(--dark-purple);
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	text-align: center;
	margin-top: 20px;
	transition: transform 0.3s;
	display: block;
	text-decoration: none;
}

.btn-create-account:hover {
	transform: scale(1.05);
}

.hero-center {
	position: relative;
	display: flex;
	background: linear-gradient(135deg, #8b2fc9 0%, #6b1fa8 100%);
	border-radius: 20px;
	overflow: visible;
}

.hero-slider {
	position: relative;
	flex: 1;
	overflow: auto;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	pointer-events: none;
	display: flex;
}

.hero-slide.active {
	opacity: 1;
	pointer-events: auto;
}

.hero-slide-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
	padding: 20px;
	position: relative;
	border-radius: 20px;
	flex: 1;
	overflow: hidden;
}

.hero-slide-content .heading {
	color: var(--text-light);
	font-size: 20px;
	margin-bottom: 10px;
	z-index: 2;
	max-width: 60%;
}

.hero-text {
	z-index: 2;
	margin-bottom: 30px;
	text-align: left;
}

.hero-label {
	color: var(--text-light);
	font-size: 14px;
	margin-bottom: 5px;
}

.hero-amount {
	color: var(--bright-green);
	font-size: 56px;
	font-weight: bold;
	margin: 10px 0;
	line-height: 1;
}

.hero-spins {
	color: var(--text-light);
	font-size: 20px;
	font-weight: bold;
	margin: 0px;
}

.btn-hero {
	display: flex;
	text-decoration: none;
	align-items: center;
	gap: 10px;
	padding: 15px 40px;
	background: var(--bright-green);
	border: none;
	border-radius: 50px;
	color: var(--dark-purple);
	font-weight: bold;
	font-size: 18px;
	cursor: pointer;
	transition: transform 0.3s;
	z-index: 2;
}

.btn-hero:hover {
	transform: scale(1.05);
}

.btn-hero img {
	width: 30px;
	height: 30px;
}

.hero-image {
	position: absolute;
	right: 0;
	max-width: 315px;
	z-index: 1;
}

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

.hero-dot {
	width: 40px;
	height: 4px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.3s;
}

.hero-dot.active {
	background: var(--bright-green);
}

.hero-dot:hover {
	background: rgba(255, 255, 255, 0.5);
}

.hero-bonus {
	background: rgba(138, 43, 226, 0.4);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 20px;
}

.bonus-label {
	color: var(--text-light);
	font-size: 14px;
}

.bonus-amount {
	color: var(--bright-green);
	font-size: 56px;
	font-weight: bold;
	margin: 10px 0;
}

.bonus-spins {
	color: var(--text-light);
	font-size: 20px;
	margin-bottom: 20px;
}

.btn-deposit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 40px;
	background: var(--bright-green);
	border: none;
	border-radius: 50px;
	color: var(--dark-purple);
	font-weight: bold;
	font-size: 18px;
	cursor: pointer;
	transition: transform 0.3s;
}

.btn-deposit:hover {
	transform: scale(1.05);
}

.btn-deposit img {
	width: 30px;
	height: 30px;
}

.hero-rocket {
	max-width: 400px;
	margin-top: 20px;
}

.hero-right {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.promo-card {
	background: linear-gradient(135deg, #8b2fc9 0%, #6b1fa8 100%);
	border-radius: 20px;
	padding: 25px;
	display: flex;
	gap: 15px;
	align-items: center;
	flex: 1;
}

.promo-card img {
	width: 80px;
	height: 80px;
}

.promo-card h4 {
	color: var(--text-light);
	font-size: 16px;
	margin-bottom: 5px;
}

.promo-card p {
	color: var(--text-light);
	font-size: 12px;
}

.categories-section {
	background: var(--bg-section);
	padding: 20px 0;
	border-bottom: 1px solid #e0e0e0;
}

.categories-scroll {
	display: flex;
	gap: 15px;
	overflow-x: auto;
	padding: 10px 0;
}

::-webkit-scrollbar {
	height: 1px;
}

::-webkit-scrollbar-thumb {
	background: var(--bright-green);
	border-radius: 3px;
}

.category-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 15px 20px;
	text-decoration: none;
	color: var(--primary-purple);
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	border-radius: 12px;
	transition: background 0.3s;
}

.category-item:hover,
.category-item.active {
	background: rgba(0, 255, 133, 0.1);
}

.category-item img {
	width: 32px;
	height: 32px;
}

.games-section {
	padding: 40px 0;
}

.game-category {
	margin-bottom: 60px;
}

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

.category-header .heading {
	color: var(--dark-purple);
	font-size: 28px;
	margin: 0px;
	font-weight: bold;
}

.slider-controls {
	display: flex;
	align-items: center;
	gap: 15px;
}

.slider-prev,
.slider-next {
	background: var(--bright-green);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--dark-purple);
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
	transform: scale(1.1);
}

.slider-dots {
	display: flex;
	gap: 8px;
}

.dot {
	width: 30px;
	height: 4px;
	background: #e0e0e0;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.3s;
}

.dot.active {
	background: var(--bright-green);
}

.game-slider-wrapper {
	overflow: hidden;
	margin-bottom: 30px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.game-slider {
	display: flex;
	gap: 20px;
	transition: transform 0.5s ease;
}

.game-slider .game-card {
	min-width: 280px;
	width: 280px;
	height: 280px;
	flex-shrink: 0;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.game-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.game-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s;
	width: 280px;
	height: 280px;
}

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

.badge {
	position: absolute;
	top: 10px;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
}

.badge.hot {
	left: 10px;
	background: #ff6b6b;
	color: white;
}

.badge.new {
	right: 10px;
	background: var(--bright-green);
	color: var(--dark-purple);
}

.game-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(74, 30, 120, 0.85);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	opacity: 0;
	transition: opacity 0.3s;
}

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

.game-info {
	text-align: center;
	color: white;
	padding: 0 20px;
}

.game-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

.game-provider {
	font-size: 12px;
	opacity: 0.8;
}

.btn-play {
	background: url('../images/icons/play.svg') no-repeat center/ cover;
	border: none;
	width: 50px;
	height: 50px;
	cursor: pointer;
	font-size: 0px;
	transition: transform 0.3s;
}

.btn-play:hover {
	transform: scale(1.1);
}

.try-for-free {
	color: var(--bright-green);
	font-size: 13px;
	font-weight: 600;
}

.btn-more {
	display: block;
	margin: 0 auto;
	padding: 15px 50px;
	background: var(--bright-green);
	border: none;
	border-radius: 50px;
	color: var(--dark-purple);
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.3s;
	text-decoration: none;
	width: 230px;
	text-align: center;
}

.btn-more:hover {
	transform: scale(1.05);
}

.promo-banner-section {
	margin: 60px 0;
}

.promo-banner {
	background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
	border-radius: 30px;
	padding: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.promo-text {
	max-width: 800px;
	z-index: 1;
}

.promo-small {
	color: var(--text-light);
	font-size: 14px;
	margin-bottom: 10px;
}

.promo-label {
	color: var(--text-light);
	font-size: 16px;
	margin-bottom: 5px;
}

.promo-big {
	color: var(--text-light);
	font-size: 72px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 30px;
}

.promo-heading {
	color: var(--bright-green);
	font-size: 42px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 30px;
}

.btn-promo {
	padding: 15px 40px;
	background: var(--bright-green);
	border: none;
	border-radius: 50px;
	color: var(--dark-purple);
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.3s;
	text-decoration: none;
}

.btn-promo:hover {
	transform: scale(1.05);
}

.promo-img {
	position: absolute;
	right: 40px;
	top: 50%;
	margin: -200px 0 0 0;
	height: 100%;
	max-height: 400px;
}

.promo-features {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.feature {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.feature img {
	width: 40px;
	height: 40px;
	filter: brightness(0) invert(1);
}

.feature strong {
	color: var(--text-light);
	display: block;
	margin-bottom: 5px;
}

.feature p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
}

.content-section {
	padding: 80px 0;
	background: var(--bg-section);
}

.loyalty-section {
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: 60px;
	align-items: start;
	margin-bottom: 80px;
	padding-bottom: 60px;
	border-bottom: 2px solid #e0e0e0;
}

.loyalty-left img {
	width: 100%;
	border-radius: 20px;
}

.loyalty-right {
	max-width: 800px;
}

.text-content {
	margin: 0 auto;
}

.content-label {
	color: var(--primary-purple);
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 15px;
}

h2 {
	color: var(--dark-purple);
	font-size: 36px;
	line-height: 1.3;
	margin: 0px 0px 20px 0px;
}

h3 {
	color: var(--dark-purple);
	font-size: 24px;
	margin: 0px 0px 20px 0px;
}

p {
	color: var(--text-dark);
	line-height: 1.8;
	margin-bottom: 15px;
}

.btn-play-large {
	padding: 15px 60px;
	background: var(--bright-green);
	border: none;
	border-radius: 50px;
	color: var(--dark-purple);
	font-weight: bold;
	font-size: 18px;
	cursor: pointer;
	margin: 20px 0px;
	transition: transform 0.3s;
	width: 230px;
	display: block;
	text-align: center;
	text-decoration: none;
}

.btn-play-large:hover {
	transform: scale(1.05);
}

.features-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 40px;
}

.feature-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.feature-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--bright-green);
	color: var(--dark-purple);
	font-size: 24px;
	font-weight: bold;
	border-radius: 50%;
	flex-shrink: 0;
}

.feature-item .heading {
	color: var(--dark-purple);
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

.feature-item p {
	color: var(--text-gray);
	font-size: 14px;
	margin: 0;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 30px 0;
	border-radius: 12px;
	overflow: hidden;
}

table th,
table td {
	padding: 15px 20px;
	text-align: left;
	border-bottom: 1px solid #e0e0e0;
}

table th {
	background: var(--primary-purple);
	color: var(--text-light);
	font-weight: 600;
}

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

table tr:nth-child(even) {
	background: #f8f9fa;
}

blockquote {
	background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
	padding: 30px 40px;
	border-radius: 15px;
	margin: 40px 0;
	border-left: 5px solid var(--bright-green);
}

blockquote p {
	color: var(--text-light);
	font-size: 20px;
	font-style: italic;
	margin: 0;
}

.pros-cons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin: 40px 0;
}

.pros,
.cons {
	padding: 25px;
	border-radius: 15px;
}

.pros {
	background: rgba(0, 255, 133, 0.1);
	border: 2px solid var(--bright-green);
}

.cons {
	background: rgba(255, 107, 107, 0.1);
	border: 2px solid #ff6b6b;
}

.pros h4 {
	color: var(--bright-green);
	font-size: 20px;
	margin-bottom: 15px;
}

.cons h4 {
	color: #ff6b6b;
	font-size: 20px;
	margin-bottom: 15px;
}

.pros ul,
.cons ul {
	list-style: none;
	padding: 0;
}

.pros li,
.cons li {
	padding: 8px 0;
	color: var(--text-dark);
	padding-left: 25px;
	position: relative;
}

.pros li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--bright-green);
	font-weight: bold;
}

.cons li::before {
	content: "✗";
	position: absolute;
	left: 0;
	color: #ff6b6b;
	font-weight: bold;
}

.faq-section {
	padding: 80px 0;
	background: var(--bg-light);
}

.faq-section .heading {
	color: var(--dark-purple);
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}

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

.faq-item {
	background: var(--bg-section);
	padding: 30px;
	border-radius: 15px;
	margin-bottom: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
	color: var(--dark-purple);
	font-size: 20px;
	margin: 0 0 15px 0;
}

.faq-item p {
	color: var(--text-dark);
	line-height: 1.8;
	margin: 0;
}

.footer {
	background: var(--footer-bg);
}

.social-section {
	padding: 40px 0;
	background: var(--dark-purple);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.social-icons a {
	width: 50px;
	height: 50px;
	background: var(--bright-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s;
}

.social-icons a:hover {
	transform: scale(1.1);
}

.social-icons img {
	max-width: 100%;
}

.footer-nav {
	padding: 30px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	background: var(--bg-section);
}

.footer-nav nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-nav a {
	color: var(--text-dark);
	text-decoration: none;
	font-size: 12px;
	transition: color 0.3s;
}

.footer-nav a:hover {
	color: var(--bright-green);
}

.footer-section {
	padding: 50px 0px 0px 0px;
	position: relative;
}

.collapse-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: rgba(0, 255, 133, 0.2);
	border: 2px solid var(--bright-green);
	border-radius: 50%;
	color: var(--bright-green);
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.collapse-btn:hover {
	background: var(--bright-green);
	color: var(--dark-purple);
	transform: scale(1.1);
}

.footer-section .heading {
	color: var(--text-dark);
	text-align: center;
	margin-bottom: 30px;
	font-size: 20px;
	line-height: 20px;
}

.payment-grid,
.provider-grid {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
}

.payment-grid img,
.provider-grid img {
	height: 30px;
	opacity: 0.7;
	transition: opacity 0.3s;
}

.payment-grid img:hover,
.provider-grid img:hover {
	opacity: 1;
}

.legal-section {
	padding: 40px 0;
	border-bottom: none;
}

.legal-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.legal-logos img {
	height: 50px;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.legal-logos img:hover {
	opacity: 1;
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s, transform 0.3s;
	z-index: 999;
}

.back-to-top.visible {
	opacity: 1;
}

.back-to-top:hover {
	transform: scale(1.1);
}

.copyright {
	text-align: center;
	padding: 20px 0px 0px 0px;
	font-size: 12px;
}

@media (max-width: 1200px) {
	.hero-content {
		grid-template-columns: 1fr;
	}

	.game-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.game-slider .game-card {}

	.loyalty-section {
		padding: 0px;
		display: flex;
		flex-direction: column;
		gap: 0px;
		margin: 0px 0px 20px 0px;
	}

	.sidebar {
		width: 320px;
	}

}

@media (max-width: 768px) {
	.main-nav,
	.header-input {
		display: none;
	}

	.game-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.game-slider .game-card {
		min-width: 240px;
		width: 240px;
		height: 240px;
	}

	.pros-cons {
		grid-template-columns: 1fr;
	}

	.promo-banner {
		padding: 40px 20px;
	}

	.promo-img {
		opacity: 0.3;
	}

	.hero-container {
		display: flex;
		flex-direction: column;
	}

	.legal-logos {
		flex-direction: column;
	}

	.social-icons {
		flex-wrap: wrap;
	}

	.social-icons img {}

	.social-icons a {
		width: 35px;
		height: 35px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 24px;
	}

	.content-section {
		padding: 40px 0px;
	}

	.game-category {
		margin: 0px 0px 30px 0px;
	}

	.hero-left,
	.hero-center,
	.hero-right {
		max-height: none;
	}

	.hero-left {
		order: 3;
	}

	.hero-center {
		min-height: 300px;
		margin: 0px 0px 20px 0px;
	}

	.hero-section {
		padding: 20px 0px;
	}

	.hero-image {
		max-width: 40%;
	}

	.hero-slide-content .heading {
		max-width: none;
		text-align: left;
	}

	.hero-amount {
		font-size: 28px;
	}

	.btn-hero {
		padding: 10px 30px;
	}

	.promo-card {
		padding: 15px;
	}

	.game-slider-wrapper {
		overflow: auto;
	}

	.category-header .heading {
		font-size: 20px;
	}

	.promo-heading {
		font-size: 24px;
	}

	.faq-section {
		padding: 40px 0px;
	}

	.faq-section .heading {
		margin: 0px 0px 40px 0px;
	}

	.footer-section {
		padding: 20px 0px 0px 0px;
	}

	.slider-dots {
		display: none;
	}

	.sidebar-content {
		padding: 15px 20px;
	}

	.sidebar-nav {
		margin: 0px;
	}

	.sidebar-item {
		padding: 5px 0px 5px 0px;
		line-height: 25px;
	}

	.sidebar-close {
		right: 6px;
	}

}

@media (max-width: 480px) {
	.game-slider .game-card {
		min-width: 200px;
		width: 200px;
		height: 200px;
	}

}