:root {
	--popup-text-primary: #ffffff;
	--popup-color-primary: #00cc6a;
	--popup-color-primary-hover: #ff9100;
	--popup-color-primary-active: #e66a00;
	--popup-color-primary-alt: #cc5c00;
	--popup-color-accent: #000000;
	--popup-color-gradient-end: #00ff88;
	--popup-bg: #1a1a2e;
}

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

body {
	font-family: "Poppins", "Inter", sans-serif;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	color: #ffffff;
	min-height: 100vh;
}

/* Typography Base Styles */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", "Inter", sans-serif;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
	color: #ffffff;
}

h1 {
	font-size: 2.5rem;
	font-weight: 700;
}

h2 {
	font-size: 2rem;
	font-weight: 600;
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
}

h4 {
	font-size: 1.25rem;
	font-weight: 600;
}

h5 {
	font-size: 1.125rem;
	font-weight: 500;
}

h6 {
	font-size: 1rem;
	font-weight: 500;
}

p {
	font-family: "Poppins", "Inter", sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

/* List Styles */

ul,
ol {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

ul li,
ol li {
	font-family: "Poppins", "Inter", sans-serif;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

ul li {
	list-style-type: disc;
}

ol li {
	list-style-type: decimal;
}

/* Table Styles */

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 2rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

thead {
	background: rgba(0, 255, 136, 0.1);
}

th {
	padding: 1rem;
	text-align: left;
	font-weight: 600;
	color: #00ff88;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

td {
	padding: 1rem;
	color: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.875rem;
}

tbody tr:hover {
	background: rgba(255, 255, 255, 0.02);
}

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

/* Blockquote Styles */

blockquote {
	margin: 2rem 0;
	padding: 1.5rem 2rem;
	background: rgba(0, 255, 136, 0.05);
	border-left: 4px solid #00ff88;
	border-radius: 0 12px 12px 0;
	position: relative;
}

blockquote::before {
	content: '"';
	font-size: 4rem;
	color: #00ff88;
	position: absolute;
	top: -0.5rem;
	left: 1rem;
	opacity: 0.3;
	font-family: serif;
}

blockquote p {
	font-style: italic;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 0.5rem;
}

blockquote cite {
	display: block;
	text-align: right;
	font-size: 0.875rem;
	color: #00ff88;
	font-weight: 500;
	margin-top: 1rem;
}

blockquote cite::before {
	content: "— ";
}

.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: #224a38;
	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);
}



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

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

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

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

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

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

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

/* Pros & Cons Styles */

.pros-cons-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin: 2rem 0;
}

.pros-section,
.cons-section {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.pros-section {
	border-left: 4px solid #00ff88;
}

.cons-section {
	border-left: 4px solid #ff4444;
}

.pros-title,
.cons-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.pros-title {
	color: #00ff88;
}

.cons-title {
	color: #ff4444;
}

.pros-title::before {
	content: "✓";
	font-size: 1.5rem;
	font-weight: bold;
}

.cons-title::before {
	content: "✗";
	font-size: 1.5rem;
	font-weight: bold;
}

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

.pros-list li,
.cons-list li {
	padding: 0.5rem 0;
	padding-left: 2rem;
	position: relative;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}

.pros-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #00ff88;
	font-weight: bold;
	font-size: 1.1rem;
}

.cons-list li::before {
	content: "✗";
	position: absolute;
	left: 0;
	color: #ff4444;
	font-weight: bold;
	font-size: 1.1rem;
}

/* Code Styles */

code {
	background: rgba(255, 255, 255, 0.1);
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-family: "Courier New", monospace;
	font-size: 0.875rem;
	color: #00ff88;
}

pre {
	background: rgba(255, 255, 255, 0.05);
	padding: 1.5rem;
	border-radius: 12px;
	overflow-x: auto;
	margin: 1.5rem 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

pre code {
	background: none;
	padding: 0;
	color: rgba(255, 255, 255, 0.9);
}

/* Link Styles */

a {
	color: #00ff88;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #00cc6a;
	text-decoration: underline;
}

/* Strong and Emphasis */

strong,
b {
	font-weight: 600;
	color: #ffffff;
}

em,
i {
	font-style: italic;
	color: rgba(255, 255, 255, 0.95);
}

/* Small Text */

small {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
}

/* Horizontal Rule */

hr {
	border: none;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	margin: 2rem 0;
}

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

.header {
	background: rgba(26, 26, 46, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
}

.desktop-menu-btn {
	display: flex;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	margin-right: 20px;
}

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.desktop-menu-btn span,
.mobile-menu-btn span {
	width: 25px;
	height: 3px;
	background: #00ff88;
	margin: 3px 0;
	transition: 0.3s;
}

.logo {
	font-size: 28px;
	font-weight: 700;
	color: #00ff88;
	text-decoration: none;
}

.logo-text {
	background: linear-gradient(45deg, #00ff88, #00cc6a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	padding: 10px 15px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.nav-link:hover {
	background: rgba(0, 255, 136, 0.1);
	color: #00ff88;
}

.nav-icon {
	width: 20px;
	height: 20px;
}

.auth-buttons {
	display: flex;
	gap: 10px;
}

.btn-login {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-login:hover {
	border-color: #00ff88;
	color: #00ff88;
}

.btn-signup {
	background: linear-gradient(45deg, #00ff88, #00cc6a);
	border: none;
	color: #000000;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-signup:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	display: none;
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 350px;
	height: 100%;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	padding: 20px;
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
	transform: translateX(0);
}

.close-menu {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 30px;
	cursor: pointer;
}

.mobile-bonus-banner {
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	border-radius: 12px;
	padding: 20px;
	margin: 40px 0 20px 0;
	position: relative;
	overflow: hidden;
}

.mobile-bonus-banner h3 {
	font-size: 14px;
	margin-bottom: 5px;
}

.bonus-amount {
	font-size: 18px;
	font-weight: 700;
	color: #000000;
}

.mobile-auth-buttons {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
}

.mobile-auth-buttons .btn-login,
.mobile-auth-buttons .btn-signup {
	flex: 1;
	text-align: center;
}

.mobile-nav .nav-item {
	display: flex;
	align-items: center;
	gap: 15px;
	color: #ffffff;
	text-decoration: none;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-weight: 500;
}

.mobile-nav .nav-item .nav-icon {
	width: 24px;
	height: 24px;
}

.mobile-nav .arrow {
	margin-left: auto;
	font-size: 12px;
}

.sub-menu {
	padding-left: 40px;
	display: none;
}

.sub-menu a {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	padding: 8px 0;
	font-size: 14px;
}

.sidebar-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.sidebar-menu-overlay.active {
	display: block;
	opacity: 1;
}

.sidebar-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 350px;
	height: 100%;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	padding: 20px;
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	z-index: 1001;
}

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

.sidebar-close-btn {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 30px;
	cursor: pointer;
	z-index: 1002;
}

.sidebar-bonus-banner {
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	border-radius: 12px;
	padding: 20px;
	margin: 40px 0 20px 0;
	position: relative;
	overflow: hidden;
}

.sidebar-bonus-banner h3 {
	font-size: 14px;
	margin-bottom: 5px;
	color: #000000;
}

.sidebar-bonus-amount {
	font-size: 18px;
	font-weight: 700;
	color: #000000;
}

.sidebar-auth-buttons {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
}

.sidebar-auth-buttons .btn-login,
.sidebar-auth-buttons .btn-signup {
	flex: 1;
	text-align: center;
}

.sidebar-nav .nav-item {
	display: flex;
	align-items: center;
	gap: 15px;
	color: #ffffff;
	text-decoration: none;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-weight: 500;
	transition: color 0.3s ease;
}

.sidebar-nav .nav-item:hover {
	color: #00ff88;
}

.sidebar-nav .nav-item .nav-icon {
	width: 24px;
	height: 24px;
}

.sidebar-nav .arrow {
	margin-left: auto;
	font-size: 12px;
}

.sidebar-sub-menu {
	padding-left: 40px;
	display: none;
}

.sidebar-sub-menu a {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	padding: 8px 0;
	font-size: 14px;
}

.sidebar-sub-menu a:hover {
	color: #00ff88;
}

.main-content {
	padding: 30px 0;
}

.hero-banners {
	margin-bottom: 40px;
	position: relative;
}

.banner-slider-container {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.banner-slider-track {
	display: flex;
	transition: transform 0.5s ease;
}

.banner-slide-item {
	flex: 0 0 33.333%;
	padding: 0px 10px 0px 0px;
}

.banner-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 12px;
}

.banner-slider {
	display: none;
}

.banner-slide {
	display: none;
}

.banner-desktop,
.banner-mobile {
	display: none;
}

.game-categories {
	margin-bottom: 40px;
}

.category-filters {
	display: flex;
	gap: 5px;
	overflow-x: auto;
	padding: 10px 0;
}

.category-btn {
	display: flex;
	align-items: center;
	gap: 5px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	padding: 5px 10px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 500;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
	background: rgba(0, 255, 136, 0.2);
	border-color: #00ff88;
	color: #00ff88;
}

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

.games-section {
	margin-bottom: 50px;
	animation: fadeInUp 0.6s ease-out;
}

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

.section-header h2 {
	font-size: 24px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

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

.view-all-btn {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 20px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
}

.view-all-btn:hover {
	background: rgba(0, 255, 136, 0.2);
	border-color: #00ff88;
	color: #00ff88;
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.game-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
}

.game-card > img,
.game-image {
	width: 100%;
	height: 200px;
	border-radius: 12px 12px 0 0;
}

.game-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

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

.play-game-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 3;
}

.play-game-overlay .play-game-button {
	width: 50px;
	height: 50px;
	background: #00ff88;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.play-game-overlay .play-game-button:hover {
	background: #00cc6a;
}

.play-game-overlay .play-game-button:after,
.play-game-overlay .play-game-button:before {
	content: "";
	height: 50px;
	width: 50px;
	position: absolute;
	border: 1px solid #1ebe04;
	border-radius: 50%;
	box-sizing: border-box;
	opacity: 0;
}

.play-game-overlay:hover .play-game-button:after,
.play-game-overlay:hover .play-game-button:before {
	animation: playBtn-Animation 0.8s infinite;
}

.play-game-overlay .play-game-text {
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

.play-game-button .play-game-icon {
	width: 0;
	height: 0;
	border-left: 20px solid #000000;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	margin-left: 4px;
}

.game-info {
	padding: 15px;
}

.game-title {
	font-weight: 600;
	margin-bottom: 5px;
	font-size: 14px;
}

.game-provider {
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
}

.bonus-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.bonus-card {
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	border-radius: 16px;
	padding: 30px;
	color: #000000;
	position: relative;
	overflow: hidden;
}

.bonus-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.bonus-card p {
	font-size: 16px;
	margin-bottom: 20px;
	opacity: 0.8;
}

.claim-btn {
	background: #000000;
	color: #ffffff;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.claim-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.welcome-package-container {
	overflow: hidden;
}

.welcome-package-grid {
	display: flex;
	gap: 20px;
	transition: transform 0.3s ease;
}

.welcome-card {
	min-width: 275px;
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 106, 0.1));
	border: 1px solid rgba(0, 255, 136, 0.2);
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.welcome-card-image {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.welcome-card-content {
	padding: 20px;
	position: relative;
}

.welcome-bonus-label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #00ff88;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.welcome-bonus-label::before {
	content: "🎁";
	font-size: 16px;
}

.welcome-deposit-title {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 15px;
}

.welcome-bonus-amount {
	background: linear-gradient(45deg, #ff6b35, #f7931e);
	color: #000000;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
}

.welcome-get-bonus {
	width: 100%;
	background: #00ff88;
	color: #000000;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	display: block;
	text-align: center;
}

.welcome-get-bonus:hover {
	background: #00cc6a;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
	color: #000000;
	text-decoration: none;
}

.section-nav {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-arrow {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.nav-arrow:hover {
	background: rgba(0, 255, 136, 0.2);
	border-color: #00ff88;
	color: #00ff88;
}

.winners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.winner-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.winner-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.winner-name {
	font-weight: 600;
}

.winner-amount {
	color: #00ff88;
	font-weight: 700;
}

.winner-game {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.footer {
	background: rgba(26, 26, 46, 0.95);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 50px 0 30px;
	margin-top: 80px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #ffffff;
}

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

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #00ff88;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
}

.social-link {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 18px;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: rgba(0, 255, 136, 0.2);
	transform: translateY(-2px);
}

.badge-list {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 2;
	display: flex;
	gap: 5px;
}

.badge-list .badge {
	border-radius: 4px;
	font-size: 10px;
	font-weight: 700;
	z-index: 2;
	width: 20px;
	height: 20px;
}

.badge-list .badge.new {
	background: url("images/badges/new.svg") no-repeat center;
}

.badge-list .badge.hot {
	background: url("images/badges/hot.svg") no-repeat center;
}

.badge-list .badge.bonus {
	background: url("images/badges/bonus.svg") no-repeat center;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	line-height: 1.5;
	max-width: 800px;
}

.footer-badges {
	display: flex;
	gap: 15px;
}

.age-badge,
.gcb-badge {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 12px;
}

.age-badge {
	background: #ff4444;
	color: #ffffff;
}

.gcb-badge {
	background: #00ff88;
	color: #000000;
}

.faq-title {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 40px;
	letter-spacing: 2px;
}

.faq-container {
	max-width: 1200px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-question {
	padding: 24px 32px;
	background: #1e385d;
	border: none;
	width: 100%;
	text-align: left;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
	border-radius: 12px;
}

.faq-question:hover {
	background: #333333;
}

.faq-question.active {
	background: #333333;
	border-radius: 12px 12px 0px 0px;
}

.faq-arrow {
	font-size: 20px;
	transition: transform 0.3s ease;
}

.faq-question.active .faq-arrow {
	transform: rotate(180deg);
}

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

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

.faq-answer-content {
	padding: 24px 32px;
	color: #cccccc;
	line-height: 1.6;
	font-size: 16px;
	border: 1px solid #1a1b30;
	border-radius: 0px 0px 15px 15px;
}

.show-more-container {
	position: relative;
}

.show-more-content {
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.show-more-content.collapsed {
	max-height: 310px;
	overflow: hidden;
	position: relative;
}

.show-more-content.expanded {
	max-height: 1000px;
	overflow: visible;
}

.show-more-btn {
	display: block;
	border: 0px;
	margin: 20px auto 0;
	background: rgba(0, 255, 136, 0.1);
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
	padding: 8px 22px;
	color: #d6d6dd;
	background-color: #303039;
	border-radius: 5px;
	font-family: "Poppins", "Inter", sans-serif;
	position: relative;
}

.show-more-btn:hover {
	color: #fff;
	background-color: #4e4e5a;
}

.show-more-arrow {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.show-more-btn.expanded .show-more-arrow {
	transform: rotate(180deg);
}

.top-winners-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 20px;
}

.winners-column {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 5px 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.winners-column-title {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	padding: 0px 0px 5px 0px;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.winners-header {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 10px;
	padding: 0px 0px 5px 0px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
}

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

.winner-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 10px;
	align-items: center;
	padding: 4px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.winner-row:last-child {
	border-bottom: none;
}

.winner-game-info {
	display: flex;
	align-items: center;
	gap: 8px;
	overflow: hidden;
}

.winner-game-icon {
	width: 56px;
	height: 56px;
	border-radius: 6px;
	object-fit: cover;
}

.winner-game-name {
	font-size: 13px;
	color: #fff;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.winner-player {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
	text-align: center;
}

.winner-amount {
	font-size: 13px;
	color: #00ff88;
	font-weight: 600;
	text-align: right;
}

.winner-multiplier {
	font-size: 13px;
	color: #ff6b35;
	font-weight: 600;
	text-align: right;
}

.header-multiplier {
	text-align: right;
}

.header-amount {
	text-align: right;
}

.header-player {
	text-align: center;
}

.fade-in {
	animation: fadeInUp 0.6s ease-out forwards;
}

.banner-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

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

.dot.active {
	background: #00ff88;
	transform: scale(1.2);
}

.dot:hover {
	background: rgba(0, 255, 136, 0.7);
}

.dot.no-desctop {
	display: none;
}

@media (max-width: 768px) {
	.top-winners-container {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.winners-column {
		padding: 5px;
	}

	.winners-column-title {
		font-size: 16px;
	}

	.winner-game-name {
		font-size: 12px;
	}

	.winner-player,
	.winner-amount,
	.winner-multiplier {
		font-size: 12px;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.desktop-menu-btn {
		display: none;
	}

	.main-nav {
		display: none;
	}

	.banner-slide-item {
		flex: 0 0 100%;
		padding: 0px;
	}

	.category-filters {
		gap: 10px;
	}

	.category-btn {
		padding: 10px 15px;
		font-size: 13px;
	}

	.games-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.section-header h2 {
		font-size: 20px;
	}

	.welcome-card {
		min-width: 275px;
	}

	.show-more-content.expanded {
		max-height: none;
	}

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

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

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

	.bonus-card {
		padding: 20px;
	}

	.hero-banners {
		margin-bottom: 30px;
	}

	.main-content {
		padding: 20px 0;
	}

}

.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

}

@keyframes playBtn-Animation {
	0% {
		width: 50px;
		height: 50px;
		opacity: 1;
	}

	40% {
		opacity: 1;
	}

	to {
		width: 80px;
		height: 80px;
		opacity: 0;
	}

}