* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #c4ff0d;
	--secondary-color: #3a3f47;
	--dark-bg: #2d3139;
	--darker-bg: #1e2127;
	--card-bg: #3a3f47;
	--text-primary: #ffffff;
	--text-secondary: #8a8f98;
	--gradient-start: #3d2645;
	--gradient-end: #5a3a5e;
	--jackpot-red: #ff2d55;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	background-color: var(--dark-bg);
	color: var(--text-primary);
	line-height: 1.6;
}

.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: 230px;
	height: 100vh;
	background-color: var(--darker-bg);
	padding: 20px;
	display: flex;
	flex-direction: column;
	z-index: 1000;
	transition: transform 0.3s ease;
}

.sidebar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
}
.logo svg {
	height: 30px;
	object-fit: contain;
	width: auto;
}

.logo-icon {
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--darker-bg);
	font-weight: bold;
	font-size: 20px;
}

.logo-text {
	font-size: 24px;
	font-weight: bold;
	color: var(--text-primary);
}

.sidebar-close {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 32px;
	cursor: pointer;
	padding: 0;
	width: 32px;
	height: 32px;
	line-height: 1;
}

.sidebar-nav {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	color: var(--text-secondary);
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.nav-item:hover {
	background-color: var(--card-bg);
	color: var(--text-primary);
}

.nav-item.active {
	background-color: var(--card-bg);
	color: var(--primary-color);
}

.nav-icon {
	font-size: 20px;
}

.nav-text {
	font-size: 14px;
}

.sidebar-footer {
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid var(--card-bg);
}

.social-links {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.social-link {
	width: 36px;
	height: 36px;
	background-color: var(--card-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 18px;
	transition: background-color 0.3s ease;
}

.social-link:hover {
	background-color: var(--secondary-color);
}

.sidebar-footer-text {
	font-size: 12px;
	color: var(--text-secondary);
	margin-bottom: 15px;
}

.app-downloads {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.app-download {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	background-color: var(--card-bg);
	border-radius: 6px;
	text-decoration: none;
	color: var(--text-primary);
	font-size: 12px;
	transition: background-color 0.3s ease;
}

.app-download:hover {
	background-color: var(--secondary-color);
}

.app-icon {
	font-size: 16px;
}

.main-content {
	margin-left: 230px;
	min-height: 100vh;
	padding-bottom: 80px;
}

.mobile-header {
	display: none;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background-color: var(--darker-bg);
	position: sticky;
	top: 0;
	z-index: 999;
}

.hamburger {
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hamburger span {
	width: 24px;
	height: 3px;
	background-color: var(--primary-color);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.header-actions {
	display: flex;
	gap: 10px;
}
@media (max-width: 480px) {
	.header-actions {
		display: none;
	}
}
.btn-primary {
	background-color: var(--primary-color);
	color: var(--darker-bg);
	padding: 8px 16px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: opacity 0.3s ease;
}

.btn-primary:hover {
	opacity: 0.9;
}

.btn-secondary {
	background-color: transparent;
	color: var(--text-primary);
	padding: 8px 16px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	border: 1px solid var(--card-bg);
	transition: background-color 0.3s ease;
}

.btn-secondary:hover {
	background-color: var(--card-bg);
}

.hero {
	background: linear-gradient(
		135deg,
		var(--gradient-start) 0%,
		var(--gradient-end) 100%
	);
	padding: 0;
	position: relative;
	overflow: hidden;
}

.hero-carousel {
	position: relative;
	width: 100%;
	height: 600px;
}

.hero-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(61, 38, 69, 0.55) 0%,
		rgba(90, 58, 94, 0.55) 100%
	);
}

.hero-slide.active {
	opacity: 1;
	z-index: 1;
}

.hero::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 150px;
	background: var(--primary-color);
	clip-path: ellipse(100% 100% at 50% 100%);
	opacity: 0.3;
	z-index: 2;
}

.hero-content {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 60px 40px;
	width: 100%;
}

.hero-text {
	flex: 1;
	text-align: center;
}

.hero-title {
	font-size: 64px;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 10px;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 24px;
	color: var(--text-primary);
	margin-bottom: 30px;
}

.btn-cta {
	display: inline-block;
	background-color: var(--primary-color);
	color: var(--darker-bg);
	padding: 16px 48px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	transition: all 0.3s ease;
}

.btn-cta:hover {
	opacity: 0.9;
}

.hero-visual {
	display: none;
}

.jackpot {
	display: flex;
	align-items: center;
	gap: 15px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 30px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 12px;
	position: relative;
	z-index: 3;
	transform: translateY(-50px);
}

.jackpot-icon {
	font-size: 48px;
}

.jackpot-label {
	font-size: 16px;
	color: var(--text-secondary);
}

.jackpot-amount {
	font-size: 32px;
	font-weight: bold;
	color: var(--jackpot-red);
}

.payment-methods {
	display: flex;
	justify-content: center;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px 40px;
	position: relative;
	z-index: 3;
	transform: translateY(-30px);
}

.payment-methods img {
	height: 40px;
	width: auto;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.payment-methods img:hover {
	opacity: 1;
}

.carousel-section,
.providers-section,
.text-wrapper {
	padding: 60px 20px;
}

.section-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	justify-content: space-between;
}
@media (max-width: 767px) {
	.section-header .btn-more {
		display: none;
	}
}

.section-title {
	font-size: 32px;
	font-weight: bold;
	color: var(--text-primary);
}

.btn-more {
	background-color: var(--primary-color);
	color: var(--darker-bg);
	padding: 10px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.3s ease;
}

.btn-more:hover {
	opacity: 0.9;
}

.carousel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
	gap: 20px;
	max-width: 1400px;
	margin: 0 auto;
}

.game-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.game-card:hover {
	transform: translateY(-5px);
}

.game-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 12px;
}

.game-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
	opacity: 1;
}

.game-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.game-play {
	display: inline-block;
	background-color: var(--primary-color);
	color: var(--darker-bg);
	padding: 8px 20px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

.providers-carousel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
	gap: 20px;
	max-width: 1400px;
	margin: 0 auto;
}
a {
	text-decoration: none;
}
.provider-card {
	background-color: var(--card-bg);
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	transition: transform 0.3s ease;
	cursor: pointer;
	width: 100%;
}

.provider-card:hover {
	transform: translateY(-5px);
}

.provider-card img {
	width: 100%;
	height: 50px;
	object-fit: contain;
	margin-bottom: 15px;
}

.provider-games {
	font-size: 14px;
	color: var(--text-secondary);
}

.footer {
	background-color: var(--darker-bg);
	padding: 60px 20px 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
	gap: 40px;
	max-width: 1400px;
	margin: 0 auto 40px;
}

.footer-column {
	color: var(--text-secondary);
}

.footer-heading {
	font-size: 18px;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 15px;
}

.footer-column p {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.footer-link {
	color: var(--primary-color);
	text-decoration: none;
	font-size: 14px;
	transition: opacity 0.3s ease;
}

.footer-link:hover {
	opacity: 0.8;
}

.footer-disclaimer {
	max-width: 1400px;
	margin: 0 auto;
	padding: 30px 0;
	border-top: 1px solid var(--card-bg);
	border-bottom: 1px solid var(--card-bg);
}

.footer-disclaimer p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
	text-align: center;
}

.footer-bottom {
	max-width: 1400px;
	margin: 20px auto 0;
	text-align: center;
}

.footer-bottom p {
	font-size: 14px;
	color: var(--text-secondary);
}

.mobile-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--darker-bg);
	padding: 10px 0;
	z-index: 1000;
	border-top: 1px solid var(--card-bg);
}

.mobile-nav-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	text-decoration: none;
	color: var(--text-secondary);
	transition: color 0.3s ease;
}

.mobile-nav-item.active {
	color: var(--primary-color);
}

.mobile-nav-icon {
	font-size: 24px;
}

.mobile-nav-text {
	font-size: 12px;
}

@media (max-width: 1024px) {
	.sidebar {
		transform: translateX(-100%);
	}

	.sidebar.active {
		transform: translateX(0);
	}

	.sidebar-close {
		display: block;
	}

	.main-content {
		margin-left: 0;
	}

	.mobile-header {
		display: flex;
	}

	.mobile-nav {
		display: flex;
	}

	.hero-carousel {
		height: 500px;
	}

	.hero-content {
		padding: 40px 20px;
	}

	.hero-title {
		font-size: 48px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.jackpot {
		flex-direction: column;
		text-align: center;
		margin: 0 20px;
		transform: translateY(-40px);
	}

	.payment-methods {
		flex-wrap: wrap;
		padding: 0 20px 30px;
		transform: translateY(-20px);
	}

	.game-card {
		flex: 0 0 calc(33.33% - 14px);
	}
}

@media (max-width: 640px) {
	.hero-carousel {
		height: 400px;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.jackpot-amount {
		font-size: 24px;
	}

	.section-title {
		font-size: 24px;
	}

	.game-card {
		flex: 0 0 calc(50% - 10px);
	}

	.game-card img {
		height: 200px;
	}

	.provider-card {
		padding: 20px;
	}
}
.text-wrapper {
	margin: 0 auto;
	word-wrap: break-word;
	overflow-wrap: anywhere;
	max-width: calc(1400px + 40px);
}

.text-wrapper p {
	margin: 0 0 1.2em;
	line-height: 1.6;
}

.text-wrapper strong,
.text-wrapper b {
	font-weight: 600;
}

.text-wrapper em,
.text-wrapper i {
	font-style: italic;
}

.text-wrapper mark {
	background: #fffb91;
	padding: 0 2px;
}

.text-wrapper del {
	text-decoration: line-through;
}

.text-wrapper sup {
	font-size: 0.8em;
	vertical-align: super;
}

.text-wrapper sub {
	font-size: 0.8em;
	vertical-align: sub;
}

.text-wrapper h2,
.text-wrapper h3,
.text-wrapper h4,
.text-wrapper h5,
.text-wrapper h6 {
	margin: 2em 0 1em;
	line-height: 1.3;
}

.text-wrapper ul,
.text-wrapper ol {
	margin: 0 0 1.2em;
	padding-left: 1.5em;
}

.text-wrapper li {
	margin-bottom: 0.4em;
	list-style-position: outside;
}

.text-wrapper dl {
	margin: 1.5em 0;
}

.text-wrapper dt {
	font-weight: 600;
}

.text-wrapper dd {
	margin: 0 0 1em 1.5em;
}

.text-wrapper a {
	text-decoration: underline;
	transition: all 0.2s;
}

.text-wrapper a:hover {
	font-weight: 600;
}

.text-wrapper code {
	background: #f5f5f5;
	padding: 2px 6px;
	border-radius: 4px;
	font-family: Consolas, Monaco, monospace;
	font-size: 0.9em;
}

.text-wrapper pre {
	background: #272822;
	color: #f8f8f2;
	padding: 1em;
	overflow-x: auto;
	border-radius: 6px;
	margin: 1.5em 0;
}

.text-wrapper pre code {
	background: none;
	padding: 0;
	color: inherit;
}

.text-wrapper hr {
	margin: 2em 0;
	border: none;
	border-top: 1px solid #ddd;
}

.text-wrapper img,
.text-wrapper video,
.text-wrapper iframe {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 1.5em 0;
	display: block;
	border-radius: 6px;
}

.text-wrapper figure {
	margin: 2em 0;
	text-align: center;
}

.text-wrapper figcaption {
	margin-top: 0.5em;
	font-style: italic;
	opacity: 0.8;
}

.text-wrapper blockquote {
	margin: 2em 0;
	padding: 1em 1.5em;
	border-left: 4px solid #ccc;
	background: #f9f9f9;
	border-radius: 4px;
}

.text-wrapper blockquote p:last-child {
	margin-bottom: 0;
}

.text-wrapper > *:last-child {
	margin-bottom: 0;
}

.text-wrapper table {
	width: 100%;
	margin: 2em 0;
	border-collapse: collapse;
	font-size: 0.95em;
	display: inline-block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
}

.text-wrapper th,
.text-wrapper td {
	padding: 0.75em 1em;
	border: 1px solid #ddd;
	text-align: left;
	vertical-align: top;
}

.text-wrapper th {
	font-weight: 600;
}

@media (max-width: 991px) {
	.text-wrapper table {
		white-space: nowrap;
	}
}
@media (max-width: 768px) {
	.text-wrapper {
		margin: 60px 0;
	}

	.text-wrapper li {
		list-style-position: inside;
	}

	.text-wrapper blockquote {
		border-left-width: 3px;
		padding: 0.7em 1em;
	}
}

@media (max-width: 480px) {
	.text-wrapper {
		margin: 40px 0;
	}
}
.accordion-item {
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}
.accordion-header {
	background: #f8f9fa;
	padding: 16px 20px;
	cursor: pointer;
	font-weight: bold;
	color: #333;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}
.accordion-header:hover {
	background: #e9ecef;
}
.accordion-header.active {
}
.accordion-icon {
	font-size: 18px;
	transition: transform 0.3s ease;
}
.accordion-header.active .accordion-icon {
	transform: rotate(180deg);
}
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: white;
}
.accordion-content.active {
	max-height: 300px;
}
.accordion-body {
	padding: 16px 20px;
	color: #555;
	line-height: 1.6;
}
