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

:root {
	--bg-primary: #0f1419;
	--bg-secondary: #1a1f2e;
	--bg-card: #1e2433;
	--accent-primary: #8b5cf6;
	--accent-secondary: #a855f7;
	--accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
	--text-primary: #ffffff;
	--text-secondary: #9ca3af;
	--border-color: #2d3748;
	--hover-bg: #2a3142;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: 240px;
	height: 100vh;
	background: var(--bg-secondary);
	border-right: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	z-index: 1000;
	transition: transform 0.3s ease;
}

.sidebar-header {
	padding: 24px 20px;
	border-bottom: 1px solid var(--border-color);
}

.logo {
	height: 40px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
}

.sidebar-nav {
	flex: 1;
	padding: 20px 0;
	overflow-y: auto;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.2s;
	border-left: 3px solid transparent;
}

.nav-item:hover {
	background: var(--hover-bg);
	color: var(--text-primary);
}

.nav-item.active {
	background: var(--hover-bg);
	color: var(--accent-primary);
	border-left-color: var(--accent-primary);
}

.nav-item svg {
	flex-shrink: 0;
}

.sidebar-footer {
	padding: 20px;
	border-top: 1px solid var(--border-color);
}

.language-selector,
.theme-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	color: var(--text-secondary);
	cursor: pointer;
	border-radius: 6px;
	transition: background 0.2s;
}

.language-selector:hover,
.theme-toggle:hover {
	background: var(--hover-bg);
}

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

.top-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 32px;
	background: var(--bg-secondary);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-logo {
	display: none;
}

.logo-img {
	height: 32px;
	width: auto;
	max-width: 96px;
	object-fit: contain;
}

.logo-text {
	font-size: 20px;
	font-weight: 800;
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 2px;
}

.top-nav {
	display: flex;
	gap: 24px;
}

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

.top-nav a:hover {
	color: var(--text-primary);
}

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

.btn-login,
.btn-register {
	padding: 10px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s;
}

.btn-login {
	color: var(--text-primary);
	border: 2px solid var(--accent-primary);
}

.btn-login:hover {
	background: var(--accent-primary);
}

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

.btn-register:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.hero-carousel {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 24px;
	padding: 32px;
	max-width: 1600px;
	margin: 0 auto;
}

.carousel-container {
	position: relative;
	background: var(--accent-gradient);
	border-radius: 16px;
	overflow: hidden;
	min-height: 400px;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease;
	height: 100%;
	width: 100%;
}

.carousel-slide {
	min-width: 100%;
	display: none;
}

.carousel-slide.active {
	display: block;
}

.slide-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px;
	min-height: 400px;
	width: 100%;
	height: 100%;
	position: relative;
	isolation: isolate;
}

.slide-text {
	flex: 1;
	z-index: 2;
}

.slide-title {
	font-size: 56px;
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.1;
}

.slide-subtitle {
	font-size: 24px;
	margin-bottom: 32px;
	opacity: 0.95;
}

.slide-cta {
	display: inline-block;
	padding: 16px 40px;
	background: white;
	color: var(--accent-primary);
	text-decoration: none;
	border-radius: 12px;
	font-weight: 700;
	font-size: 18px;
	transition: all 0.2s;
}

.slide-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.slide-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
}

.placeholder-image {
	font-size: 120px;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.carousel-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	pointer-events: none;
}

.carousel-prev,
.carousel-next {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	cursor: pointer;
	pointer-events: all;
	transition: all 0.2s;
	user-select: none;
}

.carousel-prev:hover,
.carousel-next:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.carousel-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.2s;
}

.carousel-dot.active {
	background: white;
	width: 32px;
	border-radius: 5px;
}

.recent-wins {
	background: var(--bg-card);
	border-radius: 16px;
	padding: 24px;
	height: fit-content;
}

.wins-header {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.wins-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.win-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	background: var(--bg-secondary);
	border-radius: 12px;
	transition: transform 0.2s;
}

.win-item:hover {
	transform: translateX(4px);
}

.win-item img {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	object-fit: cover;
}

.win-info {
	flex: 1;
}

.win-game {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 4px;
}

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

.win-amount {
	font-weight: 700;
	color: var(--accent-primary);
	font-size: 16px;
}

.info-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding: 0 32px 32px;
	max-width: 1600px;
	margin: 0 auto;
}

.info-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	background: var(--bg-card);
	border-radius: 12px;
	border: 1px solid var(--border-color);
	transition: all 0.2s;
}

.info-card:hover {
	border-color: var(--accent-primary);
	transform: translateY(-4px);
}

.info-icon {
	font-size: 40px;
	flex-shrink: 0;
}
.info-icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.info-value {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--text-primary);
}

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

.games-section {
	padding: 32px;
	max-width: 1600px;
	margin: 0 auto;
}

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

.section-title {
	font-size: 28px;
	font-weight: 700;
}

.section-link {
	color: var(--accent-primary);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s;
}

.section-link:hover {
	color: var(--accent-secondary);
}

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

.game-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	cursor: pointer;
	transition: transform 0.2s;
}

.game-card:hover {
	transform: translateY(-8px);
}

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

.game-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 12px;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.2s;
}

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

.game-btn,
.game-btn-demo {
	padding: 10px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s;
}

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

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

.game-btn-demo {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	color: white;
}

.game-btn-demo:hover {
	background: rgba(255, 255, 255, 0.3);
}

.providers-section {
	padding: 32px;
	max-width: 1600px;
	margin: 0 auto;
}

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

.provider-card {
	background: var(--bg-card);
	border-radius: 12px;
	padding: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-color);
	transition: all 0.2s;
	cursor: pointer;
}

.provider-card:hover {
	border-color: var(--accent-primary);
	transform: translateY(-4px);
}

.provider-card img {
	max-width: 100%;
	height: auto;
	filter: grayscale(100%) brightness(0.8);
	transition: filter 0.2s;
}

.provider-card:hover img {
	filter: grayscale(0%) brightness(1);
}

.footer {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border-color);
	margin-top: 64px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	padding: 64px 32px;
	max-width: 1600px;
	margin: 0 auto;
}

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

.footer-heading {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.footer-column p {
	color: var(--text-secondary);
	line-height: 1.6;
}

.footer-link {
	color: var(--accent-primary);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s;
}

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

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.2s;
}

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

.footer-disclaimer {
	padding: 24px 32px;
	background: var(--bg-primary);
	border-top: 1px solid var(--border-color);
}

.footer-disclaimer p {
	max-width: 1600px;
	margin: 0 auto;
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.6;
}

.footer-bottom {
	padding: 24px 32px;
	text-align: center;
	color: var(--text-secondary);
	font-size: 14px;
}

.mobile-menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
	transition: all 0.2s;
	flex-shrink: 0;
}

.mobile-menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--text-primary);
	transition: all 0.2s;
}

.mobile-menu-toggle:hover {
	background: var(--hover-bg);
}

.mobile-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

.mobile-overlay.active {
	opacity: 1;
	pointer-events: all;
}

@media (max-width: 1024px) {
	.sidebar {
		transform: translateX(-100%);
	}

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

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

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

	.mobile-overlay {
		display: block;
	}

	.top-header {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 12px 16px;
	}

	.header-logo {
		display: block;
		flex: 1;
		min-width: 0;
	}

	.logo-img {
		height: 32px;
		max-width: 100%;
	}

	.header-actions {
		display: flex;
		gap: 8px;
		flex-shrink: 0;
	}

	.top-nav {
		display: none;
	}

	.hero-carousel {
		grid-template-columns: 1fr;
	}

	.recent-wins {
		order: -1;
	}

	.info-cards {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 768px) {
	.slide-content {
		flex-direction: column;
		padding: 40px 24px;
		text-align: center;
	}

	.slide-title {
		font-size: 36px;
	}

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

	.games-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 12px;
	}

	.providers-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	}

	.btn-login,
	.btn-register {
		padding: 8px 16px;
		font-size: 13px;
		white-space: nowrap;
	}
}

@media (max-width: 480px) {
	.hero-carousel,
	.games-section,
	.providers-section {
		padding: 16px;
	}

	.info-cards {
		padding: 0 16px 16px;
	}

	.slide-title {
		font-size: 28px;
	}

	.slide-subtitle {
		font-size: 16px;
	}

	.section-title {
		font-size: 22px;
	}

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

	.logo-img {
		height: 28px;
		max-width: 80px;
	}
}

@media (max-width: 410px) {
	.header-actions {
		display: none;
	}
}
.carousel-container {
	position: relative;
	background: var(--accent-gradient);
	border-radius: 16px;
	overflow: hidden;
	min-height: 400px;
}

.carousel-track {
	display: flex;
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	width: 100%;
}

.carousel-slide {
	min-width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
	pointer-events: none;
}

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

.slide-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px;
	min-height: 400px;
	width: 100%;
	height: 100%;
	position: relative;
	isolation: isolate;
}

.carousel-slide.active .slide-content {
	animation: slideInContent 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInContent {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.slide-text {
	flex: 1;
	z-index: 2;
}

.carousel-slide.active .slide-text {
	animation: textSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s backwards;
}

@keyframes textSlideIn {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.slide-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active .slide-image {
	opacity: 1;
}

.slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
	transition: transform 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide.active .slide-image img {
	transform: scale(1.05);
}

.carousel-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	pointer-events: none;
	z-index: 10;
}

.carousel-prev,
.carousel-next {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	cursor: pointer;
	pointer-events: auto;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	user-select: none;
	border: none;
	color: white;
	flex-shrink: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.carousel-prev:active,
.carousel-next:active {
	transform: scale(0.95);
}

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

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	padding: 0;
	pointer-events: auto;
}

.carousel-dot.active {
	background: white;
	width: 32px;
	border-radius: 5px;
	animation: dotExpand 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dotExpand {
	from {
		width: 10px;
	}
	to {
		width: 32px;
	}
}
a {
	text-decoration: none;
}
.text-wrapper {
	margin: 80px 0;
	padding: 0 32px;
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}
@media (max-width: 480px) {
	.text-wrapper {
		padding: 0 16px;
	}
}
.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: var(--accent-primary);
	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;
}

.text-wrapper th,
.text-wrapper td {
	padding: 0.75em 1em;
	border: 1px solid #ddd;
	text-align: left;
	vertical-align: top;
	white-space: nowrap;
}

.text-wrapper th {
	font-weight: 600;
}

@media (max-width: 768px) {
	.text-wrapper {
		margin: 60px 0;
	}

	.text-wrapper table {
		display: inline-block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		max-width: 100%;
	}

	.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 #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: border-color 0.3s ease;
	background: transparent;
}

.accordion-header:hover {
	background: transparent;
}

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