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

:root {
	--primary-color: #32d583;
	--primary-dark: #28b36d;
	--secondary-color: #0d4d4d;
	--dark-bg: #0a2f2f;
	--card-bg: #0d3d3d;
	--sidebar-bg: #0a3838;
	--text-primary: #ffffff;
	--text-secondary: #9fb4b4;
	--border-color: #1a5555;
	--hover-bg: rgba(50, 213, 131, 0.1);
}

body {
	font-family: -apple-system, BlinkMacMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	background-color: var(--dark-bg);
	color: var(--text-primary);
	line-height: 1.6;
}

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

.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: 280px;
	height: 100vh;
	background-color: var(--sidebar-bg);
	border-right: 1px solid var(--border-color);
	overflow-y: auto;
	z-index: 1000;
	transition: transform 0.3s ease;
}

.sidebar-header {
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sidebar-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
}

.sidebar-close {
	display: none;
	font-size: 28px;
	cursor: pointer;
	color: var(--text-secondary);
}

.sidebar-content {
	padding: 20px;
}

.sidebar-section {
	margin-bottom: 30px;
}

.sidebar-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-secondary);
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.sidebar-link {
	display: block;
	padding: 10px 12px;
	color: var(--text-secondary);
	text-decoration: none;
	border-radius: 6px;
	margin-bottom: 4px;
	font-size: 14px;
	transition: all 0.2s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
	background-color: rgba(0, 214, 143, 0.1);
	color: var(--primary-color);
}

.provider-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-bottom: 20px;
}

.provider-tile {
	display: block;
	text-decoration: none;
	background: linear-gradient(135deg, #1a5555 0%, #0d3d3d 100%);
	border: 2px solid var(--border-color);
	border-radius: 8px;
	padding: 15px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.provider-tile:hover {
	border-color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(50, 213, 131, 0.3);
}

.provider-tile img {
	width: 100%;
	height: 60px;
	object-fit: contain;
	margin-bottom: 8px;
	filter: brightness(0.9);
	transition: filter 0.3s ease;
}

.provider-tile:hover img {
	filter: brightness(1.1);
}

.provider-name {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.provider-tile:hover .provider-name {
	color: var(--primary-color);
}

.category-tabs {
	display: flex;
	gap: 15px;
	margin-bottom: 40px;
	justify-content: center;
	flex-wrap: wrap;
}

.tab-button {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	background-color: var(--card-bg);
	border: 2px solid var(--border-color);
	border-radius: 8px;
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
}

.tab-button:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	transform: translateY(-2px);
}

.tab-button.active {
	background: linear-gradient(
		135deg,
		var(--primary-color) 0%,
		var(--primary-dark) 100%
	);
	border-color: var(--primary-color);
	color: #000;
	box-shadow: 0 4px 16px rgba(50, 213, 131, 0.4);
}

.tab-button svg {
	width: 20px;
	height: 20px;
}

.games-section-wrapper {
	padding: 80px 0;
}

.games-section {
	display: none;
}

.games-section.active {
	display: block;
}

.main-content {
	margin-left: 280px;
	min-height: 100vh;
}

.header {
	background-color: var(--card-bg);
	border-bottom: 1px solid var(--border-color);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 999;
}

.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	text-decoration: none;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
}
.logo img {
	height: 40px;
	object-fit: contain;
}
.nav {
	display: flex;
	gap: 30px;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	transition: color 0.2s ease;
}

.nav-link:hover {
	color: var(--primary-color);
}

.header-actions {
	display: flex;
	gap: 12px;
}

.btn {
	padding: 10px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
	display: inline-block;
	text-align: center;
}

.btn-primary {
	background-color: var(--primary-color);
	color: #000;
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	transform: translateY(-1px);
}

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

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

.btn-large {
	padding: 16px 48px;
	font-size: 16px;
}

.btn-cta {
	background-color: var(--primary-color);
	color: #000;
	font-size: 18px;
	padding: 18px 60px;
}

.mobile-menu-toggle,
.mobile-filter-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

.mobile-menu-toggle span {
	width: 24px;
	height: 3px;
	background-color: var(--text-primary);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-filter-toggle {
	color: var(--text-primary);
}

.mobile-nav {
	position: fixed;
	top: 70px;
	left: 0;
	right: 0;
	background-color: var(--card-bg);
	border-bottom: 1px solid var(--border-color);
	z-index: 998;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.3s ease;
}

.mobile-nav.active {
	max-height: 500px;
	opacity: 1;
}

.mobile-nav-link {
	padding: 15px 20px;
	color: var(--text-secondary);
	text-decoration: none;
	border-bottom: 1px solid var(--border-color);
	transition: all 0.2s ease;
}

.mobile-nav-link:hover {
	background-color: rgba(0, 214, 143, 0.1);
	color: var(--primary-color);
}

.mobile-nav-link.btn-mobile {
	background-color: var(--primary-color);
	color: #000;
	font-weight: 600;
	margin: 10px 20px;
	border-radius: 6px;
	text-align: center;
}

.hero {
	position: relative;
	height: 450px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--secondary-color) 0%, #1a5555 100%);
}

.slider {
	width: 100%;
	height: 100%;
	position: relative;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
	display: block;
	text-decoration: none;
}

.slide.active {
	opacity: 1;
}

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

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

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

.dot.active {
	background-color: var(--primary-color);
	transform: scale(1.2);
}
h2 {
	margin: 3rem 0 1.5rem;
}
h3 {
	margin: 2rem 0 1rem;
}
.content-section {
	margin: 3rem 0;
}

.features-card-title {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 2rem;
}
.games-section,
.features-section,
.text-section {
	padding: 80px 0;
}

.section-heading {
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
	color: var(--text-primary);
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.game-card {
	background-color: var(--card-bg);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

.game-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: 0 8px 24px rgba(0, 214, 143, 0.2);
}

.game-image {
	width: 100%;
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.game-placeholder {
	opacity: 0.6;
}

.game-name {
	padding: 15px;
	font-weight: 600;
	color: var(--text-primary);
	text-align: center;
	font-size: 14px;
}

.section-cta {
	text-align: center;
	margin-top: 40px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.feature-card {
	background-color: var(--card-bg);
	padding: 40px 30px;
	border-radius: 12px;
	text-align: center;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.feature-card:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
}

.feature-icon {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}

.feature-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--text-primary);
}

.feature-description {
	color: var(--text-secondary);
	line-height: 1.6;
}

.text-section {
	background-color: var(--card-bg);
}

.text-wrapper {
	margin: 80px auto;
}
.text-wrapper .btn-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin: 1rem 0;
}
.text-wrapper .btn {
	color: var(--dark-bg);
	text-decoration: none;
}

.text-wrapper .text-heading {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
	color: var(--text-primary);
}

.text-wrapper .text-subheading {
	font-size: 24px;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 15px;
	color: var(--primary-color);
}

.text-wrapper p {
	margin-bottom: 20px;
	color: var(--text-secondary);
	line-height: 1.8;
	font-size: 16px;
}

.text-wrapper ul,
.text-wrapper ol {
	margin-left: 30px;
	margin-bottom: 20px;
	color: var(--text-secondary);
}

.text-wrapper li {
	margin-bottom: 10px;
}

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

.text-wrapper table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.text-wrapper table th,
.text-wrapper table td {
	padding: 12px;
	border: 1px solid var(--border-color);
	text-align: left;
}

.text-wrapper table th {
	background-color: rgba(0, 214, 143, 0.1);
	font-weight: 600;
}

.table-wrapper {
	overflow-x: auto;
	margin: 30px 0;
	border-radius: 8px;
	border: 1px solid var(--border-color);
}

.table-wrapper table {
	width: 100%;
	min-width: 600px;
	border-collapse: collapse;
	margin: 0;
}

.table-wrapper table thead tr {
	background-color: var(--card-bg);
}

.table-wrapper table th {
	padding: 16px;
	text-align: left;
	font-weight: 700;
	color: var(--primary-color);
	border-bottom: 2px solid var(--border-color);
	white-space: nowrap;
}

.table-wrapper table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--border-color);
	color: var(--text-secondary);
}

.table-wrapper table tbody tr {
	transition: background-color 0.2s ease;
}

.table-wrapper table tbody tr:hover {
	background-color: rgba(50, 213, 131, 0.05);
}

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

.cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--secondary-color) 0%, #00d68f 100%);
	text-align: center;
}

.cta-content {
	max-width: 700px;
	margin: 0 auto;
}

.cta-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-primary);
}

.cta-subtitle {
	font-size: 20px;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
	margin-bottom: 20px;
}

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

.footer {
	background-color: var(--card-bg);
	padding: 60px 0 30px;
	border-top: 1px solid var(--border-color);
}

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

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

.footer-column h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--primary-color);
}

.footer-column a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease;
}

.footer-column a:hover {
	color: var(--primary-color);
}

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

.payment-methods {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.payment-methods img {
	height: 30px;
	width: auto;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.payment-methods img:hover {
	opacity: 1;
}

.footer-text {
	color: var(--text-secondary);
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 20px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.footer-disclaimer {
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
}

.footer-copyright {
	color: var(--text-secondary);
	font-size: 12px;
}

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

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

.footer-heading {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--primary-color);
}

.footer-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease;
}

.footer-link:hover {
	color: var(--primary-color);
}

.payment-icons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.payment-icon {
	padding: 8px 12px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	color: var(--text-secondary);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 14px;
}

.footer-bottom p {
	margin-bottom: 10px;
}

@media (max-width: 1024px) {
	.sidebar {
		display: none;
	}

	.main-content {
		margin-left: 0;
	}

	.mobile-filter-toggle {
		display: none;
	}

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

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

	.tab-button {
		padding: 12px 24px;
		font-size: 13px;
	}
}

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

	.header-actions {
		display: none;
	}

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

	.mobile-nav {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background-color: var(--card-bg);
		border-bottom: 1px solid var(--border-color);
		z-index: 998;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: max-height 0.4s ease, opacity 0.3s ease;
		display: flex;
		flex-direction: column;
	}

	.mobile-nav.active {
		max-height: 600px;
		opacity: 1;
	}

	.mobile-nav-link {
		display: block;
		padding: 16px 20px;
		color: var(--text-secondary);
		text-decoration: none;
		border-bottom: 1px solid var(--border-color);
		transition: all 0.2s ease;
		font-size: 14px;
		font-weight: 500;
	}

	.mobile-nav-link:hover {
		background-color: rgba(50, 213, 131, 0.1);
		color: var(--primary-color);
	}

	.mobile-nav-link.btn-mobile {
		background-color: var(--primary-color);
		color: #000;
		font-weight: 600;
		margin: 10px 20px;
		border-radius: 6px;
		text-align: center;
		border: none;
	}

	.hero {
		height: 400px;
	}

	.section-heading {
		font-size: 28px;
		margin-bottom: 30px;
	}

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

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

	.cta-title {
		font-size: 32px;
	}

	.cta-subtitle {
		font-size: 18px;
	}

	.btn-cta {
		padding: 16px 40px;
		font-size: 16px;
	}

	.text-wrapper .text-heading {
		font-size: 26px;
	}

	.text-wrapper .text-subheading {
		font-size: 20px;
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.tab-button {
		padding: 12px 20px;
		font-size: 12px;
		gap: 8px;
	}

	.tab-button svg {
		width: 16px;
		height: 16px;
	}

	.table-wrapper {
		-webkit-overflow-scrolling: touch;
	}

	.table-wrapper table th,
	.table-wrapper table td {
		padding: 12px;
		font-size: 14px;
	}

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

	.payment-methods {
		gap: 10px;
	}

	.payment-methods img {
		height: 24px;
	}

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

@media (max-width: 480px) {
	.hero {
		height: 300px;
	}

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

	.games-section,
	.features-section,
	.text-section {
		padding: 50px 0;
	}

	.cta-section {
		padding: 60px 0;
	}

	.cta-title {
		font-size: 26px;
	}

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

	.category-tabs {
		flex-direction: column;
		align-items: stretch;
	}

	.tab-button {
		width: 100%;
		justify-content: center;
	}

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

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

	.game-image {
		height: 140px;
	}

	.game-name {
		padding: 12px 10px;
		font-size: 12px;
	}
}
@media (max-width: 480px) {
	.btn-wrapper {
		flex-direction: column;
	}
}
.accordion-item {
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}

.accordion-header {
	padding: 16px 20px;
	cursor: pointer;
	font-weight: 600;
	color: inherit;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	background: var(--card-bg);
}
.accordion-header * {
	padding: 0;
	margin: 0;
}
.accordion-header:hover {
	background: var(--secondary-color);
}

.accordion-header.active {
}

.accordion-icon {
	font-size: 18px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 12px;
}

.accordion-header.active .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: transparent;
}

.accordion-content.active {
	max-height: 2000px;
}

.accordion-body {
	padding: 16px 20px;
	color: inherit;
	line-height: 1.6;
	border-top: 1px solid #d0d0d0;
}

.alert {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	background-color: var(--primary-color);
	color: var(--secondary-color);
	padding: 3rem;
	width: 750px;
	max-width: 90%;
	z-index: 11111;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	text-wrap: balance;
	border-radius: 20px;
}
.alert-back {
	position: fixed;
	z-index: 11110;
	content: '';
	background-color: var(--dark-bg);
	opacity: 0.7;
	inset: 0;
}
:is(.alert-back, .alert).hidden {
	display: none;
}
.text-wrapper img {
	width: 100%;
	object-fit: cover;
	margin: 1rem 0;
	border-radius: 10px;
}
.text-wrapper .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%),1fr));
    gap: 2rem;
}