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

:root {
	--color-primary: #0d1f1c;
	--color-secondary: #1a2f2a;
	--color-accent: #ffd700;
	--color-accent-hover: #ffed4e;
	--color-register: #ff1744;
	--color-register-hover: #ff4569;
	--color-text: #ffffff;
	--color-text-secondary: #b0b0b0;
	--color-border: #2a3f3a;
	--color-card-bg: #162420;
}

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

.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: 200px;
	height: 100vh;
	background-color: var(--color-secondary);
	border-right: 1px solid var(--color-border);
	padding: 20px;
	z-index: 1000;
	transition: transform 0.3s ease;
}

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

.logo {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-accent);
	letter-spacing: 2px;
}

.close-btn {
	display: none;
	background: none;
	border: none;
	color: var(--color-text);
	font-size: 32px;
	cursor: pointer;
	padding: 0;
	width: 32px;
	height: 32px;
	line-height: 1;
}

.sidebar-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.btn-login,
.btn-register {
	display: block;
	padding: 12px 20px;
	text-align: center;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
}

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

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

.btn-register {
	background-color: var(--color-register);
	color: var(--color-text);
	border: 2px solid var(--color-register);
}

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

.bonus-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background-color: var(--color-accent);
	color: var(--color-primary);
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 700;
}

.sidebar-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

.sidebar-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	color: var(--color-text);
	text-decoration: none;
	border-radius: 6px;
	transition: background-color 0.3s ease;
}

.sidebar-link:hover {
	background-color: var(--color-border);
}

.sidebar-link .icon {
	font-size: 18px;
}

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

.header {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 15px 30px;
	background-color: var(--color-secondary);
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
	z-index: 999;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background-color: var(--color-text);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.header-logo {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-accent);
	letter-spacing: 2px;
	display: none;
}

.header-search {
	flex: 1;
	max-width: 500px;
	position: relative;
}

.header-search input {
	width: 100%;
	padding: 10px 40px 10px 15px;
	background-color: var(--color-primary);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	color: var(--color-text);
	font-size: 14px;
}

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

.search-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
}

.header-nav {
	display: flex;
	gap: 15px;
}

.nav-link {
	padding: 8px 16px;
	color: var(--color-text);
	text-decoration: none;
	border-radius: 6px;
	transition: background-color 0.3s ease;
	font-weight: 500;
}

.nav-link:hover {
	background-color: var(--color-border);
}

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

.btn-header-register,
.btn-header-login {
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
}

.btn-header-register {
	background-color: var(--color-register);
	color: var(--color-text);
}

.btn-header-register:hover {
	background-color: var(--color-register-hover);
}

.btn-header-login {
	background-color: transparent;
	border: 2px solid var(--color-accent);
	color: var(--color-accent);
}

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

.bonus-badge-small {
	font-size: 11px;
	margin-right: 5px;
}

.hero-carousel {
	padding: 30px;
}

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

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

.carousel-slide {
	min-width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px;
	background: linear-gradient(
		135deg,
		var(--color-secondary) 0%,
		var(--color-primary) 100%
	);
	gap: 40px;
}

.slide-content {
	flex: 1;
}

.slide-badge {
	display: inline-block;
	background-color: rgba(255, 215, 0, 0.2);
	color: var(--color-accent);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.slide-title {
	font-size: 38px;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

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

.btn-cta:hover {
	background-color: var(--color-accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

.slide-image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

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

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

.carousel-dot.active {
	background-color: var(--color-accent);
	width: 30px;
	border-radius: 6px;
}

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

.carousel-arrow {
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: var(--color-text);
	cursor: pointer;
	pointer-events: all;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

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

.promo-card {
	padding: 30px;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	color: var(--color-text);
	transition: transform 0.3s ease;
}

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

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

.promo-green {
	background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.promo-red {
	background: linear-gradient(135deg, #991b1b 0%, #ef4444 100%);
}

.promo-badge {
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.2);
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.promo-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.promo-icon {
	position: absolute;
	inset: 0;
	opacity: 0.3;
}
.promo-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.games-section,
.text-wrapper {
	padding: 30px;
}

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

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

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

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

.games-carousel {
	overflow-x: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--color-border) transparent;
}

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

.games-carousel::-webkit-scrollbar-track {
	background: transparent;
}

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

.games-track {
	display: flex;
	gap: 20px;
	padding-bottom: 10px;
}

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

.game-card {
	background-color: var(--color-card-bg);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: var(--color-text);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

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

.game-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
	flex-shrink: 0;
}

.game-info {
	padding: 15px;
	background-color: var(--color-card-bg);
}

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

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

.providers-section {
	padding: 30px;
}

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

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

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

.provider-name {
	font-size: 18px;
	font-weight: 600;
}

.footer {
	background-color: var(--color-secondary);
	border-top: 1px solid var(--color-border);
	padding: 50px 30px 20px;
	margin-top: 50px;
}

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

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

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

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

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

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

.footer-disclaimer {
	padding: 20px;
	background-color: rgba(255, 215, 0, 0.1);
	border-radius: 8px;
	margin-bottom: 20px;
}

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

.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: 13px;
}

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

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

	.close-btn {
		display: block;
	}

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

	.hamburger {
		display: flex;
	}

	.header-logo {
		display: flex;
	}

	.header-nav {
		display: none;
	}

	.carousel-slide {
		flex-direction: column;
		padding: 40px 30px;
	}

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

	.games-grid {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
}

@media (max-width: 768px) {
	.header {
		padding: 15px;
	}

	.header-search {
		max-width: 200px;
	}

	.header-actions {
		display: none;
	}

	.hero-carousel {
		padding: 15px;
	}

	.carousel-slide {
		padding: 30px 20px;
	}

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

	.promo-cards {
		grid-template-columns: 1fr;
		padding: 0 15px 15px;
	}

	.games-section,
	.text-wrapper {
		padding: 15px;
	}

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

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

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

	.footer {
		padding: 30px 15px 15px;
	}

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

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

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

	.btn-cta {
		padding: 12px 30px;
		font-size: 14px;
	}

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

	.game-card img {
		height: 200px;
	}
}
.text-wrapper {
	margin: 80px 0;
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

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