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

html, body {
	overflow-x: hidden;
	width: 100%;
}

body {
	font-family: 'Montserrat', sans-serif;
	background: #221B25;
	color: #fff;
	min-height: 100vh;
	padding-top: 65px;
}

/* Стили для интерактивных ссылок */
a.provider-logo,
a.payment-logo,
a.game-btn,
a.load-more,
a.language-btn {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

a.cat-link,
a.filter-btn {
	text-decoration: none;
	cursor: pointer;
}

.logo img {
	max-height: 55px; /* Высота как у прошлой иконки, чтобы влезло в хедер */
	width: auto;      /* Ширина подстроится автоматически */
}

/* --- HEADER (как в оригинале) --- */
.header {
	background: rgba(34, 27, 37, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 15px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 65px;
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-right {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-right: 110px; /* Добавьте это свойство, чтобы отодвинуть от правого края */
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #ffd700, #ff8c00);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.logo-text {
	font-size: 28px;
	font-weight: 800;
	background: linear-gradient(135deg, #ffd700, #ff8c00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.online-counter {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.1px;
    text-decoration: underline;       /* Включает подчеркивание */
	text-underline-offset: 5px;       /* (Необязательно) Делает небольшой отступ линии от букв, чтобы было красивее */
}

.online-dot {
	width: 10px;
	height: 10px;
	background: #00ff00;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.btn {
	padding: 13px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	border: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-register {
	/* Основной цвет кнопки (светло-фиолетовый) */
	background: #9c4ac1; 
	color: #fff;
	
	/* Эффект 3D: жесткая темная тень снизу + мягкая тень под кнопкой */
	box-shadow: 0 3px 0 #6f2c8d, 0 10px 20px rgba(0, 0, 0, 0.4);
	
	border-radius: 4px; /* Скругление углов */
	font-weight: 500;
	font-size: 13px; /* Чуть крупнее шрифт */
	text-transform: uppercase;
	text-decoration: none;
	padding: 10px 16px; /* Размер кнопки */
	border: none;
	cursor: pointer;
	transition: all 0.1s ease; /* Быстрая анимация нажатия */
	
	/* Убедимся, что кнопка стоит ровно */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transform: translateY(0);
}

/* Эффект при наведении (кнопка чуть светлеет) */
.btn-register:hover {
	background: #b05dd4;
	transform: translateY(0px); /* Чуть приподнимается */
	box-shadow: 0 3px 0 #6f2c8d, 0 15px 25px rgba(0, 0, 0, 0.4);
}

/* Эффект при нажатии (кнопка вдавливается) */
.btn-register:active {
	transform: translateY(4px); /* Опускается вниз */
	box-shadow: 0 1px 0 #6f2c8d, 0 5px 10px rgba(0, 0, 0, 0.4); /* Тень уменьшается */
}

.btn-login {
	padding: 11px 0px;
	background: transparent;
	border: none;
	color: #888;
	text-transform: uppercase;
}

.btn-login:hover {
	color: #fff;
}

/* --- НОВЫЙ CSS ДЛЯ СТРУКТУРЫ ПО СКРИНШОТУ --- */

/* 1. Hero Section (Баннер) */
.hero-section {
	position: relative;
	width: 100%;
	height: 320px;
	background: linear-gradient(90deg, #180826 0%, #000000 100%);
	overflow: hidden;
}

.hero-content {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Защита от копирования - прозрачный слой */
.hero-content::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background: transparent;
}

.hero-text {
	position: relative;
	z-index: 2;
	padding-left: 110px;
}

.hero-title {
	font-size: 48px;
	font-weight: 700;
	font-style: italic;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 10px;
	font-family: 'Firs', sans-serif;
}

.hero-subtitle {
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	font-family: 'Firs', sans-serif;
}

.hero-girl {
	position: absolute;
	right: 110px;
	bottom: 0;
	height: 100%;
	max-height: 320px;
	width: auto;
	object-fit: contain;
	z-index: 1;
}

.hero-banner {
	width: 100%;
	height: auto;
	display: block;
}

/* 2. Контейнер Навигации (1170px) */
.nav-container {
	width: 1170px;
	margin: 0 auto;
}

/* Строка 1 */
.nav-row-1 {
	/* ТРЕБОВАНИЕ: Высота 55px, Отступ 19px */
	height: 55px;
	margin-top: 19px;
	background: linear-gradient(90deg, #3a3042 0%, #2C2431 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
}

.nav-link {
	color: #ddd;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
	position: relative;
}
.nav-link:hover { color: #fff; }

/* Иконка монеты - coin_gold.png */
.nav-icon-coin {
	width: 20px;
	height: 20px;
	vertical-align: middle;
}

/* Иконка золотой звезды - star_gold.svg */
.nav-icon-star-gold {
	width: 30px;
	height: 30px;
	vertical-align: middle;
}

/* Сдвиг badge-new ближе к звезде */
.nav-icon-star-gold + .badge-new {
	right: -5px;
	top: -20px;
}

/* Иконка LV - lv_up.svg */
.nav-icon-lv {
	width: 25px;
	height: 25px;
	vertical-align: middle;
}

/* Иконка пустой звезды - star_empty.svg */
.nav-icon-star-empty {
	width: 25px;
	height: 25px;
	vertical-align: middle;
}

.badge-new {
	background: #ff4444;
	font-size: 12px;
	padding: 2px 2px;
	border-radius: 4px;
	position: absolute;
	top: -25px;
	right: -15px;
	transform: rotate(13deg);
	font-weight: 600;
}

/* Строка 2 */
.nav-row-2 {
	/* ТРЕБОВАНИЕ: Высота 55px, Отступ 14px */
	height: 55px;
	margin-top: 14px;
	background: linear-gradient(90deg, #3a3042 0%, #2C2431 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.cat-link {
	color: #ddd;
	font-size: 15px;
	cursor: pointer;
	padding: 16px 0;
	position: relative;
	font-weight: 600;
}
.cat-link.active, .cat-link:hover {
	color: #fff;
	
}
.cat-link.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #c56cd6;
	box-shadow: 0 -2px 10px rgba(197, 108, 214, 0.8);		
}

/* Разделитель "Фильтры" */
.filters-label {
	text-align: center;
	margin-top: 12px;
	margin-bottom: -12px;
	position: relative;
	z-index: 5;
}
.filters-pill {
	background: #1e1e24;
	padding: 5px 13px;
	border-radius: 10px;
	font-size: 14px;
	color: #666;
	border: 1px solid rgba(255,255,255,0.05);
}

/* Строка 3 (Split blocks) */
.nav-row-3 {
	/* ТРЕБОВАНИЕ: Отступ 25px */
	margin-top: 25px;
	display: flex;
	justify-content: space-between;
}

.nav-block-left {
	/* ТРЕБОВАНИЕ: Ширина 565px, Высота 56px */
	width: 565px;
	height: 56px;
	background: linear-gradient(90deg, #3a3042 0%, #2C2431 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	padding: 0 5px;
}

.nav-block-right {
	/* ТРЕБОВАНИЕ: Ширина 598px, Высота 56px */
	width: 598px;
	height: 56px;
	background: linear-gradient(90deg, #3a3042 0%, #2C2431 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	padding: 0 10px;
	gap: 10px;
}

/* Кнопки внутри блока 565px */
.filter-btn {
	text-align: center;
	padding: 10px 8px;
	font-size: 13px;
	color: #ddd;
	cursor: pointer;
	border-radius: 6px;
	position: relative;
	transition: color 0.3s ease;
}
.filter-btn:hover {
	color: #fff;
}
.filter-btn.active {
	background: rgba(255,255,255,0.05);
	color: #fff;
}
.filter-btn.active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 15%;
	height: 70%;
	width: 3px;
	background: #ff4444;
	border-radius: 2px;
}

/* Элементы внутри блока 598px */
.providers_select {
	width: 200px;
}
.providers_select .box_input_text {
	width: 100%;
}
.providers_select .input_select {
	width: 100%;
}
.providers_select .select {
	background: #15151e;
	color: #fff;
	border: none;
	padding: 0 15px;
	height: 40px;
	border-radius: 6px;
	width: 100%;
	font-size: 13px;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 35px;
}
.providers_select .select:focus {
	outline: none;
}
.providers_select .select option {
	background: #15151e;
	color: #fff;
	padding: 10px;
}

.search-input-wrapper {
	flex: 1;
	background: #15151e;
	height: 40px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	padding: 0 15px;
}
.search-input-field {
	background: transparent;
	border: none;
	color: #fff;
	width: 100%;
	outline: none;
	font-size: 13px;
}

/* Games Grid (Старый стиль, чуть адаптированный под ширину контейнера) */
.games-section {
	padding: 20px 30px 10px 30px;
	width: 1170px; /* Выравнивание по ширине навигации */
	margin: 0 auto;
	text-align: center;
	background: #15151D;
	border-radius: 16px;
}

.section-title {
	font-size: 18px;
	font-weight: 500;
	color: #ccc;
	text-align: left;
	margin-bottom: 20px;
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
	text-align: left;
}

.game-card {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	aspect-ratio: 4/3;
	cursor: pointer;
	transition: all 0.3s ease;
}

.game-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.game-img {
	width: 100%; 
	height: 100%;
	background: #2d2d35; /* Цвет фона, пока картинка грузится */
	display: flex; 
	align-items: center; 
	justify-content: center;
	overflow: hidden; /* Обрезаем всё лишнее */
}

.game-img img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Картинка заполняет весь блок, не искажаясь */
	transition: transform 0.5s ease;
}

.game-card:hover .game-img img {
	transform: scale(1.1); /* Легкое приближение картинки при наведении */
}
.game-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 11px;
	font-weight: 600;
}

.badge-new-game {
	background: linear-gradient(135deg, #00ff88, #00cc66);
	color: #000;
}

.badge-hit {
	background: linear-gradient(135deg, #ff4444, #cc0000);
	color: #fff;
}

.game-overlay {
	position: absolute;
	inset: 0;
	background: rgba(59, 89, 133, 0.95);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

.game-title {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	padding: 0 10px;
	margin-top: auto;
	padding-top: 30px;
}

.game-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 70%;
	margin-bottom: auto;
	padding-bottom: 20px;
}

.game-btn {
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	width: 100%;
	text-align: center;
}

.game-btn-play {
	background: linear-gradient(180deg, #5b9bd5 0%, #4a8bc4 100%);
	color: #fff;
}

.game-btn-play:hover {
	background: linear-gradient(180deg, #6babе5 0%, #5a9bd4 100%);
}

.game-btn-demo {
	background: rgba(255, 255, 255, 0.15);
	border: none;
	color: #fff;
}

.game-btn-demo:hover {
	background: rgba(255, 255, 255, 0.25);
}

.load-more {
	display: inline-block;
	margin: 30px auto;
	padding: 18px 40px;
	background: #2a2535;
	border: none;
	color: #fff;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.load-more:hover {
	background: #3a3545;
	color: #fff;
}

/* SEO Content */
.seo-section {
	padding: 50px 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.seo-section h1, .seo-section h2 {
	color: #bbb;
	margin-bottom: 20px;
}

.seo-section h1 {
	font-size: 14px;
	text-align: left;
}

.seo-section h2 {
	font-size: 14px;
	margin-top: 20px;
}

.seo-section p {
	color: #bbb;
	line-height: 1.8;
	margin-bottom: 15px;
	font-size: 12px;
}

/* FAQ Section */
.faq-section {
	padding: 50px 40px;
	max-width: 1000px;
	margin: 0 auto;
}

.faq-section h2 {
	color: #ffd700;
	font-size: 28px;
	text-align: center;
	margin-bottom: 30px;
}

.faq-item {
	background: rgba(30, 30, 60, 0.6);
	border-radius: 15px;
	margin-bottom: 15px;
	overflow: hidden;
}

.faq-question {
	padding: 20px 25px;
	cursor: pointer;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: rgba(255, 215, 0, 0.1);
}

.faq-arrow {
	transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 25px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	color: #bbb;
	line-height: 1.6;
}

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

/* Reviews Section */
.reviews-section {
	padding: 50px 40px;
}

.reviews-section h2 {
	color: #ffd700;
	font-size: 28px;
	text-align: center;
	margin-bottom: 30px;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.review-card {
	background: rgba(30, 30, 60, 0.6);
	border-radius: 15px;
	padding: 25px;
}

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

.review-author {
	font-weight: 600;
}

.review-date {
	color: #888;
	font-size: 12px;
}

.review-stars {
	color: #ffd700;
	font-size: 14px;
}

.review-text {
	color: #bbb;
	line-height: 1.6;
	font-size: 14px;
}

/* Footer */
.footer {
	background: #211C25;
	padding: 10px 40px 30px;
	margin-top: 10px;
}

.footer-top {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
	border-bottom: none;
}

.footer-links {
	display: flex;
	gap: 0;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
}

.footer-link {
	color: #888;
	text-decoration: none;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
	padding: 8px 6px;
	position: relative;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: #fff;
}

.footer-providers {
	display: flex;
	flex-wrap: wrap;
	gap: 25px 20px;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
	max-width: 1100px;
	margin: 0 auto;
}

.provider-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(12.5% - 27px); /* 8 в ряд */
}
.provider-logo img {
	max-width: 100px;
	max-height: 50px;
	width: auto;
	height: auto;
	object-fit: contain;
	opacity: 1;
	transition: opacity 0.3s ease;
}
.provider-logo img[src*="yggdrasil"] {
	max-width: 200px; /* Разрешаем ему быть шире */
	max-height: 50px;
}
.provider-logo:hover img {
	opacity: 1;
}

.footer-payment {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	align-items: center;
	padding: 15px 25px;
	background: #2d2835;
	border-radius: 12px;
	max-width: fit-content;
	margin: 0 auto;
}

.payment-logo {
	height: 40px;
	padding: 5px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.payment-logo img {
	max-width: 90px;
	max-height: 30px;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* Footer Language Button */
.footer-language {
	display: flex;
	justify-content: center;
	padding: 20px 0;
}

.language-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
}

.language-btn img {
	width: 48px;
	height: 34px;
	object-fit: cover;
	border-radius: 6px;
}

.language-btn span {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	background: #3d4a6b;
	padding: 10px 25px;
	border-radius: 6px;
}

/* Footer License Block */
.footer-license {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 40px;
}

.license-gcb {
	flex-shrink: 0;
}

.license-gcb img {
	width: 80px;
	height: auto;
}

.license-text {
	color: #888;
	font-size: 11px;
	line-height: 1.5;
	max-width: 500px;
}

.license-text p {
	margin: 0;
}

.license-age {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 350px;
}

.license-age img {
	width: 45px;
	height: 45px;
	flex-shrink: 0;
}

.license-age p {
	color: #888;
	font-size: 11px;
	line-height: 1.5;
	margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
	.nav-container { width: 100%; padding: 0 20px; }
	.games-section { width: calc(100% - 20px); padding: 20px; margin: 10px; border-radius: 12px; }
	.nav-row-3 { flex-direction: column; height: auto; gap: 10px; }
	.nav-block-left, .nav-block-right { width: 100%; margin: 0; }
	.hero-content { padding-left: 20px; }
	.games-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ========== МОБИЛЬНАЯ АДАПТИВНОСТЬ ========== */

/* Планшеты */
@media (max-width: 1200px) {
	.nav-container,
	.games-container {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}
	
	.hero-content {
		max-width: 100%;
		padding: 0 20px;
	}
	
	.hero-text {
		padding-left: 30px;
	}
	
	.hero-girl {
		right: 20px;
	}
	
	.footer-links {
		gap: 10px;
	}
	
	.footer-link {
		font-size: 13px;
		padding: 6px 8px;
	}
}

@media (max-width: 992px) {
	.nav-container,
	.games-container {
		width: 100% !important;
		padding: 0 15px;
	}
	
	.games-grid { 
		grid-template-columns: repeat(3, 1fr); 
	}
	
	.header {
		padding: 10px 15px;
	}
	
	.hero-section {
		height: 280px;
	}
	
	.hero-title {
		font-size: 36px;
	}
	
	.hero-subtitle {
		font-size: 24px;
	}
	
	.hero-girl {
		max-height: 280px;
	}
	
	.footer-providers {
		gap: 15px 15px;
	}
	
	.provider-logo img {
		max-width: 80px;
		max-height: 40px;
	}
}

/* Мобильные устройства */
@media (max-width: 768px) {
	/* Отступ для фиксированного хедера на мобильных */
	body {
		padding-top: 100px;
	}
	
	/* Контейнеры на 100% ширину */
	.nav-container,
	.games-container {
		width: 100% !important;
		max-width: 100%;
		padding: 0 10px;
		box-sizing: border-box;
	}
	
	/* Блок фильтров */
	.nav-block-left {
		width: 100% !important;
		height: auto !important;
		flex-wrap: wrap;
		padding: 10px;
		gap: 5px;
	}
	
	.filter-btn {
		font-size: 11px;
		padding: 8px 6px;
	}
	
	.nav-block-right {
		width: 100% !important;
		height: auto !important;
		flex-wrap: wrap;
		padding: 10px;
		gap: 8px;
	}
	
	.games-grid { 
		grid-template-columns: repeat(2, 1fr); 
	}
	
	.nav-row-1, .nav-row-2 { 
		flex-wrap: wrap; 
		height: auto; 
		padding: 10px;
		gap: 8px;
		justify-content: center;
	}
	
	.nav-link {
		font-size: 11px;
		gap: 4px;
	}
	
	.cat-link {
		font-size: 12px;
		padding: 8px 5px;
	}
	
	/* Hero адаптивность */
	.hero-section {
		height: auto;
		min-height: 250px;
		padding: 20px 10px;
	}
	
	.hero-content {
		flex-direction: column;
		text-align: center;
		padding: 0 10px;
	}
	
	.hero-text {
		padding: 15px;
		order: 1;
	}
	
	.hero-title {
		font-size: 26px;
	}
	
	.hero-subtitle {
		font-size: 16px;
	}
	
	.hero-girl {
		position: relative;
		right: auto;
		bottom: auto;
		max-height: 180px;
		width: auto;
		order: 2;
		margin: 0 auto;
	}
	
	/* Header */
	.header {
		flex-direction: column;
		align-items: center;
		gap: 10px;
		padding: 15px 10px;
		height: auto !important;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background: rgba(34, 27, 37, 0.95);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}
	
	.logo {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	
	.logo img {
		height: 40px;
	}
	
	.header-right {
		width: 100%;
		display: flex !important;
		justify-content: center !important;
		align-items: center;
		gap: 10px;
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	
	.online-counter {
		font-size: 11px;
	}
	
	.btn-register {
		padding: 6px 12px;
		font-size: 11px;
	}
	
	.btn-login {
		font-size: 11px;
	}
	
	/* Footer */
	.footer-top {
		padding: 15px 10px;
	}
	
	.footer-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 5px;
	}
	
	.footer-link {
		font-size: 11px;
		padding: 5px 6px;
	}
	
	.footer-language {
		padding: 15px 0;
	}
	
	.footer-license {
		flex-direction: column;
		text-align: center;
		gap: 15px;
		padding: 15px;
	}
	
	.license-text {
		max-width: 100%;
	}
	
	.footer-providers {
		padding: 20px 10px;
		gap: 10px 10px;
	}
	
	.provider-logo {
		width: calc(25% - 10px);
	}
	
	.provider-logo img {
		max-width: 60px;
		max-height: 30px;
	}
	
	.footer-payment {
		padding: 10px 15px;
		gap: 10px;
	}
	
	.payment-logo img {
		max-height: 25px;
	}
}

/* Маленькие мобильные */
@media (max-width: 480px) {
	.games-grid { 
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	
	.hero-title {
		font-size: 24px;
	}
	
	.hero-subtitle {
		font-size: 16px;
	}
	
	.hero-girl {
		max-height: 150px;
	}
	
	.nav-row-1 {
		gap: 5px;
	}
	
	.nav-link {
		font-size: 11px;
		gap: 3px;
	}
	
	.badge-new {
		font-size: 8px;
		padding: 1px 4px;
	}
	
	.cat-link {
		font-size: 12px;
	}
	
	.footer-link {
		font-size: 10px;
	}
	
	.provider-logo {
		width: calc(33.33% - 10px);
	}
	
	.provider-logo img {
		max-width: 50px;
		max-height: 25px;
	}
	
	.license-gcb img {
		width: 50px;
	}
	
	.license-age img {
		width: 35px;
		height: 35px;
	}
	
	.license-text,
	.license-age p {
		font-size: 9px;
	}
}
