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

:root {
	--bg-primary: #0f1729;
	--bg-secondary: #1a1f3a;
	--bg-card: #1e2642;
	--accent-blue: #3b82f6;
	--accent-purple: #8b5cf6;
	--accent-yellow: #fbbf24;
	--accent-pink: #ec4899;
	--text-primary: #ffffff;
	--text-secondary: #94a3b8;
	--border-color: #2d3548;
}

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

.header {
	background: var(--bg-secondary);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid var(--border-color);
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--text-primary);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	transition: transform 0.3s ease;
}

.logo img {
	height: 45px;
	object-fit: contain;
}

.logo-text {
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.3s ease;
	white-space: nowrap;
	position: relative;
	padding-bottom: 4px;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent-blue);
	transition: width 0.3s ease;
}

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

.nav-link:hover::after {
	width: 100%;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.btn {
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
	text-align: center;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
	color: var(--text-primary);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
	background: var(--accent-blue);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
	transform: scale(1.1);
}

.hero-section {
	padding: 3rem 0;
	background: var(--bg-primary);
}

.carousel {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
	background: var(--bg-card);
}

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

.carousel-slide {
	min-width: 100%;
	position: relative;
	padding: 4rem 3rem;
}

.slide-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: right;
	background-size: cover;
	opacity: 0.4; /* Измените на нужное значение */
	z-index: 0;
}

.slide-content {
	max-width: 600px;
	position: relative;
	z-index: 1;
}

.slide-badge {
	display: inline-block;
	background: var(--accent-pink);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 1rem;
	transition: transform 0.3s ease;
}

.slide-badge:hover {
	transform: scale(1.05);
}

.slide-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.slide-description {
	color: var(--text-primary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
	padding: 10px;
	border-radius: 10px;
	width: max-content;
	max-width: 100%;
	position: relative;
	isolation: isolate;
}

.slide-description::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--accent-pink);
	filter: blur(12px);
	opacity: 0.5;
	z-index: -1;
}

.carousel-controls {
	position: absolute;
	bottom: 2rem;
	right: 3rem;
	display: flex;
	gap: 0.5rem;
}

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

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

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

.slots-section {
	padding: 4rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.section-subtitle {
	color: var(--text-secondary);
	font-size: 1.1rem;
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
	max-width: 100%;
}

.slot-card {
	background: var(--bg-card);
	border-radius: 1rem;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid var(--border-color);
	max-width: 400px;
	margin: 0 auto;
	width: 100%;
}

.slot-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	border-color: var(--accent-blue);
}

.slot-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
}
.slot-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slot-card:hover .slot-image {
	transform: scale(1.05);
}

.slot-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(255, 255, 255, 0.1) 50%,
		transparent 70%
	);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.slot-info {
	padding: 1.5rem;
}

.slot-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.slot-card:hover .slot-title {
	color: var(--accent-blue);
}

.slot-provider {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.slot-stats {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-color);
}

.stat {
	text-align: center;
}

.stat-label {
	color: var(--text-secondary);
	font-size: 0.8rem;
	margin-bottom: 0.25rem;
}

.stat-value {
	font-weight: 700;
	color: var(--accent-yellow);
}

.providers-section {
	padding: 4rem 0;
	background: var(--bg-secondary);
}

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

.provider-card {
	background: var(--bg-card);
	border-radius: 1rem;
	padding: 2rem;
	text-align: center;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	cursor: pointer;
}
.provider-card * {
	color: var(--text-primary);
}
a {
	text-decoration: none;
}
.provider-card:hover {
	border-color: var(--accent-blue);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.provider-logo {
	width: 80px;
	height: 80px;
	margin: 0 auto 1rem;
	background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	transition: transform 0.3s ease;
}

.provider-card:hover .provider-logo {
	transform: rotate(5deg) scale(1.1);
}

.provider-name {
	font-weight: 700;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.provider-card:hover .provider-name {
	color: var(--accent-blue);
}

.provider-games {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.footer {
	background: var(--bg-secondary);
	padding: 3rem 0 1.5rem;
	border-top: 1px solid var(--border-color);
}

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

.footer-section h3 {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

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

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-link {
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 0.95rem;
	display: inline-block;
}

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

.disclaimer {
	background: var(--bg-card);
	padding: 1.5rem;
	border-radius: 0.5rem;
	margin-bottom: 2rem;
	border-left: 4px solid var(--accent-yellow);
	transition: transform 0.3s ease;
}

.disclaimer:hover {
}

.disclaimer-title {
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--accent-yellow);
}

.disclaimer-text {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 0.9rem;
}

@media (max-width: 900px) {
	.slots-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.cta-buttons {
		display: none;
	}
}

@media (max-width: 768px) {
	.nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bg-secondary);
		flex-direction: column;
		padding: 0;
		border-top: 1px solid var(--border-color);
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease,
			visibility 0.4s ease;
	}

	.nav.mobile-open {
		max-height: 500px;
		opacity: 1;
		visibility: visible;
		padding: 1rem;
	}

	.mobile-menu-btn {
		display: block;
	}

	.btn {
		padding: 0.6rem 1.2rem;
		font-size: 0.85rem;
	}

	.slide-title {
		font-size: 1.75rem;
	}

	.slide-description {
		font-size: 1rem;
	}

	.carousel-slide {
		padding: 2rem 1.5rem;
	}

	.carousel-controls {
		right: 1.5rem;
		bottom: 1.5rem;
	}

	.section-title {
		font-size: 2rem;
	}

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

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

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 480px) {
	.header-content {
		gap: 1rem;
	}

	.logo {
		font-size: 1.5rem;
	}

	.slide-title {
		font-size: 1.5rem;
	}

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

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

.fade-in {
	animation: fadeIn 0.6s ease-out;
}
.text-wrapper {
	margin: 80px 0;
	padding: 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;
}

.text-wrapper th,
.text-wrapper td {
	padding: 0.75em 1em;
	border: 1px solid var(--border-color);
	text-align: left;
	vertical-align: top;
	word-break: break-word;
}

.text-wrapper th {
	background: var(--bg-card);
	font-weight: bold;
}
.text-wrapper tr:nth-child(even) td {
	background: var(--bg-secondary);
}

@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-color);
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}
.accordion-header {
	background: var(--bg-primary);
	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(--bg-card);
}
.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(--bg-secondary);
}
.accordion-content.active {
	max-height: 300px;
}
.accordion-body {
	padding: 16px 20px;
	color: var(--text-primary);
	line-height: 1.6;
}
