* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--color-primary: #00d4ff;
	--color-primary-dark: #00b8e6;
	--color-primary-light: #33ddff;
	--color-accent: #f59e0b;
	--color-accent-dark: #d97706;

	--color-background: #0a1628;
	--color-surface: #0f1e33;
	--color-surface-light: #152840;
	--color-surface-hover: #1a3049;

	--color-text: #ffffff;
	--color-text-secondary: #94a3b8;
	--color-text-muted: #64748b;

	--color-border: #1e3a52;
	--color-border-light: #2d4a66;

	--color-success: #10b981;
	--color-danger: #ef4444;
	--color-purple: #a855f7;
	--color-pink: #ec4899;

	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 1.5rem;
	--spacing-lg: 2rem;
	--spacing-xl: 3rem;
	--spacing-2xl: 4rem;

	--font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	--font-size-xs: 0.75rem;
	--font-size-sm: 0.875rem;
	--font-size-base: 1rem;
	--font-size-lg: 1.125rem;
	--font-size-xl: 1.25rem;
	--font-size-2xl: 1.5rem;
	--font-size-3xl: 2rem;
	--font-size-4xl: 2.5rem;
	--font-size-5xl: 3rem;

	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;
	--radius-full: 9999px;

	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);

	--transition-fast: 150ms ease;
	--transition-base: 250ms ease;
	--transition-slow: 350ms ease;
}

body {
	font-family: var(--font-sans);
	background-color: var(--color-background);
	color: var(--color-text);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: rgba(10, 22, 40, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border);
	padding: var(--spacing-md) 0;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--spacing-lg);
}

.logo {
	display: flex;
	align-items: center;
	font-size: var(--font-size-xl);
	font-weight: 700;
	text-decoration: none;
	color: var(--color-text);
	transition: opacity var(--transition-fast);
	letter-spacing: 0.05em;
}
.logo img {
	height: 20px;
}

.logo:hover {
	opacity: 0.8;
}

.logo-text {
	color: var(--color-text);
}

.logo-accent {
	color: var(--color-primary);
}

.nav {
	display: none;
	gap: var(--spacing-lg);
}

.nav-link {
	color: var(--color-text-secondary);
	text-decoration: none;
	font-size: var(--font-size-sm);
	font-weight: 500;
	transition: color var(--transition-fast);
}

.nav-link:hover {
	color: var(--color-primary);
}

.header-actions {
	display: none;
	gap: var(--spacing-sm);
}

.mobile-menu-toggle {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.mobile-menu-toggle span {
	width: 24px;
	height: 2px;
	background-color: var(--color-text);
	transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
	position: fixed;
	top: 73px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-background);
	z-index: 99;
	transform: translateX(-100%);
	transition: transform var(--transition-base);
}

.mobile-menu.active {
	transform: translateX(0);
}

.mobile-menu-content {
	padding: var(--spacing-lg);
}

.mobile-nav {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-xl);
}

.mobile-nav-link {
	color: var(--color-text);
	text-decoration: none;
	font-size: var(--font-size-lg);
	font-weight: 500;
	padding: var(--spacing-sm);
	border-radius: var(--radius-md);
	transition: background-color var(--transition-fast);
}

.mobile-nav-link:hover {
	background-color: var(--color-surface);
}

.mobile-actions {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font-size: var(--font-size-sm);
	font-weight: 700;
	text-decoration: none;
	border-radius: var(--radius-lg);
	transition: all var(--transition-fast);
	cursor: pointer;
	border: none;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.btn-primary {
	background: linear-gradient(135deg, var(--color-primary), #0ea5e9);
	color: #000;
	box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--color-primary-light), #38bdf8);
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
	background-color: transparent;
	color: var(--color-text);
	border: 2px solid var(--color-border-light);
}

.btn-secondary:hover {
	background-color: var(--color-surface-light);
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.btn-large {
	padding: 1rem 2.5rem;
	font-size: var(--font-size-base);
}

.btn-block {
	width: 100%;
}

/* Новые стили для hero-слайдера с фоновыми изображениями */
.hero-slider {
	position: relative;
	overflow: hidden;
	background-color: var(--color-background);
}

.hero-slides {
	position: relative;
	width: 100%;
	height: 500px;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to right,
		rgba(10, 22, 40, 0.95) 0%,
		rgba(10, 22, 40, 0.7) 50%,
		rgba(10, 22, 40, 0.3) 100%
	);
	z-index: 1;
}

.hero-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-character {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 50%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
	display: none;
}

.hero-character img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom right;
}

.hero-content {
	position: relative;
	z-index: 3;
	padding: var(--spacing-xl) 0;
	max-width: 600px;
}

.hero-badge {
	display: inline-block;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-purple)
	);
	color: #000;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-md);
	font-size: var(--font-size-sm);
	font-weight: 700;
	margin-bottom: var(--spacing-md);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.hero-title {
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: var(--spacing-lg);
	text-transform: uppercase;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-highlight {
	color: #5eead4;
	font-size: 2.5rem;
	display: block;
	text-shadow: 0 0 30px rgba(94, 234, 212, 0.5);
}

.hero-features {
	display: flex;
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-xl);
	flex-wrap: wrap;
}

.hero-feature {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.hero-feature-value {
	font-size: 1rem;
	font-weight: 900;
	color: #5eead4;
	text-transform: uppercase;
	text-shadow: 0 0 20px rgba(94, 234, 212, 0.4);
}

.hero-feature-label {
	font-size: 0.55rem;
	color: var(--color-text-secondary);
	text-transform: uppercase;
	line-height: 1.3;
	max-width: 100px;
}

.hero-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.5);
	border: 1px solid var(--color-border);
	color: var(--color-text);
	width: 40px;
	height: 40px;
	border-radius: var(--radius-full);
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-base);
	backdrop-filter: blur(10px);
}

.hero-nav:hover {
	background-color: var(--color-primary);
	color: #000;
	border-color: var(--color-primary);
	transform: translateY(-50%) scale(1.1);
}

.hero-prev {
	left: 0.5rem;
}

.hero-next {
	right: 0.5rem;
}

.hero-indicators {
	position: absolute;
	bottom: var(--spacing-md);
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 0.5rem;
}

.hero-indicator {
	width: 8px;
	height: 8px;
	border-radius: var(--radius-full);
	background-color: rgba(255, 255, 255, 0.3);
	border: none;
	cursor: pointer;
	transition: all var(--transition-base);
	padding: 0;
}

.hero-indicator:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

.hero-indicator.active {
	background-color: var(--color-primary);
	width: 24px;
}

.jackpot-carousel {
	background-color: var(--color-surface);
	padding: var(--spacing-lg) 0;
	overflow: hidden;
}

.jackpot-scroll {
	display: flex;
	gap: var(--spacing-md);
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: var(--spacing-sm) 0;
}

.jackpot-scroll::-webkit-scrollbar {
	display: none;
}

.jackpot-item {
	flex: 0 0 auto;
	background-color: var(--color-surface-light);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: var(--spacing-md);
	display: flex;
	gap: var(--spacing-md);
	align-items: center;
	min-width: 280px;
	transition: all var(--transition-base);
}

.jackpot-item:hover {
	transform: translateY(-2px);
	border-color: var(--color-primary);
	box-shadow: var(--shadow-lg);
}

.jackpot-game-icon {
	width: 60px;
	height: 60px;
	border-radius: var(--radius-md);
	overflow: hidden;
	flex-shrink: 0;
	background-color: var(--color-surface);
}

.jackpot-game-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jackpot-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.jackpot-badge {
	font-size: 0.65rem;
	font-weight: 700;
	padding: 0.25rem 0.5rem;
	border-radius: var(--radius-sm);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	width: fit-content;
}

.jackpot-badge-big {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: #000;
}

.jackpot-badge-decent {
	background: linear-gradient(135deg, #10b981, #059669);
	color: #000;
}

.jackpot-badge-mythic {
	background: linear-gradient(135deg, #a855f7, #7c3aed);
	color: #fff;
}

.jackpot-badge-super {
	background: linear-gradient(135deg, #ec4899, #db2777);
	color: #fff;
}

.jackpot-badge-minor {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	color: #fff;
}

.jackpot-badge-jumbo {
	background: linear-gradient(135deg, #14b8a6, #0d9488);
	color: #000;
}

.jackpot-badge-mega {
	background: linear-gradient(135deg, #f97316, #ea580c);
	color: #000;
}

.jackpot-amount {
	font-size: var(--font-size-lg);
	font-weight: 700;
	color: var(--color-text);
}

.jackpot-player {
	font-size: var(--font-size-xs);
	color: var(--color-text-muted);
}

.mascot-section {
	background: linear-gradient(
		to bottom,
		var(--color-surface),
		var(--color-background)
	);
	padding: var(--spacing-xl) 0;
	overflow: hidden;
}

.mascot-container {
	max-width: 1200px;
	margin: 0 auto;
}

.mascot-image {
	width: 100%;
	height: auto;
	display: block;
}

.game-categories {
	background-color: var(--color-background);
	padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.categories-tabs {
	display: flex;
	gap: var(--spacing-sm);
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	margin-bottom: var(--spacing-lg);
	padding-bottom: var(--spacing-sm);
}

.categories-tabs::-webkit-scrollbar {
	display: none;
}

.category-tab {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	color: var(--color-text-secondary);
	text-decoration: none;
	font-size: var(--font-size-sm);
	font-weight: 600;
	white-space: nowrap;
	transition: all var(--transition-fast);
}

.category-tab:hover {
	background-color: var(--color-surface-light);
	border-color: var(--color-primary);
	color: var(--color-text);
}

.category-tab.active {
	background: linear-gradient(135deg, var(--color-primary), #0ea5e9);
	border-color: var(--color-primary);
	color: #000;
}

.category-count {
	font-size: var(--font-size-xs);
	opacity: 0.7;
}

.slots {
	padding: var(--spacing-2xl) 0;
	background-color: var(--color-background);
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--spacing-xl);
	flex-wrap: wrap;
	gap: var(--spacing-md);
}

.section-title {
	font-size: 1.25rem;
	font-weight: 700;
}

.section-description {
	color: var(--color-text-secondary);
	font-size: 0.875rem;
	margin-top: var(--spacing-sm);
}

.section-link {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 600;
	transition: color var(--transition-fast);
}

.section-link:hover {
	color: var(--color-primary-light);
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--spacing-md);
}

.slot-card {
	background-color: var(--color-surface);
	border-radius: var(--radius-lg);
	overflow: hidden;
	text-decoration: none;
	transition: all var(--transition-base);
	border: 1px solid var(--color-border);
}

.slot-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-xl);
	border-color: var(--color-primary);
}

.slot-image {
	position: relative;
	aspect-ratio: 5 / 7;
	overflow: hidden;
	background-color: var(--color-surface-light);
}

.slot-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slot-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity var(--transition-base);
}

.slot-card:hover .slot-overlay {
	opacity: 1;
}

.play-btn {
	background-color: var(--color-primary);
	color: #000;
	padding: 0.75rem 2rem;
	border-radius: var(--radius-full);
	font-weight: 700;
	transform: translateY(10px);
	transition: transform var(--transition-base);
	text-transform: uppercase;
	font-size: var(--font-size-sm);
}

.slot-card:hover .play-btn {
	transform: translateY(0);
}

.slot-info {
	padding: var(--spacing-md);
}

.slot-name {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 0.25rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.slot-provider {
	font-size: 0.65rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.new-games-carousel {
	margin-top: var(--spacing-lg);
	overflow: hidden;
}

.new-games-scroll {
	display: flex;
	gap: var(--spacing-md);
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: var(--spacing-sm) 0;
}

.new-games-scroll::-webkit-scrollbar {
	display: none;
}

.new-game-card {
	flex: 0 0 auto;
	width: 150px;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	text-decoration: none;
	transition: all var(--transition-base);
	position: relative;
}

.new-game-card:hover {
	transform: translateY(-4px);
	border-color: var(--color-primary);
	box-shadow: var(--shadow-lg);
}

.new-game-badge {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	background: linear-gradient(135deg, #ec4899, #db2777);
	color: #fff;
	padding: 0.25rem 0.5rem;
	border-radius: var(--radius-sm);
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	z-index: 1;
}

.new-game-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.new-game-info {
	padding: var(--spacing-sm);
}

.new-game-info h4 {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 0.25rem;
	text-transform: uppercase;
}

.new-game-info p {
	font-size: 0.65rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
}

.providers {
	padding: var(--spacing-2xl) 0;
	background-color: var(--color-surface);
}

.providers-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--spacing-md);
}

.provider-card {
	background-color: var(--color-surface-light);
	padding: var(--spacing-md);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition-base);
	border: 1px solid var(--color-border);
	min-height: 80px;
	text-decoration: none;
}

.provider-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--color-primary);
}

.provider-logo img {
	max-width: 100%;
	height: auto;
	opacity: 0.7;
	transition: opacity var(--transition-fast);
	font-size: 0.875rem;
	color: var(--color-text);
	font-weight: 600;
}

.cta-section {
	padding: var(--spacing-2xl) 0;
	background-image: url('img/payoutBackNew.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

.cta-content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.cta-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: var(--spacing-md);
}

.cta-description {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: var(--spacing-xl);
	line-height: 1.6;
}

.footer {
	background-color: var(--color-surface);
	padding: var(--spacing-2xl) 0 var(--spacing-lg);
	border-top: 1px solid var(--color-border);
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-xl);
	margin-bottom: var(--spacing-2xl);
}

.footer-section {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
}

.footer-title {
	font-size: var(--font-size-lg);
	font-weight: 700;
	margin-bottom: var(--spacing-sm);
}

.footer-text {
	color: var(--color-text-secondary);
	font-size: var(--font-size-sm);
	line-height: 1.6;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
}

.footer-links a {
	color: var(--color-text-secondary);
	text-decoration: none;
	font-size: var(--font-size-sm);
	transition: color var(--transition-fast);
}

.footer-links a:hover {
	color: var(--color-primary);
}

.footer-link-btn {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 600;
	font-size: var(--font-size-sm);
	transition: color var(--transition-fast);
}

.footer-link-btn:hover {
	color: var(--color-primary-light);
}

.footer-disclaimer {
	background-color: var(--color-surface-light);
	padding: var(--spacing-lg);
	border-radius: var(--radius-lg);
	margin-bottom: var(--spacing-xl);
	display: flex;
	gap: var(--spacing-md);
	border: 1px solid var(--color-accent);
}

.disclaimer-icon {
	flex-shrink: 0;
	color: var(--color-accent);
}

.disclaimer-text {
	color: var(--color-text-secondary);
	font-size: var(--font-size-sm);
	line-height: 1.6;
}

.disclaimer-text strong {
	color: var(--color-text);
	font-weight: 600;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
	padding-top: var(--spacing-lg);
	border-top: 1px solid var(--color-border);
}

.footer-copyright {
	color: var(--color-text-muted);
	font-size: var(--font-size-sm);
	text-align: center;
}

.footer-payments {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-sm);
}

.payment-label {
	color: var(--color-text-secondary);
	font-size: var(--font-size-sm);
}

.payment-icons {
	display: flex;
	gap: var(--spacing-sm);
}

.payment-icon {
	background-color: var(--color-surface-light);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-sm);
	font-size: var(--font-size-xs);
	font-weight: 700;
	color: var(--color-text-secondary);
	border: 1px solid var(--color-border);
}

@media (min-width: 640px) {
	.slots-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.providers-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-highlight {
		font-size: 3rem;
	}

	.hero-slides {
		height: 550px;
	}

	.hero-feature-value {
		font-size: 1.25rem;
	}

	.hero-feature-label {
		font-size: 0.65rem;
		max-width: 120px;
	}

	.hero-nav {
		width: 48px;
		height: 48px;
	}

	.hero-prev {
		left: var(--spacing-md);
	}

	.hero-next {
		right: var(--spacing-md);
	}

	.hero-indicators {
		bottom: var(--spacing-lg);
		gap: var(--spacing-sm);
	}

	.hero-indicator {
		width: 10px;
		height: 10px;
	}

	.hero-indicator.active {
		width: 28px;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.section-description {
		font-size: 1rem;
	}

	.slot-name {
		font-size: 0.875rem;
	}

	.cta-title {
		font-size: 2rem;
	}

	.cta-description {
		font-size: 1.125rem;
	}

	.hero-character {
		display: block;
		width: 45%;
	}
}

@media (min-width: 768px) {
	.nav {
		display: flex;
	}

	.header-actions {
		display: flex;
	}

	.mobile-menu-toggle {
		display: none;
	}

	.slots-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.providers-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.footer-payments {
		flex-direction: row;
	}

	.footer-copyright {
		text-align: left;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-highlight {
		font-size: 4rem;
	}

	.hero-slides {
		height: 600px;
	}

	.hero-content {
		padding: var(--spacing-2xl) 0;
	}

	.hero-features {
		gap: var(--spacing-xl);
	}

	.hero-feature-value {
		font-size: 1.5rem;
	}

	.hero-feature-label {
		font-size: 0.75rem;
		max-width: none;
	}

	.section-title {
		font-size: 2rem;
	}

	.section-description {
		font-size: 1.125rem;
	}

	.cta-title {
		font-size: 2.5rem;
	}

	.cta-description {
		font-size: 1.125rem;
	}

	.hero-character {
		width: 50%;
	}
}

@media (min-width: 1024px) {
	.slots-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.footer-content {
		grid-template-columns: repeat(4, 1fr);
	}

	.hero-title {
		font-size: 3rem;
	}

	.hero-highlight {
		font-size: 5rem;
	}

	.hero-slides {
		height: 650px;
	}

	.hero-feature-value {
		font-size: 2rem;
	}

	.section-title {
		font-size: 2.5rem;
	}

	.cta-title {
		font-size: 3rem;
	}

	.hero-character {
		width: 55%;
	}
}

@media (min-width: 1280px) {
	.hero-nav {
		display: flex;
	}
	.container {
		padding: 0 var(--spacing-xl);
	}

	.hero-title {
		font-size: 3.5rem;
	}

	.hero-highlight {
		font-size: 6rem;
	}

	.hero-slides {
		height: 700px;
	}

	.hero-feature-value {
		font-size: 2.5rem;
	}

	.section-title {
		font-size: 3rem;
	}

	.cta-title {
		font-size: 3.5rem;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.8;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}
.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 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 var(--color-border-light);
}

.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(--color-border-light);
	text-align: left;
	vertical-align: top;
	word-break: break-word;
}

.text-wrapper th {
	background: var(--color-primary-dark);
	font-weight: 600;
	color: var(--color-surface);
}
.text-wrapper tr:nth-child(even) td {
	background: var(--color-border);
}

@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;
	}
}
