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

:root {
	--bg-primary: #1a1b26;
	--bg-secondary: #24252f;
	--bg-tertiary: #2a2b36;
	--bg-card: #1f2029;
	--accent-orange: #ff6b35;
	--accent-orange-hover: #ff8547;
	--accent-purple: #a855f7;
	--accent-blue: #3b82f6;
	--text-primary: #ffffff;
	--text-secondary: #a0a0b0;
	--text-muted: #6b6b7b;
	--border-color: #34353f;
	--sidebar-width: 240px;
	--min-content-width: 320px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
}
a {
	text-decoration: none;
}
.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	width: var(--sidebar-width);
	background-color: var(--bg-secondary);
	border-right: 1px solid var(--border-color);
	padding: 24px 0;
	overflow-y: auto;
	transition: transform 0.3s ease;
	z-index: 1000;
}

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

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--accent-orange);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.5px;
}

.logo svg {
	width: 24px;
	height: 24px;
}

.close-sidebar {
	display: none;
	background: none;
	border: none;
	color: var(--text-secondary);
	font-size: 24px;
	cursor: pointer;
	padding: 4px;
}

.sidebar-nav {
	padding-top: 24px;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.2s;
	font-size: 15px;
}

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

.nav-item.active {
	background-color: var(--bg-tertiary);
	color: var(--accent-orange);
	border-left: 3px solid var(--accent-orange);
}

.nav-item svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 999;
}

.main-content {
	margin-left: var(--sidebar-width);
	min-height: 100vh;
}

.top-bar {
	display: none;
	position: sticky;
	top: 0;
	background-color: var(--bg-secondary);
	border-bottom: 1px solid var(--border-color);
	padding: 16px 20px;
	align-items: center;
	justify-content: space-between;
	z-index: 100;
	min-height: 64px;
}

.menu-toggle {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

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

.logo-mobile {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--accent-orange);
	font-weight: 700;
	font-size: 16px;
	white-space: nowrap;
}

.logo-mobile svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

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

.btn-login {
	padding: 8px 16px;
	background: none;
	border: 1px solid var(--border-color);
	color: var(--text-primary);
	text-decoration: none;
	border-radius: 6px;
	font-size: 14px;
	transition: all 0.2s;
	white-space: nowrap;
	min-height: 40px;
	display: flex;
	align-items: center;
}

.btn-login:hover {
	border-color: var(--accent-orange);
	color: var(--accent-orange);
}

.btn-register {
	padding: 8px 16px;
	background-color: var(--accent-orange);
	color: var(--text-primary);
	text-decoration: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.2s;
	white-space: nowrap;
	min-height: 40px;
	display: flex;
	align-items: center;
}

.btn-register:hover {
	background-color: var(--accent-orange-hover);
	transform: translateY(-1px);
}

.hero {
	padding: 40px 40px 20px;
}

.hero-carousel {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
}

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

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

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

.slide-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(
		135deg,
		var(--bg-card) 0%,
		var(--bg-tertiary) 100%
	);
	padding: 60px;
	min-height: 400px;
	gap: 40px;

	position: relative;
	isolation: isolate;
}

.slide-text {
	flex: 1;
}

.bonus-badge {
	font-size: 72px;
	font-weight: 800;
	color: var(--accent-orange);
	line-height: 1;
	margin-bottom: 8px;
}

.bonus-secondary {
	font-size: 48px;
	font-weight: 700;
	color: var(--accent-orange);
	line-height: 1;
}

.slide-divider {
	width: 80px;
	height: 4px;
	background-color: var(--text-primary);
	margin: 24px 0;
}

.slide-title {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 32px;
}

.btn-primary {
	display: inline-block;
	padding: 16px 48px;
	background-color: var(--accent-orange);
	color: var(--text-primary);
	text-decoration: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	transition: all 0.3s;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-primary:hover {
	background-color: var(--accent-orange-hover);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.slide-image {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.7;
}

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

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: var(--text-primary);
	border: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s;
	z-index: 10;
}

.carousel-btn:hover {
	background-color: var(--accent-orange);
}

.carousel-btn.prev {
	left: 20px;
}

.carousel-btn.next {
	right: 20px;
}

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

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

.indicator.active {
	background-color: var(--accent-orange);
	width: 32px;
	border-radius: 6px;
}

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

.promo-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 32px;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	gap: 20px;
	min-height: 140px;
	position: relative;
	isolation: isolate;
}

.promo-orange {
	background: linear-gradient(135deg, #ff6b35 0%, #ff8547 100%);
}

.promo-purple {
	background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
}

.promo-blue {
	background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.promo-content {
	flex: 1;
	z-index: 2;
}

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

.promo-value {
	font-size: 28px;
	font-weight: 800;
	color: var(--text-primary);
}

.promo-image {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	position: absolute;
	inset: 0;
	z-index: -1;
}

.promo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.games-section,
.providers-section,
.faq-section {
	padding: 40px;
}

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

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

.show-all {
	color: var(--accent-orange);
	text-decoration: none;
	font-size: 16px;
	transition: color 0.2s;
}

.show-all:hover {
	color: var(--accent-orange-hover);
}

.section-description {
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 32px;
	max-width: 900px;
}

.games-tabs {
	display: flex;
	gap: 12px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.tab-btn {
	padding: 12px 24px;
	background-color: var(--bg-card);
	color: var(--text-secondary);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.2s;
}

.tab-btn:hover {
	border-color: var(--accent-orange);
	color: var(--text-primary);
}

.tab-btn.active {
	background-color: var(--accent-orange);
	color: var(--text-primary);
	border-color: var(--accent-orange);
}

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

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

.game-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.game-card img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.game-info {
	padding: 16px;
}

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

.game-provider {
	font-size: 13px;
	color: var(--text-muted);
}

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

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

.provider-card:hover {
	border-color: var(--accent-orange);
	transform: translateY(-2px);
}
.section-description a {
	color: var(--accent-orange);
}
.provider-name {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-primary);
}
.provider-name img {
	width: 100%;
	height: 30px;
	object-fit: contain;
}
.faq-list {
	max-width: 900px;
}

.faq-item {
	background-color: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	margin-bottom: 16px;
	overflow: hidden;
	transition: all 0.3s;
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	user-select: none;
	gap: 16px;
}

.faq-icon {
	color: var(--accent-orange);
	font-size: 28px;
	font-weight: 400;
	transition: transform 0.3s;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 24px;
	color: var(--text-secondary);
	line-height: 1.8;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 0 24px 24px;
}

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

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

.footer-section {
	color: var(--text-secondary);
}

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

.footer-section p {
	line-height: 1.8;
	font-size: 14px;
}

.age-restriction {
	display: inline-block;
	margin-top: 16px;
	padding: 8px 16px;
	background-color: var(--accent-orange);
	color: var(--text-primary);
	font-weight: 700;
	font-size: 18px;
	border-radius: 6px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

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

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

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

.payment-icon {
	padding: 8px 16px;
	background-color: var(--bg-tertiary);
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--text-primary);
}

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

.footer-disclaimer p {
	font-size: 13px;
	line-height: 1.8;
	margin-bottom: 12px;
}

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

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

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

	.close-sidebar {
		display: block;
	}

	.overlay.active {
		display: block;
	}

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

	.top-bar {
		display: flex;
	}

	.hero,
	.promo-cards,
	.games-section,
	.providers-section,
	.faq-section,
	.footer {
		padding-left: 20px;
		padding-right: 20px;
	}

	.slide-content {
		padding: 40px;
		min-height: 350px;
	}

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

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

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

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

	.promo-cards {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

@media (max-width: 768px) {
	.promo-cards {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.promo-card {
		padding: 24px;
		min-height: 120px;
	}

	.promo-card {
		flex-wrap: wrap;
	}

	.promo-content {
		flex: 1;
		min-width: 150px;
	}

	.slide-content {
		flex-direction: column;
		text-align: center;
		padding: 32px 24px;
		min-height: auto;
		gap: 24px;
	}

	.slide-text {
		max-width: 100%;
	}

	.slide-divider {
		margin-left: auto;
		margin-right: auto;
	}

	.slide-image {
		max-width: 300px;
		width: 100%;
	}

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

	.bonus-secondary {
		font-size: 28px;
	}

	.slide-title {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.btn-primary {
		padding: 14px 32px;
		font-size: 15px;
	}

	.carousel-btn {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}

	.carousel-btn.prev {
		left: 10px;
	}

	.carousel-btn.next {
		right: 10px;
	}

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

	.section-header {
		flex-wrap: wrap;
		gap: 12px;
	}

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

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

	.provider-card {
		padding: 24px 16px;
	}

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

	.footer {
		padding: 40px 20px 20px;
	}
}

@media (max-width: 480px) {
	.top-bar {
		padding: 12px 16px;
		min-height: 60px;
	}

	.logo-mobile {
		font-size: 14px;
	}

	.logo-mobile svg {
		width: 20px;
		height: 20px;
	}

	.top-actions {
		gap: 6px;
	}

	.btn-login,
	.btn-register {
		padding: 8px 12px;
		font-size: 13px;
		min-height: 36px;
	}

	.hero {
		padding: 20px 16px;
	}

	.slide-content {
		padding: 24px 16px;
	}

	.bonus-badge {
		font-size: 40px;
	}

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

	.slide-title {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.btn-primary {
		padding: 12px 24px;
		font-size: 14px;
	}

	.promo-card {
		flex-direction: column;
		text-align: center;
		padding: 20px;
		min-height: auto;
	}

	.promo-image {
		width: 100px;
		height: 100px;
		margin-top: 12px;
	}

	.promo-title {
		font-size: 18px;
	}

	.promo-value {
		font-size: 24px;
	}

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

	.games-tabs {
		gap: 8px;
	}

	.tab-btn {
		padding: 10px 16px;
		font-size: 14px;
	}

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

	.game-info {
		padding: 12px;
	}

	.game-name {
		font-size: 14px;
	}

	.game-provider {
		font-size: 12px;
	}

	.faq-question {
		padding: 16px;
		font-size: 16px;
	}

	.faq-answer {
		font-size: 14px;
		line-height: 1.7;
	}

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

	.footer-title {
		font-size: 18px;
	}

	.footer-section p {
		font-size: 13px;
	}
	.top-actions {
		display: none;
	}
}

@media (max-width: 360px) {
	.top-bar {
		padding: 10px 12px;
	}

	.logo-mobile span {
		display: none;
	}

	.btn-login,
	.btn-register {
		padding: 6px 10px;
		font-size: 12px;
	}

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

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

	.section-title {
		font-size: 20px;
	}
}
.text-wrapper {
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}
.text-wrapper a {
	text-decoration: none !important;
}
.text-wrapper a:hover {
	color: var(--accent-purple);
}
.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 li {
		list-style-position: inside;
	}

	.text-wrapper blockquote {
		border-left-width: 3px;
		padding: 0.7em 1em;
	}
}

.text-wrapper .error {
	background-color: rgba(178, 34, 34, 0.5);
}
.text-wrapper .warning {
	background-color: rgba(178, 168, 34, 0.5);
}
.text-wrapper .success {
	background-color: rgba(34, 178, 34, 0.5);
}
.text-wrapper :is(.error, .warning, .success) {
	width: max-content;
	max-width: 100%;
	padding: 1rem;
}
.text-wrapper :is(.error, .warning, .success) > :first-child {
	margin-top: 0;
	padding-top: 0;
}
.text-wrapper :is(.error, .warning, .success) > :last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
