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

:root {
	--primary: #1a2332;
	--secondary: #2a3b52;
	--accent: #4ecb71;
	--accent-purple: #8b5cf6;
	--text: #ffffff;
	--text-secondary: #b8bfc8;
	--border: #374151;
	--danger: #e74c3c;
}

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

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

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

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

.logo {
	font-size: 24px;
	font-weight: 700;
	color: var(--accent);
	text-decoration: none;
	white-space: nowrap;
}

.nav {
	display: flex;
	gap: 30px;
	flex: 1;
}

.nav a {
	color: var(--text);
	text-decoration: none;
	font-size: 15px;
	transition: color 0.3s;
	white-space: nowrap;
}

.nav a:hover {
	color: var(--accent);
}

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

.btn-primary,
.btn-secondary,
.btn-large,
.btn-play {
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s;
	display: inline-block;
	text-align: center;
	border: none;
	cursor: pointer;
}

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

.btn-primary:hover {
	background: #3fb55f;
	transform: translateY(-2px);
}

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

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

.btn-large {
	padding: 16px 40px;
	font-size: 16px;
}

.btn-play {
	padding: 10px 24px;
	background: var(--accent);
	color: var(--primary);
	font-size: 14px;
}

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

.burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	transition: all 0.3s;
}

.burger.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.burger.active span:nth-child(2) {
	opacity: 0;
}

.burger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 73px;
	left: 0;
	right: 0;
	background: var(--secondary);
	border-bottom: 1px solid var(--border);
	padding: 20px;
	z-index: 999;
}

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

.mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 20px;
}

.mobile-nav a {
	color: var(--text);
	text-decoration: none;
	padding: 10px;
	border-radius: 6px;
	transition: background 0.3s;
}

.mobile-nav a:hover {
	background: var(--primary);
}

.mobile-actions {
	display: flex;
	gap: 12px;
}

.mobile-actions a {
	flex: 1;
}

.hero-slider {
	position: relative;
	height: 600px;
	overflow: hidden;
}

.slider-container {
	height: 100%;
	position: relative;
}

.slider-track {
	height: 100%;
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.slide {
	min-width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.slide::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(26, 35, 50, 0.5) 0%,
		rgba(26, 35, 50, 0.7) 50%,
		rgba(26, 35, 50, 0.9) 100%
	);
	z-index: 1;
}

.slide-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	width: 100%;
	padding: 0 20px;
	text-align: center;
}

.slide-text .title-large {
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	color: #ffffff;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.slide-text p {
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: var(--text);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	backdrop-filter: blur(10px);
	z-index: 10;
}
.slider-btn.prev {
	left: 10px;
}

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

.slider-btn:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-50%) scale(1.1);
}

.slider-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
}

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

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

.slots-section {
	padding: 80px 0;
}

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

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

.link-arrow {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: gap 0.3s;
}

.link-arrow:hover {
	gap: 12px;
}

.link-arrow::after {
	content: '→';
	font-size: 20px;
}

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

.slot-card {
	background: var(--secondary);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s;
}

.slot-card:hover {
	transform: translateY(-8px);
}

.slot-image {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

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

.slot-overlay {
	position: absolute;
	inset: 0;
	background: rgba(26, 35, 50, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

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

.slot-info {
	padding: 16px;
}

.title-small {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

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

.text-content {
	padding: 80px 0;
	background: var(--secondary);
}


.text-content > div:first-child {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 32px;
	line-height: 1.3;
	color: var(--text);
	letter-spacing: -0.5px;
}


.text-content > div:not(:first-child) {
	font-size: 24px;
	font-weight: 600;
	margin-top: 48px;
	margin-bottom: 24px;
	color: var(--accent);
	line-height: 1.4;
	letter-spacing: -0.3px;
}

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

.text-content h1 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 32px;
	margin-top: 0;
	line-height: 1.3;
	color: var(--text);
	letter-spacing: -0.5px;
}

.text-content h2 {
	font-size: 32px;
	font-weight: 700;
	margin-top: 48px;
	margin-bottom: 24px;
	line-height: 1.3;
	color: var(--accent);
	letter-spacing: -0.4px;
}

.text-content h3 {
	font-size: 24px;
	font-weight: 600;
	margin-top: 40px;
	margin-bottom: 20px;
	line-height: 1.4;
	color: var(--text);
	letter-spacing: -0.3px;
}

.text-content h4 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 32px;
	margin-bottom: 16px;
	line-height: 1.4;
	color: var(--text);
}

.text-content h5 {
	font-size: 18px;
	font-weight: 600;
	margin-top: 24px;
	margin-bottom: 12px;
	line-height: 1.5;
	color: var(--text-secondary);
}

.text-content h6 {
	font-size: 16px;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 12px;
	line-height: 1.5;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.text-content ol {
	list-style-position: inside;
	margin-bottom: 20px;
}

.text-content ul {
	list-style: none;
	margin-bottom: 20px;
}

.text-content li {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-secondary);
	padding-left: 28px;
	position: relative;
	margin-bottom: 12px;
}

.text-content li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 700;
	font-size: 18px;
}

.text-content ul.negative li::before {
	content: '✗';
	color: var(--danger);
}


.table-wrapper {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 20px;
	border-radius: 8px;
	background: var(--primary);
}

.table-wrapper table {
	margin-bottom: 0;
	border-radius: 0;
}

.text-content table {
	width: 100%;
	min-width: 500px;
	border-collapse: collapse;
	margin-bottom: 20px;
	background: var(--primary);
	border-radius: 8px;
}

.text-content thead {
	background: rgba(78, 203, 113, 0.1);
}

.text-content th {
	padding: 16px;
	text-align: left;
	font-weight: 600;
	font-size: 15px;
	color: var(--accent);
	border-bottom: 2px solid var(--border);
	white-space: nowrap;
}

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

.text-content tbody tr:last-child td {
	border-bottom: none;
}

.text-content tbody tr {
	transition: background 0.3s;
}

.text-content tbody tr:hover {
	background: rgba(255, 255, 255, 0.03);
}


.table-wrapper::-webkit-scrollbar {
	height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
	background: var(--border);
	border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
	background: var(--accent);
	border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
	background: #3fb55f;
}

.providers-section {
	padding: 80px 0;
}

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

.provider-card {
	background: var(--secondary);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	border: 2px solid transparent;
}

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

.provider-card img {
	max-width: 100%;
	height: auto;
	opacity: 0.8;
	transition: opacity 0.3s;
}

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

.footer {
	background: var(--secondary);
	border-top: 1px solid var(--border);
	padding: 60px 0 20px;
}

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

.title-footer {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--accent);
}

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

.footer-column ul {
	list-style: none;
}

.footer-column li {
	margin-bottom: 10px;
}

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

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

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

.footer-disclaimer {
	background: rgba(255, 255, 255, 0.05);
	padding: 24px;
	border-radius: 12px;
	margin-bottom: 24px;
}

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

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

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



@media (max-width: 968px) {
	.nav {
		display: none;
	}

	.header-actions {
		display: none;
	}

	.burger {
		display: flex;
	}

	.hero-slider {
		height: 500px;
	}

	.slide-text .title-large {
		font-size: 42px;
	}

	.slide-text p {
		font-size: 18px;
	}

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

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

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

	.text-content h1 {
		font-size: 32px;
	}

	.text-content h2 {
		font-size: 26px;
		margin-top: 40px;
	}

	.text-content h3 {
		font-size: 20px;
		margin-top: 32px;
	}
}

@media (max-width: 768px) {
	.text-content th,
	.text-content td {
		padding: 12px;
		font-size: 14px;
	}
}

@media (max-width: 640px) {
	.hero-slider {
		height: 400px;
	}

	.slide-text .title-large {
		font-size: 32px;
	}

	.slide-text p {
		font-size: 16px;
	}

	.slider-btn {
		width: 40px;
		height: 40px;
	}

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

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

	.slots-section,
	.text-content,
	.providers-section {
		padding: 60px 0;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

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

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

	.text-content h1 {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.text-content h2 {
		font-size: 22px;
		margin-top: 32px;
		margin-bottom: 16px;
	}

	.text-content h3 {
		font-size: 18px;
		margin-top: 24px;
	}

	.text-content h4 {
		font-size: 17px;
		margin-top: 20px;
	}

	.text-content h5,
	.text-content h6 {
		font-size: 15px;
	}

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

	.text-content th,
	.text-content td {
		padding: 10px 12px;
		font-size: 13px;
	}
}


.slide-text .btn-large {
	background: var(--accent);
	color: var(--primary);
	box-shadow: 0 8px 24px rgba(78, 203, 113, 0.5);
	font-weight: 700;
	letter-spacing: 0.3px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	position: relative;
	z-index: 2;
}

.slide-text .btn-large:hover {
	background: #3fb55f;
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 12px 32px rgba(78, 203, 113, 0.6);
	border-color: rgba(255, 255, 255, 0.4);
}