/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #c4ff0d;
	--primary-dark: #a3d60a;
	--background: #0a0a0a;
	--surface: #1a1a1a;
	--surface-hover: #252525;
	--text-primary: #ffffff;
	--text-secondary: #a0a0a0;
	--border: #2a2a2a;
	--accent-blue: #3b82f6;
	--accent-pink: #ec4899;
	--sidebar-width: 240px;
	--header-height: 64px;
}

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

a {
	text-decoration: none;
	color: inherit;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 1001;
	width: 40px;
	height: 40px;
	background: var(--surface);
	border-radius: 8px;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle span {
	width: 20px;
	height: 2px;
	background: var(--primary);
	transition: all 0.3s ease;
}

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

/* Sidebar */
.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: var(--sidebar-width);
	height: 100vh;
	background: var(--surface);
	border-right: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	z-index: 1000;
	overflow-y: auto;
	transition: transform 0.3s ease;
}

.sidebar::-webkit-scrollbar {
	width: 6px;
}

.sidebar::-webkit-scrollbar-track {
	background: var(--surface);
}

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

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

.logo svg {
	display: block;
}

.sidebar-close {
	display: none;
	width: 32px;
	height: 32px;
	font-size: 24px;
	color: var(--text-secondary);
	transition: color 0.3s ease;
}

.sidebar-close:hover {
	color: var(--text-primary);
}

.sidebar-search {
	padding: 16px 20px;
	position: relative;
}

.search-input {
	width: 100%;
	padding: 10px 36px 10px 12px;
	background: var(--background);
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.search-input:focus {
	outline: none;
	border-color: var(--primary);
}

.search-input::placeholder {
	color: var(--text-secondary);
}

.search-icon {
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-secondary);
	pointer-events: none;
}

.sidebar-nav {
	flex: 1;
	padding: 8px 12px;
}

.nav-section {
	padding: 16px 12px 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	color: var(--text-secondary);
	font-size: 14px;
	transition: all 0.3s ease;
	margin-bottom: 4px;
}

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

.nav-item.active {
	background: var(--primary);
	color: var(--background);
}

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

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

.support-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	color: var(--text-secondary);
	font-size: 14px;
	transition: all 0.3s ease;
	width: 100%;
}

.support-btn:hover {
	background: var(--surface-hover);
	color: var(--text-primary);
}

/* Main Content */
.main-content {
	margin-left: var(--sidebar-width);
	min-height: 100vh;
	transition: margin-left 0.3s ease;
}

/* Top Header */
.top-header {
	height: var(--header-height);
	background: var(--surface);
	border-bottom: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 32px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 24px;
}

.logo-mobile {
	display: none;
}

.header-tabs {
	display: flex;
	gap: 8px;
}

.header-tab {
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-secondary);
	transition: all 0.3s ease;
}

.header-tab:hover {
	background: var(--surface-hover);
	color: var(--text-primary);
}

.header-tab.active {
	background: var(--primary);
	color: var(--background);
}

.header-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.btn-wheel {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: var(--accent-blue);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-primary);
	transition: all 0.3s ease;
}

.btn-wheel:hover {
	background: #2563eb;
	transform: translateY(-2px);
}

.btn-login {
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-primary);
	border: 1px solid var(--border);
	transition: all 0.3s ease;
}

.btn-login:hover {
	background: var(--surface-hover);
	border-color: var(--primary);
}

.btn-register {
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	background: var(--primary);
	color: var(--background);
	transition: all 0.3s ease;
}

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

/* Hero Carousel */
.hero-carousel {
	padding: 24px 32px;
}

.carousel-container {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background: var(--surface);
}

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

.carousel-slide {
	display: none;

	width: 100%;
	max-height: 600px;
}

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

.slide-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 48px;
	margin: 0 auto;
}

.slide-text {
	flex: 1;
}

.slide-title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.slide-bonus {
	margin-bottom: 32px;
}

.bonus-percent {
	font-size: 96px;
	font-weight: 900;
	color: var(--primary);
	line-height: 1;
	display: block;
	text-shadow: 0 0 40px rgba(196, 255, 13, 0.5);
}

.bonus-fs {
	font-size: 64px;
	font-weight: 900;
	color: var(--primary);
	line-height: 1;
	display: block;
	text-shadow: 0 0 40px rgba(196, 255, 13, 0.5);
}

.bonus-amount {
	font-size: 72px;
	font-weight: 900;
	color: var(--accent-blue);
	line-height: 1;
	display: block;
	text-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}

.bonus-subtitle {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-primary);
	display: block;
}

.bonus-cashback {
	font-size: 64px;
	font-weight: 900;
	color: var(--primary);
	line-height: 1;
	display: block;
	text-shadow: 0 0 40px rgba(196, 255, 13, 0.5);
}

.slide-cta {
	display: inline-block;
	padding: 16px 32px;
	background: var(--primary);
	color: var(--background);
	font-size: 18px;
	font-weight: 700;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.slide-cta:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(196, 255, 13, 0.3);
}

.slide-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slide-image img,
.slide-image video {
	object-fit: contain;
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 40px var(--dsc));
}

.carousel-btn {
	position: absolute;
	bottom: 16px;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	color: var(--text-primary);
	font-size: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(12px);
}
.carousel-btn svg {
	height: 16px;
	width: 16px;
}

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

.carousel-prev {
	left: 24px;
}

.carousel-next {
	right: 24px;
}

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

.carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--border);
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-dot.active {
	background: var(--primary);
	width: 24px;
	border-radius: 4px;
}

/* Game Filters */
.game-filters {
	padding: 24px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.filters-left {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.filter-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.filter-btn:hover {
	background: var(--surface-hover);
	color: var(--text-primary);
	border-color: var(--primary);
}

.filter-btn.active {
	background: var(--primary);
	color: var(--background);
	border-color: var(--primary);
}

.filters-right {
	flex: 1;
	max-width: 300px;
}

.filter-search {
	width: 100%;
	padding: 10px 16px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.filter-search:focus {
	outline: none;
	border-color: var(--primary);
}

.filter-search::placeholder {
	color: var(--text-secondary);
}

/* Slots Section */
.slots-section {
	padding: 24px 32px;
}

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

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

.section-link {
	padding: 8px 16px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.section-link:hover {
	background: var(--surface-hover);
	color: var(--text-primary);
	border-color: var(--primary);
}

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

.slot-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: var(--surface);
	transition: all 0.3s ease;
	cursor: pointer;
}

.slot-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(196, 255, 13, 0.2);
}

.slot-card::before {
	content: '';
	display: block;
	padding-top: 140%;
}

.slot-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slot-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px;
	background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

.slot-name {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.slot-provider {
	font-size: 12px;
	color: var(--text-secondary);
	text-transform: uppercase;
}

.slot-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 8px;
	background: var(--primary);
	color: var(--background);
	font-size: 11px;
	font-weight: 700;
	border-radius: 4px;
	text-transform: uppercase;
}

/* Providers Section */
.providers-section {
	padding: 48px 32px;
}

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

.provider-card {
	padding: 24px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.provider-card:hover {
	background: var(--surface-hover);
	border-color: var(--primary);
	transform: translateY(-2px);
}

.provider-card img {
	max-width: 120px;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.provider-card:hover img {
	opacity: 1;
}

/* Footer */
.footer {
	background: var(--surface);
	border-top: 1px solid var(--border);
	padding: 48px 32px 24px;
}

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

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

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

.footer-text {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
}

.footer-link {
	font-size: 14px;
	color: var(--primary);
	transition: color 0.3s ease;
}

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

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

.footer-links a {
	font-size: 14px;
	color: var(--text-secondary);
	transition: color 0.3s ease;
}

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

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

.payment-icons svg {
	height: 30px;
	width: auto;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.payment-icons svg:hover {
	opacity: 1;
}

.footer-disclaimer {
	padding-top: 32px;
	border-top: 1px solid var(--border);
	text-align: center;
}

.footer-disclaimer p {
	font-size: 13px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 12px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
	.slots-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	}

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

	.bonus-percent {
		font-size: 72px;
	}

	.bonus-fs {
		font-size: 48px;
	}
}

@media (max-width: 768px) {
	:root {
		--sidebar-width: 280px;
	}

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

	.sidebar {
		transform: translateX(-100%);
	}

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

	.sidebar-close {
		display: block;
	}

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

	.top-header {
		padding: 0 64px 0 16px;
	}

	.logo-mobile {
		display: block;
	}

	.header-tabs {
		display: none;
	}

	.btn-wheel span {
		display: none;
	}

	.hero-carousel {
		padding: 16px;
	}

	.slide-content {
		flex-direction: column;
		text-align: center;
		gap: 24px;
	}

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

	.bonus-percent {
		font-size: 56px;
	}

	.bonus-fs {
		font-size: 36px;
	}

	.bonus-amount {
		font-size: 48px;
	}

	.bonus-subtitle {
		font-size: 24px;
	}

	.bonus-cashback {
		font-size: 48px;
	}

	.carousel-btn {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.carousel-prev {
		left: 12px;
	}

	.carousel-next {
		right: 12px;
	}

	.game-filters {
		padding: 16px;
	}

	.filters-left {
		width: 100%;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 8px;
	}

	.filter-btn {
		white-space: nowrap;
	}

	.filters-right {
		max-width: 100%;
	}

	.slots-section {
		padding: 16px;
	}

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

	.providers-section {
		padding: 32px 16px;
	}

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

	.footer {
		padding: 32px 16px 16px;
	}

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

@media (max-width: 480px) {
	.btn-login {
		display: none;
	}

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

	.slots-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.btn-wheel,
	.btn-register {
		display: none;
	}
}

.text-wrapper {
	margin: 80px 0;
	padding: 0 32px;
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}
@media (max-width: 767px) {
	.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: #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;
	background: var(--surface-hover);
	border-left: 5px solid var(--primary);

	border-radius: 4px;
	color: var(--text-primary);
}
.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 var(--border);
	text-align: left;
	vertical-align: top;
	word-break: break-word;
}

.text-wrapper th {
	background: var(--primary-dark);
	color: var(--surface);
	font-weight: 600;
}
.text-wrapper tr:nth-child(even) td {
	background: var(--surface-hover);
}

@media (max-width: 767px) {
	.text-wrapper table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		width: 100%;
		border-radius: 6px;
	}

	.text-wrapper th,
	.text-wrapper td {
		white-space: normal;
		word-break: break-word;
	}

	.text-wrapper li {
		list-style-position: inside;
	}

	.text-wrapper table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
		border-radius: 6px;
	}

	.text-wrapper table th,
	.text-wrapper table td {
		white-space: nowrap;
		word-break: normal;
	}

	.text-wrapper table::-webkit-scrollbar {
		height: 6px;
	}
	.text-wrapper table::-webkit-scrollbar-thumb {
		background: rgba(0, 0, 0, 0.2);
		border-radius: 3px;
	}
	.text-wrapper table::-webkit-scrollbar-track {
		background: transparent;
	}
}
@media (max-width: 480px) {
	.text-wrapper {
		margin: 60px 0;
	}
	.text-wrapper blockquote {
		border-left-width: 3px;
		padding: 0.7em 1em;
	}
}

.accordion-item {
	border: 1px solid var(--border);
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}
.accordion-header {
	background: var(--accent-blue);
	padding: 16px 20px;
	cursor: pointer;
	font-weight: bold;
	color: var(--text-primary);
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}
.accordion-header:hover {
	background: var(--accent-pink);
}
.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: var(--background);
}
.accordion-content.active {
	max-height: 300px;
}
.accordion-body {
	padding: 16px 20px;
	color: var(--text-primary);
	line-height: 1.6;
}
