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

:root {
	--color-primary: #ff5722;
	--color-secondary: #2962ff;
	--color-background: #0a1628;
	--color-surface: #132038;
	--color-surface-light: #1a2942;
	--color-text: #ffffff;
	--color-text-secondary: #8b9dc3;
	--color-border: #1e3a5f;
	--color-success: #00e676;
	--color-warning: #ffd600;
	--sidebar-width: 240px;
	--header-height: 60px;
}

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

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

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

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
}

.sidebar-close {
	display: none;
	background: none;
	border: none;
	color: var(--color-text);
	cursor: pointer;
	padding: 5px;
}

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

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

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

.nav-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-icon svg {
	width: 32px;
	height: 32px;
	min-width: 32px;
	min-height: 32px;
	object-fit: contain;
}

.nav-badge {
	margin-left: auto;
	background-color: var(--color-primary);
	color: var(--color-text);
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}

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

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

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

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: var(--color-surface-light);
	border-radius: 8px;
	color: var(--color-text-secondary);
	text-decoration: none;
	transition: all 0.2s ease;
}

.social-icon:hover {
	background-color: var(--color-primary);
	color: var(--color-text);
}

.mobile-header {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-height);
	background-color: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	z-index: 999;
}

.menu-toggle {
	background: none;
	border: none;
	color: var(--color-text);
	cursor: pointer;
	padding: 5px;
}

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

.btn-login {
	padding: 8px 16px;
	color: var(--color-text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.2s ease;
}

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

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

.btn-register:hover {
	background-color: #ff6b3d;
	transform: translateY(-1px);
}

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

.overlay.active {
	display: block;
}

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

.hero {
	position: relative;
	min-height: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 40px 40px;
	overflow: hidden;
}

.hero-slider {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.6s ease;
	display: flex;
	flex-direction: column;
	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(10, 22, 40, 0.65) 0%,
		rgba(19, 32, 56, 0.65) 100%
	);
	z-index: 1;
}

.hero-slide.active {
	opacity: 1;
	z-index: 1;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 50%,
			rgba(255, 87, 34, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 50%,
			rgba(41, 98, 255, 0.15) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
}

.hero-text {
	margin-bottom: 40px;
}

.hero-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 18px;
	color: var(--color-text-secondary);
	margin-bottom: 10px;
}

.hero-bonus {
	font-size: 56px;
	font-weight: 900;
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 5px;
}

.hero-bonus-text {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text);
}

.hero-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary {
	padding: 16px 40px;
	background-color: var(--color-primary);
	color: var(--color-text);
	text-decoration: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(255, 87, 34, 0.4);
}

.btn-primary:hover {
	background-color: #ff6b3d;
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(255, 87, 34, 0.6);
}

.btn-secondary {
	padding: 16px 40px;
	background-color: var(--color-secondary);
	color: var(--color-text);
	text-decoration: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(41, 98, 255, 0.4);
}

.btn-secondary:hover {
	background-color: #3d73ff;
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(41, 98, 255, 0.6);
}

.hero-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background-color: rgba(19, 32, 56, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--color-text);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.hero-nav:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	transform: translateY(-50%) scale(1.1);
}

.hero-prev {
	left: 20px;
}

.hero-next {
	right: 20px;
}

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

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

.hero-dot:hover {
	background-color: rgba(255, 255, 255, 0.5);
	transform: scale(1.2);
}

.hero-dot.active {
	background-color: var(--color-primary);
	width: 32px;
	border-radius: 6px;
}

.payment-methods {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	padding: 20px;
	background-color: rgba(19, 32, 56, 0.5);
	border-radius: 12px;
	backdrop-filter: blur(10px);
}
.payment-methods img {
	height: 30px;
	object-fit: contain;
}
@media (max-width: 1024px) {
	.payment-methods {
		display: none;
	}
}
.section {
	padding: 60px 40px;
}

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

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

.btn-show-all {
	padding: 10px 24px;
	background-color: transparent;
	color: var(--color-primary);
	text-decoration: none;
	border: 2px solid var(--color-primary);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.2s ease;
}

.btn-show-all:hover {
	background-color: var(--color-primary);
	color: var(--color-text);
}

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

.game-card {
	position: relative;
	aspect-ratio: 1;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.3s ease;
}

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

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

.game-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 4px 12px;
	background-color: var(--color-success);
	color: var(--color-background);
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	z-index: 2;
}

.game-badge.jackpot {
	top: 40px;
	background-color: var(--color-warning);
}

.game-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

.game-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text);
}

.games-scroll {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding-bottom: 10px;
	scrollbar-width: thin;
	scrollbar-color: var(--color-primary) var(--color-surface);
}

.games-scroll::-webkit-scrollbar {
	height: 8px;
}

.games-scroll::-webkit-scrollbar-track {
	background: var(--color-surface);
	border-radius: 4px;
}

.games-scroll::-webkit-scrollbar-thumb {
	background: var(--color-primary);
	border-radius: 4px;
}

.game-card-large {
	position: relative;
	min-width: 400px;
	height: 240px;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.3s ease;
}

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

.game-card-large :is(img, video) {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.game-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.game-info .game-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}

.game-provider {
	font-size: 14px;
	color: var(--color-text-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.game-card-medium {
	position: relative;
	min-width: 200px;
	height: 240px;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.3s ease;
}

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

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

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

.provider-card {
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.provider-card:hover {
	border-color: var(--color-primary);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(255, 87, 34, 0.2);
}

.provider-card img {
	width: 100%;
	max-width: 160px;
	height: 60px;
	object-fit: contain;
	margin-bottom: 20px;
	filter: brightness(0) invert(1);
	opacity: 0.8;
}

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

.provider-info {
	margin-top: 15px;
}

.provider-label {
	font-size: 14px;
	color: var(--color-text-secondary);
	margin-bottom: 5px;
}

.provider-count {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-text);
}

.text-section {
	background-color: var(--color-surface);
}
ul,
li,
ol {
	list-style-position: inside;
}
.text-content {
	max-width: 1200px;
	margin: 0 auto;
}

.content-intro {
	margin-bottom: 40px;
	padding: 30px;
	background: linear-gradient(
		135deg,
		rgba(255, 87, 34, 0.1) 0%,
		rgba(41, 98, 255, 0.1) 100%
	);
	border: 1px solid var(--color-border);
	border-radius: 12px;
}

.text-wrapper h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-text);
	margin: 40px 0 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--color-primary);
}

.text-content h2:first-of-type {
	margin-top: 0;
}

.text-wrapper h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-text);
	margin: 30px 0 15px;
}

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

.comparison-table,
.bonus-table,
.payment-table,
.support-table {
	margin: 30px 0;
	overflow-x: auto;
}

.text-content table {
	width: 100%;
	border-collapse: collapse;
	background-color: var(--color-surface-light);
	border-radius: 12px;
	overflow: hidden;
	margin-top: 15px;
}

.text-wrapper thead {
	background-color: var(--color-primary);
}

.text-wrapper th {
	padding: 15px;
	text-align: left;
	font-weight: 600;
	color: var(--color-text);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.text-wrapper td {
	padding: 15px;
	border-top: 1px solid var(--color-border);
	color: var(--color-text-secondary);
	font-size: 15px;
}

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

.text-wrapper tbody tr:hover {
	background-color: rgba(255, 87, 34, 0.05);
}

.pros-cons-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin: 30px 0;
}

.pros-block,
.cons-block {
	padding: 30px;
	background-color: var(--color-surface-light);
	border: 1px solid var(--color-border);
	border-radius: 12px;
}

.pros-block {
	border-left: 4px solid var(--color-success);
}

.cons-block {
	border-left: 4px solid var(--color-primary);
}

.pros-block h3,
.cons-block h3 {
	margin-top: 0;
	margin-bottom: 20px;
}

.pros-block ul,
.cons-block ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pros-block li,
.cons-block li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 15px;
	color: var(--color-text-secondary);
	line-height: 1.6;
}

.pros-block li:last-child,
.cons-block li:last-child {
	margin-bottom: 0;
}

.pros-block svg {
	flex-shrink: 0;
	margin-top: 2px;
	stroke: var(--color-success);
}

.cons-block svg {
	flex-shrink: 0;
	margin-top: 2px;
	stroke: var(--color-primary);
}

.info-block {
	display: flex;
	gap: 20px;
	padding: 25px;
	margin: 30px 0;
	border-radius: 12px;
	border: 1px solid var(--color-border);
}

.info-block svg {
	flex-shrink: 0;
	margin-top: 5px;
}

.info-block.warning {
	background-color: rgba(255, 215, 0, 0.1);
	border-left: 4px solid var(--color-warning);
}

.info-block.warning svg {
	stroke: var(--color-warning);
}

.info-block.success {
	background-color: rgba(0, 230, 118, 0.1);
	border-left: 4px solid var(--color-success);
}

.info-block.success svg {
	stroke: var(--color-success);
}

.info-block h3 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 18px;
}

.info-block p {
	margin-bottom: 0;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.feature-list li {
	padding-left: 30px;
	position: relative;
	margin-bottom: 12px;
	color: var(--color-text-secondary);
	line-height: 1.6;
}

.feature-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 18px;
}

/* Added styles for FAQ section */
.faq-section {
	max-width: 900px;
	margin: 0 auto;
}

.faq-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-item {
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: var(--color-primary);
}

.faq-item.active {
	border-color: var(--color-primary);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 25px;
	cursor: pointer;
	user-select: none;
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text);
	transition: all 0.2s ease;
}

.faq-question:hover {
	color: var(--color-primary);
}

.faq-icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
	color: var(--color-text-secondary);
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
	color: var(--color-primary);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p {
	color: var(--color-text-secondary);
	line-height: 1.8;
	font-size: 15px;
}

.footer {
	background-color: var(--color-surface);
	border-top: 1px solid var(--color-border);
	padding: 60px 40px 20px;
}

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

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

.footer-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

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

.footer-link-btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: var(--color-surface-light);
	color: var(--color-text);
	text-decoration: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.2s ease;
	align-self: flex-start;
}

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

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

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

.footer-disclaimer {
	padding: 30px;
	background-color: rgba(255, 87, 34, 0.1);
	border: 1px solid rgba(255, 87, 34, 0.3);
	border-radius: 12px;
	margin-bottom: 30px;
}

.footer-disclaimer p {
	color: var(--color-text-secondary);
	text-align: center;
	line-height: 1.8;
}

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

.footer-bottom p {
	color: var(--color-text-secondary);
	font-size: 14px;
}

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

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

	.sidebar-close {
		display: block;
	}

	.mobile-header {
		display: flex;
	}

	.main-content {
		margin-left: 0;
		padding-top: var(--header-height);
	}

	.hero {
		min-height: 500px;
		padding: 40px 20px;
	}

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

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

	.section {
		padding: 40px 20px;
	}

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

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

	.game-card-large {
		min-width: 300px;
	}

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

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

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

	.hero-nav {
		width: 40px;
		height: 40px;
	}

	.hero-prev {
		left: 10px;
	}

	.hero-next {
		right: 10px;
	}

	.hero-dots {
		bottom: 80px;
	}

	.pros-cons-container {
		grid-template-columns: 1fr;
	}

	.text-wrapper table {
		font-size: 14px;
	}

	.text-wrapper th,
	.text-wrapper td {
		padding: 10px;
	}
}

@media (max-width: 640px) {
	.hero-title {
		font-size: 24px;
	}

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

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

	.hero-bonus-text {
		font-size: 14px;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		text-align: center;
	}

	.payment-methods {
		gap: 15px;
	}

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

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

	.game-card-large {
		min-width: 250px;
	}

	.game-card-medium {
		min-width: 150px;
	}

	.header-actions {
		gap: 5px;
	}

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

	.btn-register {
		padding: 6px 16px;
		font-size: 12px;
	}

	.hero-nav {
		width: 36px;
		height: 36px;
	}

	.hero-dots {
		bottom: 70px;
		gap: 8px;
	}

	.hero-dot {
		width: 8px;
		height: 8px;
	}

	.hero-dot.active {
		width: 24px;
	}

	.payment-methods {
		bottom: 10px;
		padding: 15px;
	}

	.text-wrapper h2 {
		font-size: 24px;
	}

	.text-wrapper h3 {
		font-size: 18px;
	}

	.text-wrapper p {
		font-size: 14px;
	}

	.comparison-table,
	.bonus-table,
	.payment-table,
	.support-table {
		overflow-x: auto;
	}

	.text-wrapper table {
		font-size: 12px;
	}

	.text-wrapper th,
	.text-wrapper td {
		padding: 8px;
	}
}
@media (max-width: 480px) {
	.header-actions {
		display: none;
	}
	.mobile-header {
		flex-direction: row-reverse;
	}
}

.text-wrapper {
	margin: 40px 0;
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: anywhere;
	background-color: var(--color-surface);
}

.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 1em;
	padding-left: 1em;
}

.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;
	}
}
.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;
	margin-bottom: 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;
}
