
* {
	box-sizing: border-box;
	margin: 0;
}
a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
}

/* Оптимизированные стили для скорости загрузки */
body {
	max-width: 1300px;
	margin: 0 auto;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	background-color: #051114;
	color: #ffffff;
	padding-top: 80px;
	/* Упрощенный фон без параллакса для скорости */
	background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0.03) 0%, transparent 50%), 
	                  radial-gradient(circle at bottom right, #d61ae015 0%, transparent 50%);
	background-size: 100% 100%;
	background-attachment: fixed;
	will-change: auto; /* Оптимизация для браузера */
}

/* Убрали стили у контейнеров - они не должны иметь собственных стилей */
.conteiner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 15px;
}

/* Новая структура шапки - все на одном уровне */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, #113741 0%, #051114 50%, #133d48 100%);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.3s ease, backdrop-filter 0.3s ease;
	border-radius: 0 0 20px 20px;
	font-family: 'Montserrat', 'Open Sans', sans-serif;
}

.site-header.header-scrolled {
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(17, 55, 65, 0.88) 50%, rgba(0, 0, 0, 0.92) 100%);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.header-wrapper {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 25px;
	gap: 30px;
}

.header_logo {
	flex-shrink: 0;
}

.header_logo img {
	height: 45px;
	width: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.header_logo img:hover {
	transform: scale(1.05);
}

.header_button {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
	align-items: center;
}

.header-register-btn {
	position: relative;
	padding-right: 50px;
}

.register-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
	color: #000;
	font-size: 11px;
	font-weight: 900;
	padding: 3px 8px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
	white-space: nowrap;
	z-index: 10;
}

/* Навигационное меню - по центру */
.navigation {
	display: flex;
	gap: 4px;
	flex: 1;
	justify-content: center;
	align-items: center;
}

.nav-icon {
	font-size: 16px;
	margin-right: 4px;
}

.nav-link {
	color: #ffffff;
	padding: 10px 18px;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 14px;
	font-weight: 600;
	font-family: 'Montserrat', 'Open Sans', sans-serif;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	background: transparent;
}

.nav-link:hover {
	background: linear-gradient(135deg, rgba(214, 26, 224, 0.25) 0%, rgba(214, 26, 224, 0.15) 50%, rgba(214, 26, 224, 0.2) 100%);
	border-color: #d61ae0;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(214, 26, 224, 0.4);
}

.nav-link.active {
	background: linear-gradient(135deg, #d61ae0 0%, #ff22ff 50%, #eb1df6 100%);
	border-color: #d61ae0;
	box-shadow: 0 4px 15px rgba(214, 26, 224, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	color: #fff;
	font-weight: 700;
}

/* Breadcrumbs стили */
.breadcrumbs {
	margin: 20px auto;
	max-width: 1300px;
	padding: 0 15px;
	font-size: 14px;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 8px;
	align-items: center;
}
.breadcrumbs li {
	margin: 0;
	padding: 0;
}
.breadcrumbs li:not(:last-child)::after {
	content: "›";
	margin-left: 8px;
	color: #d61ae0;
	font-weight: bold;
}
.breadcrumbs a {
	color: #d61ae0;
	text-decoration: none;
	transition: opacity 0.3s;
}
.breadcrumbs a:hover {
	opacity: 0.8;
	text-decoration: underline;
}
.breadcrumbs span {
	color: #ffffff;
}
@media (max-width: 768px) {
	.breadcrumbs {
		font-size: 12px;
		margin: 15px auto;
	}
}

@media (max-width: 768px) {
	body {
		padding-top: 120px; 
	}
	
	.header-wrapper {
		flex-wrap: wrap;
		padding: 10px 15px;
		gap: 12px;
	}
	
	.header_logo img {
		height: 35px;
	}
	
	.navigation {
		order: 3;
		width: 100%;
		justify-content: flex-start;
		gap: 6px;
	}
	
	.header_button {
		gap: 8px;
		flex-wrap: wrap;
	}
	
	.header_button .btn {
		padding: 8px 14px;
		font-size: 12px;
	}
	
	.nav-link {
		font-size: 12px;
		padding: 6px 10px;
	}
	
	.header-register-btn {
		padding-right: 45px;
		font-size: 12px;
		padding-left: 12px;
		padding-top: 8px;
		padding-bottom: 8px;
	}
	
	.register-badge {
		font-size: 9px;
		padding: 2px 6px;
		top: -6px;
		right: -6px;
	}
}

.btn {
	border: 1px solid #d61ae0;
	display: inline-block;
	padding: 12px 24px;
	background-color: #d61ae0;
	color: #ffffff;
	border-radius: 12px;
	cursor: pointer;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-transform: uppercase;
	font-weight: 700;
	font-family: 'Montserrat', 'Open Sans', sans-serif;
}
.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
	.btn {
		 width: 100%;
		 text-align: center;
		 padding: 10px;
		 font-size: 14px;
	}
}
@keyframes glow {
	0%, 100% { box-shadow: 0 0 5px #d61ae0; }
	50% { box-shadow: 0 0 15px #d61ae0; }
}
.glowing {
	animation: glow 2s ease-in-out infinite;
	will-change: box-shadow; /* Оптимизация анимации */
}

.button_1 {
	background: linear-gradient(135deg, #d61ae0 0%, #ff22ff 50%, #f61eff 100%);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(214, 26, 224, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	font-family: 'Montserrat', 'Open Sans', sans-serif;
}
.button_1:hover {
	background: linear-gradient(135deg, #f61eff 0%, #d61ae0 50%, #ff21ff 100%);
	box-shadow: 0 6px 25px rgba(214, 26, 224, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}
.button_2 {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.12) 100%);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	font-family: 'Montserrat', 'Open Sans', sans-serif;
}
.button_2:hover {
	background: linear-gradient(135deg, #d61ae0 0%, #ff21ff 50%, #eb1df6 100%);
	border-color: #d61ae0;
	box-shadow: 0 4px 15px rgba(214, 26, 224, 0.4);
	transform: translateY(-2px);
}
/* Стилизация для кнопки слотов */
.button_3 {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	border: none;
	color: #fff;
	transition: all 0.3s ease;
}

.button_3:hover {
	background: linear-gradient(135deg, #ee5a6f 0%, #ff6b6b 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.button_4 {
	width: 100%;
	text-align: center;
	padding: 10px 0;
	font-size: 14px;
	background: linear-gradient(135deg, #d61ae0 0%, #ff1fff 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	margin-top: 12px;
	box-shadow: 0 2px 8px rgba(214, 26, 224, 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.button_4:hover {
	background: linear-gradient(135deg, #eb1df6 0%, #d61ae0 100%);
	box-shadow: 0 4px 15px rgba(214, 26, 224, 0.5);
	transform: translateY(-2px);
}

h1:not(.hero-welcome-title):not(.page-main-title) {
	font-size: 50px;
	text-align: center;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.2;
	font-family: 'Montserrat', 'Open Sans', sans-serif;
}

h2 {
	font-family: 'Montserrat', 'Open Sans', sans-serif;
}

h3 {
	font-family: 'Montserrat', 'Open Sans', sans-serif;
}
@media (max-width: 768px) {
	h1:not(.hero-welcome-title):not(.page-main-title) {
		font-size: 30px;
	}
}
h2 {
	font-size: 38px; 
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
	color: #ffffff;
	text-shadow: 0 0 10px rgba(23, 0, 156, 0.5); /* Добавление свечения */
}
@media (max-width: 768px) {
	h2 {
		font-size: 28px;
		margin-top: 20px;
		margin-bottom: 20px;
	}
}
/* Заголовок страницы */
.page-title-section {
	max-width: 1300px;
	margin: 30px auto 20px;
	padding: 0 15px;
}

.page-main-title {
	font-size: 36px;
	font-weight: 900;
	color: #d61ae0;
	text-align: center;
	margin: 0;
	line-height: 1.3;
	text-shadow: 0 0 20px rgba(214, 26, 224, 0.4);
}

@media (max-width: 768px) {
	.page-main-title {
		font-size: 28px;
	}
}

/* Главная секция hero как у 1win */
.hero-main-section {
	max-width: 1300px;
	margin: 30px auto;
	padding: 0 15px;
}

.hero-main-container {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 30px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.hero-main-content {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.hero-leader-banner {
	background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
	color: #000;
	padding: 10px 20px;
	border-radius: 12px;
	font-weight: 900;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.leader-icon {
	font-size: 18px;
}

.hero-welcome-title {
	font-size: 42px;
	font-weight: 900;
	color: #fff;
	margin: 0;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-features-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.hero-feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
}

.feature-icon {
	font-size: 24px;
}

.hero-stats {
	display: flex;
	gap: 40px;
	margin: 20px 0;
}

.hero-stat-item {
	text-align: center;
}

.hero-stat-number {
	font-size: 48px;
	font-weight: 900;
	color: #d61ae0;
	line-height: 1;
	margin-bottom: 8px;
	text-shadow: 0 0 20px rgba(214, 26, 224, 0.5);
}

.hero-stat-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-action-buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 10px;
}

.hero-main-cta {
	padding: 18px 40px;
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 100%;
}

.hero-secondary-cta {
	padding: 14px 30px;
	font-size: 16px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.cta-icon {
	font-size: 20px;
}

/* Бонусная карточка справа */
.hero-bonus-card {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.hero-bonus-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 0.3; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(1.1); }
}

.bonus-card-content {
	position: relative;
	z-index: 1;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 100%;
}

.bonus-card-title {
	font-size: 24px;
	font-weight: 900;
	margin: 0;
	line-height: 1.3;
}

.bonus-card-text {
	font-size: 14px;
	line-height: 1.6;
	opacity: 0.95;
	margin: 0;
}

.bonus-card-number {
	font-size: 72px;
	font-weight: 900;
	color: #ffd700;
	text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
	line-height: 1;
	margin: 10px 0;
	text-align: center;
}

.bonus-card-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: auto;
}

.bonus-card-cta {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	border: none;
	padding: 14px 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	width: 100%;
}

.bonus-card-details {
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 12px 20px;
	font-weight: 600;
	width: 100%;
}

@media (max-width: 1024px) {
	.hero-main-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.hero-bonus-card {
		order: -1;
	}
}

@media (max-width: 768px) {
	.hero-main-section {
		margin: 20px auto;
		padding: 0 10px;
	}
	
	.hero-main-container {
		padding: 25px 20px;
		gap: 25px;
	}
	
	.hero-welcome-title {
		font-size: 32px;
	}
	
	.hero-features-list {
		flex-direction: column;
		gap: 15px;
	}
	
	.hero-stats {
		flex-direction: column;
		gap: 25px;
		align-items: center;
	}
	
	.hero-stat-number {
		font-size: 40px;
	}
	
	.hero-main-cta {
		padding: 16px 30px;
		font-size: 16px;
	}
	
	.bonus-card-number {
		font-size: 56px;
	}
}

/* Контейнер для блоков перед футером */
.content-blocks-before-footer {
	max-width: 1300px;
	margin: 40px auto;
	padding: 0 15px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* Новый hero блок с контентом */
.main-hero-block {
	max-width: 1300px;
	margin: 30px auto;
	padding: 0 15px;
}

.main-hero-block h1 {
	text-align: center;
	margin-bottom: 30px;
}

/* Основной текст контента */
.main_text {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 24px;
	padding: 45px 35px;
	margin: 30px 0;
	box-shadow: 
		0 20px 60px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.05) inset;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	position: relative;
	overflow: hidden;
	color: #ffffff;
	line-height: 1.8;
}

.main_text::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #d61ae0, transparent);
	opacity: 0.6;
}

.main_text p {
	font-size: 17px; 
	font-weight: 400;
	color: #ffffff;
	line-height: 1.9; 
	margin-bottom: 20px;
}
@media (max-width: 768px) {
	.photo {
		width: 100%;
		margin-bottom: 20px;
	}
}
.main h1 {
	margin-bottom: 50px;
	/* Убеждаемся, что заголовок видим */
	visibility: visible !important;
	opacity: 1 !important;
	color: #ffffff !important;
}
@media (max-width: 768px) {
	.main h1 {
		margin-bottom: 20px;
	}
}

/* Стили для секции слотов */
.slots_conteiner {
	padding: 40px 15px;
	flex-direction: column;
	align-items: flex-start;
}
.slots {
	width: 100%;
	text-align: center;
}
.slots_grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 25px;
	padding-bottom: 40px;
}
@media (max-width: 768px) {
	.slots_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
}
.slot_item {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	overflow: hidden;
	padding: 18px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}
.slot_item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(214, 26, 224, 0.1) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
}
.slot_item:hover {
	transform: translateY(-8px) scale(1.03);
	border-color: #d61ae0;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(214, 26, 224, 0.5);
	background: rgba(255, 255, 255, 0.08);
}
.slot_item:hover::after {
	opacity: 1;
}
.slot_img {
	width: 100%;
	height: auto;
	max-height: 150px;
	border-radius: 5px;
	object-fit: cover;
	display: block;
}
.slot_name {
	font-size: 16px;
	font-weight: 500;
	margin-top: 10px;
	color: #ffffff;
	text-align: center;
}

/* Оптимизированные стили для анимации появления - ВСЕГДА ВИДИМЫ */
.fade-in, .fade-in-item {
    opacity: 1 !important;
    transform: translateY(0);
    transition: none;
    will-change: auto;
}
.fade-in.visible, .fade-in-item.visible {
    opacity: 1 !important;
    transform: translateY(0);
    will-change: auto;
}
/* Задержка для элементов сетки */
.slots_grid .fade-in-item:nth-child(2) { transition-delay: 0.1s; }
.slots_grid .fade-in-item:nth-child(3) { transition-delay: 0.2s; }
.slots_grid .fade-in-item:nth-child(4) { transition-delay: 0.3s; }
.slots_grid .fade-in-item:nth-child(5) { transition-delay: 0.4s; }
.slots_grid .fade-in-item:nth-child(6) { transition-delay: 0.5s; }
.slots_grid .fade-in-item:nth-child(7) { transition-delay: 0.6s; }
.slots_grid .fade-in-item:nth-child(8) { transition-delay: 0.7s; }


/* Стили для popup */
.popup {
	width: 470px;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #113741;
	color: #ffffff;
	border-radius: 20px;
	padding: 20px 25px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); 
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
	border: 1px solid #d61ae0; /* Добавлена рамка акцента */
}
@media (max-width: 768px) {
	.popup {
		width: 95%;
		padding: 6px;
		gap: 10px;
		border-radius: 10px;
	}
}
.popup_block {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;	
}
@media (max-width: 768px) {
	.popup_block {
		display: flex;
		justify-content: space-around;	
	}
}

.popup.show {
	opacity: 1;
	visibility: visible;
}

.popup-close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	font-size: 24px; 
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 6px;
	transition: color 0.2s;
}
.popup-close:hover {
	color: #ffffff;
}
@media (max-width: 768px) {
	.popup-close {
		font-size: 18px;
		right: 6px;
		top: 3px;
	}
}
.block_img img {
	width: 80px;
	height: 80px;
	object-fit: contain;
}
@media (max-width: 768px) {
	.block_img img {
		width: 60px;
		height: 60px;
	}
}
.block_txt {
	width: 40%;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.block_txt span {
	font-size: 40px; /* Крупнее */
	color: #d61ae0; /* Цвет акцента */
	font-weight: 900;
}
@media (max-width: 768px) {
	.block_txt span {
		font-size: 28px;
	}
}
.block_txt p {
	color: #ffffff;
	font-size: 18px;
}
@media (max-width: 768px) {
	.block_txt p {
		font-size: 14px;
	}
}
.block_btn {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
}
@media (max-width: 768px) {
	.block_btn {
		font-size: 14px;
	}
}

/* Дополнительные стили для сгенерированного контента */
h3 {
  font-size: 28px; 
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 4px solid #d61ae0;
  padding-left: 10px;
}

ul, ol {
  padding-left: 40px; 
  margin-bottom: 20px;
  list-style: disc; 
}

li {
  font-size: 16px; 
  margin-bottom: 10px;
  line-height: 1.6;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 14px;
}

th, td {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px;
  text-align: left;
}

th {
  background-color: rgba(23, 0, 156, 0.5); /* Использован цвет акцента */
  font-weight: bold;
}

/* Дополнительные оптимизации для скорости загрузки */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  max-width: 100%;
  height: auto;
  loading: lazy; /* Ленивая загрузка изображений */
}

/* Оптимизация для мобильных устройств */
@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Preload критичных ресурсов */
.logo {
  content-visibility: auto;
}

/* Улучшение производительности скролла */
main {
  contain: layout style paint;
  /* Убеждаемся, что main видим */
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}

/* ===== Варианты фонов для уникальности ===== */
body {
	background-image: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 30%), radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06) 0%, transparent 35%), radial-gradient(circle at 80% 0%, rgba(214,26,224,0.25) 0%, transparent 50%);
}

/* ===== Layout B ===== */
.layout-b .hero_split {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	align-items: center;
	padding: 30px 15px 10px;
}
.layout-b .hero_left h1 { text-align: left; }
.layout-b .lead { margin: 10px 0 20px; opacity: 0.9; }
.layout-b .cta_stack { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.layout-b .hero_bullets { list-style: disc; padding-left: 20px; opacity: 0.85; }
.layout-b .hero_bullets li { margin-bottom: 8px; }
.layout-b .hero_right .photo { max-width: 100%; }
.layout-b .slots_grid.tight { gap: 18px; }

/* ===== Layout C ===== */
.layout-c .ribbon-block { position: relative; overflow: hidden; }
.layout-c .ribbon {
	background: linear-gradient(90deg, #d61ae0, #113741);
	padding: 12px 18px;
	border-radius: 10px;
	color: #fff;
	margin-bottom: 20px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
.layout-c .ribbon span { font-size: 14px; display: block; opacity: 0.9; }
.layout-c .ribbon strong { font-size: 20px; }
.layout-c .cta_row { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }
.features_grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
	gap: 18px;
	width: 100%;
	padding: 10px 0 30px;
}
.feature_card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}
.feature_card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #d61ae0, #ff22ff);
	opacity: 0;
	transition: opacity 0.3s;
}
.feature_card:hover {
	transform: translateY(-5px);
	border-color: #d61ae0;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(214, 26, 224, 0.3);
	background: rgba(255, 255, 255, 0.08);
}
.feature_card:hover::before {
	opacity: 1;
}
.feature_card h3 { 
	margin: 0 0 12px; 
	border: none; 
	padding: 0; 
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 10px;
}
.feature_card p {
	margin: 0;
	opacity: 0.9;
	line-height: 1.6;
}
.features_grid.spaced { margin-top: 10px; }
.feature_card.ghost { 
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(255, 255, 255, 0.05);
}

/* ===== Layout D ===== */
.perks_bar {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	padding: 10px 15px 0;
}
.perk {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 12px;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 10px;
	background: rgba(0,0,0,0.35);
}
.perk_icon { font-size: 26px; }
.hero_line {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	align-items: center;
	padding: 20px 15px;
}
.hero_line .lead { margin: 10px 0 20px; opacity: 0.9; }
.hero_media .photo.slim { max-width: 320px; margin: 0 auto; display: block; }
.slots_conteiner.tight-top { padding-top: 10px; }
.slots.compact .slot_item.mini { padding: 10px; }
.slots_grid.compact-grid { gap: 15px; }

/* ===== Layout E ===== */
.layout-e .minimal { max-width: 900px; margin: 0 auto; text-align: center; }
.layout-e .cta_row { justify-content: center; gap: 12px; margin: 10px 0 20px; display: flex; flex-wrap: wrap; }
.layout-e .alt-grid { gap: 18px; }

/* Reviews & FAQ */
.reviews_conteiner, .faq_conteiner { padding: 30px 15px; }
.reviews_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 16px;
}
.review_card {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.review_author { font-weight: 700; margin-bottom: 6px; color: #d61ae0; }
.faq_list { display: grid; gap: 10px; }
.faq_item {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
}
.faq_q { font-weight: 700; margin-bottom: 6px; }
.faq_a { opacity: 0.9; }

/* Дополнительные стили для FAQ из getGPT.php */
.faq-block {
  padding: 30px 15px;
  margin: 20px 0;
}

.faq-block h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.faq-question {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 16px;
  color: #ffffff;
}

.faq-answer {
  opacity: 0.9;
  line-height: 1.6;
  color: #ffffff;
}

.faq-answer div {
  color: inherit;
}

/* Стили для отзывов из getGPT.php */
.review-block, .reviews-block {
  padding: 30px 15px;
  margin: 20px 0;
}

.review-block h2, .reviews-block h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.review-item, .review-card {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  margin-bottom: 16px;
}

.review-author {
  font-weight: 700;
  margin-bottom: 6px;
  color: #d61ae0;
}

.review-text {
  opacity: 0.9;
  line-height: 1.6;
  color: #ffffff;
}

/* ===== Стили для блоков доверия и конверсионных элементов ===== */
.trust-badges-section {
  padding: 50px 15px;
  margin: 40px 0;
}

.trust-badges-container {
  text-align: center;
}

.trust-section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffffff;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.trust-badge-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.trust-badge-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: #d61ae0;
}

.trust-badge-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.trust-badge-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.trust-badge-text {
  font-size: 14px;
  opacity: 0.9;
  color: #ffffff;
}

/* Блок преимуществ */
.advantages-section {
  padding: 50px 15px;
  margin: 40px 0;
}

.advantages-container {
  text-align: center;
}

.advantages-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffffff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.advantage-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border-color: #d61ae0;
  background: linear-gradient(135deg, #d61ae020 0%, rgba(255, 255, 255, 0.05) 100%);
}

.advantage-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.advantage-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.advantage-card-text {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  color: #ffffff;
}

/* Блок платежных методов - в цветах бренда */
.payment-methods-section {
  padding: 50px 15px;
  margin: 40px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: relative;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.payment-methods-container {
  text-align: center;
}

.payment-methods-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.payment-methods-subtitle {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 32px;
  color: #ffffff;
}

.payment-methods-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.payment-method-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.payment-method-item:hover {
  background: linear-gradient(145deg, rgba(214, 26, 224, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-color: #d61ae0;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(214, 26, 224, 0.3);
}

/* Блок рейтинга */
.rating-section {
  padding: 40px 15px;
  margin: 30px 0;
  text-align: center;
}

.rating-container {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 48px;
}

.rating-stars {
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 12px;
  letter-spacing: 4px;
}

.star.filled {
  color: #ffd700;
}

.star.half {
  background: linear-gradient(90deg, #ffd700 50%, #ccc 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.star {
  color: #ccc;
}

.rating-value {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.rating-count {
  font-size: 16px;
  opacity: 0.8;
  color: #ffffff;
}

/* CTA блок с таймером - в цветах бренда, сливается с контентом */
.cta-block-section {
  padding: 60px 15px;
  margin: 50px auto;
  max-width: 1300px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: relative;
  overflow: hidden;
}

.cta-block-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.cta-block-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-block-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-block-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta-block-text {
  font-size: 20px;
  margin-bottom: 32px;
  color: #ffffff;
  opacity: 0.95;
}

.cta-block-timer {
  margin: 32px 0;
  padding: 24px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  display: inline-block;
}

.timer-label {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.9;
  color: #ffffff;
}

.timer-display {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 70px;
}

.timer-value {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.timer-item .timer-label {
  font-size: 12px;
  margin-top: 4px;
  margin-bottom: 0;
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-button-primary {
  font-size: 18px;
  padding: 16px 32px;
  min-height: 56px;
  font-weight: 700;
}

.cta-button-secondary {
  font-size: 16px;
  padding: 14px 28px;
  min-height: 52px;
}

/* Адаптивность для блоков доверия */
@media (max-width: 768px) {
  .trust-badges-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-block-title {
    font-size: 24px;
  }
  
  .cta-block-text {
    font-size: 16px;
  }
  
  .timer-display {
    gap: 8px;
  }
  
  .timer-item {
    min-width: 60px;
    padding: 10px 12px;
  }
  
  .timer-value {
    font-size: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-button-primary,
  .cta-button-secondary {
    width: 100%;
  }
}

/* ===== Стили для блоков слотов из slot_blocks (Прогрессивные джекпоты, Категории игр, Новинки 2025) ===== */
.info-block {
  padding: 40px 15px;
  margin: 30px 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.info-block.gradient-bg {
  background: linear-gradient(135deg, rgba(23, 0, 156, 0.15) 0%, rgba(0,0,0,0.4) 50%, rgba(23, 0, 156, 0.15) 100%);
  position: relative;
  overflow: hidden;
}

.info-block.gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  animation: shimmer 3s infinite;
}

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

.info-block h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.info-block h2.text-glow-animation {
  background: linear-gradient(90deg, #ffffff, #d61ae0, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 3s linear infinite;
}

@keyframes textGlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.info-block > p {
  text-align: center;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  color: #ffffff;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .info-block h2 {
    font-size: 24px;
  }
}

.slot-card {
  background: linear-gradient(145deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d61ae0, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slot-card:hover {
  transform: translateY(-8px);
  border-color: #d61ae0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 20px rgba(23, 0, 156, 0.4);
}

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

.slot-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.slot-card:hover .slot-image {
  transform: scale(1.05);
}

.slot-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #ffffff;
  text-align: center;
}

.slot-rtp {
  font-size: 14px;
  font-weight: 600;
  color: #d61ae0;
  margin: 0 0 10px 0;
  text-align: center;
}

.slot-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  margin: 0 0 12px 0;
  text-align: center;
  min-height: 40px;
}

.slot-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 10px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(23, 0, 156, 0.3);
  border: 1px solid rgba(23, 0, 156, 0.5);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge:hover {
  background: rgba(23, 0, 156, 0.5);
  border-color: #d61ae0;
}

/* Анимации для карточек */
.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.hover-lift {
  transition: transform 0.3s ease;
}

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

.float-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Стили для Подборки недели (только картинки) */
.slot_item.weekly-pick {
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.slot_item.weekly-pick:hover {
  border-color: #d61ae0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5), 0 0 15px rgba(23, 0, 156, 0.5);
  transform: translateY(-5px) scale(1.03);
}

.slot_item.weekly-pick .slot_img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.slot_item.weekly-pick:hover .slot_img {
  transform: scale(1.1);
}

/* Стили для интерактивных блоков из getGPT.php */
/* Stats Widget */
.stats-widget {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.stats-header h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.stats-update {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 15px;
}

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

.stat-item {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #d61ae0;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

/* Success Story */
.success-story {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.story-header {
  margin-bottom: 15px;
}

.story-header h3 {
  margin-bottom: 5px;
}

.story-badge {
  display: inline-block;
  background: #d61ae0;
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.story-content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.story-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d61ae0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.story-text {
  flex: 1;
}

.story-text p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.story-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}

.story-player {
  font-weight: 700;
  color: #d61ae0;
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  margin: 20px 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0,0,0,0.2);
}

.comparison-table th {
  background: rgba(0,0,0,0.4);
  padding: 12px;
  text-align: left;
  font-weight: 700;
}

.comparison-table td {
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.comparison-table td.best {
  background: rgba(23, 156, 0, 0.2);
  color: #d61ae0;
  font-weight: 700;
}

.comparison-note {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 10px;
  font-style: italic;
}

/* Expert Block */
.expert-block {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #d61ae0;
}

.expert-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.expert-icon {
  font-size: 32px;
}

.expert-header h3 {
  margin: 0;
  border: none;
  padding: 0;
}

.expert-quote {
  margin-bottom: 15px;
  font-style: italic;
  line-height: 1.6;
}

.expert-quote p {
  margin: 0;
}

.expert-info {
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.expert-name {
  font-weight: 700;
  font-size: 16px;
  color: #d61ae0;
  margin-bottom: 5px;
}

.expert-title {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 3px;
}

.expert-exp {
  font-size: 12px;
  opacity: 0.7;
}

/* Interactive Guide */
.interactive-guide {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.interactive-guide h3 {
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.guide-step {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
}

.guide-step.completed {
  border-left: 4px solid #4caf50;
}

.guide-step.pending {
  border-left: 4px solid rgba(255,255,255,0.3);
  opacity: 0.7;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #d61ae0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.step-text {
  flex: 1;
  font-weight: 500;
}

.step-connector {
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  margin-left: 15px;
}

.guide-note {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Bonus Calculator */
.bonus-calculator {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.calculator-header {
  margin-bottom: 20px;
}

.calculator-header h3 {
  margin-bottom: 5px;
  border: none;
  padding: 0;
}

.calculator-header p {
  opacity: 0.8;
  margin: 0;
}

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

.calculator-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calculator-input label {
  font-weight: 700;
  font-size: 14px;
}

.calculator-input input {
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(0,0,0,0.3);
  color: #ffffff;
  font-size: 16px;
}

.calculator-button {
  padding: 12px 24px;
  background: #d61ae0;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.calculator-button:hover {
  opacity: 0.9;
}

.calculator-result {
  margin-top: 15px;
  padding: 15px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.result-item:last-child {
  border-bottom: none;
}

/* ===== Дополнительные улучшения стилизации ===== */

/* Улучшенные стили для ribbon (лента с акцией) */
.ribbon {
  background: linear-gradient(135deg, #d61ae0 0%, #ff22ff 100%);
  padding: 12px 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(214, 26, 224, 0.4);
  animation: pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}
.ribbon span {
  display: block;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}
.ribbon strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

/* Дополнительные улучшения для информационных блоков */
.cta_row {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}
.cta_row .btn {
  min-width: 200px;
}

/* Стили для смайликов/иконок в тексте */
.main_text emoji,
.main_text .icon {
  font-style: normal;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  font-size: 1.2em;
  line-height: 1;
}

/* Улучшенные стили для важных блоков */
.important-block {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.important-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  animation: shimmer 2s infinite;
}
.important-block strong {
  color: #ffd700;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}


.result-label {
  font-weight: 500;
  opacity: 0.9;
}

.result-value {
  font-size: 24px;
  font-weight: 700;
  color: #d61ae0;
}

/* Общие вспомогательные */
.framed { box-shadow: 0 12px 28px rgba(0,0,0,0.35); border: 2px solid rgba(255,255,255,0.05); }

/* ===== Стили для табов (Layout G) ===== */
.tabs_container {
  width: 100%;
}

.tabs_nav {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.tab_btn {
  padding: 12px 24px;
  background: rgba(0,0,0,0.3);
  border: none;
  border-bottom: 3px solid transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.tab_btn:hover {
  background: rgba(255,255,255,0.1);
  color: #d61ae0;
}

.tab_btn.active {
  background: rgba(0,0,0,0.5);
  border-bottom-color: #d61ae0;
  color: #d61ae0;
}

.tabs_content {
  position: relative;
  min-height: 200px;
}

.tab_panel {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.tab_panel.active {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
}

/* Убеждаемся, что контент в активном табе видим */
.tab_panel.active .main_text {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ===== Улучшенные анимации (легкие и оптимизированные) ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Применяем легкие анимации */
.animate-float {
  animation: float 3s ease-in-out infinite;
  will-change: transform;
}
.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}
.animate-slide-up {
  animation: slideInUp 0.6s ease-out;
}

/* Оптимизация анимаций для производительности */
@media (prefers-reduced-motion: reduce) {
  .animate-float,
  .animate-pulse,
  .animate-slide-up,
  .glowing {
    animation: none;
  }
}

/* Улучшенные стили для важных блоков */
.important-block {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}
.important-block strong {
  color: #ffd700;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

/* Улучшенные стили для ribbon (лента с акцией) */
.ribbon {
  background: linear-gradient(135deg, #d61ae0 0%, #ff22ff 100%);
  padding: 12px 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(214, 26, 224, 0.4);
  animation: pulse 2s ease-in-out infinite;
}
.ribbon span {
  display: block;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 5px;
}
.ribbon strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== УЛУЧШЕННЫЕ СТИЛИ ДЛЯ ПАРЯЩИХ БЛОКОВ (как на 154.casino) ===== */

/* Стили только для блоков с контентом (убрали section и .main_conteiner) */
.info-block,
.advantages-section,
.trust-badges-section,
.payment-methods-section,
.rating-section,
.cta-block-section,
.popular-queries-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px 30px;
  margin: 30px auto;
  max-width: 1300px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: floatIn 0.6s ease-out;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Эффект парения при наведении */
.info-block:hover,
.popular-queries-section:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(214, 26, 224, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 1px 0 rgba(255, 255, 255, 0.15) inset;
  border-color: rgba(214, 26, 224, 0.4);
}

/* Улучшенный основной контент */
.main {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 50px 40px;
  margin: 20px auto;
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(214, 26, 224, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.main:hover::before {
  opacity: 1;
}

.main:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 35px 90px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(214, 26, 224, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border-color: rgba(214, 26, 224, 0.3);
}

/* Улучшенный текст контента */
.main_text {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  margin: 25px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) inset;
  position: relative;
  line-height: 1.8;
}

.main_text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d61ae0, transparent);
  opacity: 0.6;
}

/* Улучшенные карточки фич */
.feature_card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px 28px;
  border-radius: 22px;
  box-shadow: 
    0 15px 45px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: floatCard 0.8s ease-out backwards;
}

@keyframes floatCard {
  from {
    opacity: 0;
    transform: translateY(20px) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* Задержка анимации для каждой карточки */
.feature_card:nth-child(1) { animation-delay: 0.1s; }
.feature_card:nth-child(2) { animation-delay: 0.2s; }
.feature_card:nth-child(3) { animation-delay: 0.3s; }
.feature_card:nth-child(4) { animation-delay: 0.4s; }

.feature_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d61ae0, #ff24ff, #d61ae0);
  opacity: 0;
  transition: opacity 0.4s;
  box-shadow: 0 0 20px rgba(214, 26, 224, 0.6);
}

.feature_card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(214, 26, 224, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.feature_card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: #d61ae0;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(214, 26, 224, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.feature_card:hover::before {
  opacity: 1;
}

.feature_card:hover::after {
  opacity: 1;
}

/* Улучшенные карточки слотов */
.slot_item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: slotFloatIn 0.6s ease-out backwards;
}

@keyframes slotFloatIn {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Задержка для каждой карточки слота */
.slot_item:nth-child(1) { animation-delay: 0.05s; }
.slot_item:nth-child(2) { animation-delay: 0.1s; }
.slot_item:nth-child(3) { animation-delay: 0.15s; }
.slot_item:nth-child(4) { animation-delay: 0.2s; }
.slot_item:nth-child(5) { animation-delay: 0.25s; }
.slot_item:nth-child(6) { animation-delay: 0.3s; }

.slot_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(214, 26, 224, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  border-radius: 20px;
}

.slot_item:hover {
  transform: translateY(-15px) scale(1.05) rotateY(2deg);
  border-color: #d61ae0;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 35px rgba(214, 26, 224, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.slot_item:hover::before {
  opacity: 1;
}

.slot_img {
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.slot_item:hover .slot_img {
  transform: scale(1.08) rotateZ(1deg);
}

/* Улучшенные информационные блоки */
.info-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 45px 35px;
  margin: 35px auto;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.info-block:hover::before {
  left: 100%;
}

.info-block:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(214, 26, 224, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border-color: rgba(214, 26, 224, 0.4);
}

.info-block h2 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.info-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d61ae0, transparent);
  border-radius: 2px;
}

/* Улучшенные заголовки */
h1, h2 {
  position: relative;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(214, 26, 224, 0.3);
}

h2 {
  margin-bottom: 40px;
  padding-bottom: 20px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d61ae0, transparent);
  border-radius: 2px;
}

/* Улучшенные параграфы в контенте */
.main_text p,
.info-block p {
  margin-bottom: 20px;
  line-height: 1.9;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
}

/* Улучшенные списки */
.main_text ul,
.main_text ol,
.info-block ul,
.info-block ol {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 25px 40px;
  margin: 25px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.main_text li,
.info-block li {
  margin-bottom: 12px;
  padding-left: 10px;
  line-height: 1.8;
}

/* Улучшенные таблицы */
.main_text table,
.info-block table {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.main_text th,
.info-block th {
  background: linear-gradient(135deg, rgba(214, 26, 224, 0.3) 0%, rgba(214, 26, 224, 0.2) 100%);
  padding: 18px;
  border-bottom: 2px solid rgba(214, 26, 224, 0.4);
}

.main_text td,
.info-block td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== СТИЛИ ДЛЯ БЛОКА ПОПУЛЯРНЫХ ЗАПРОСОВ ===== */
.popular-queries-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.popular-queries-container {
  text-align: center;
}

.popular-queries-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #ffffff;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(214, 26, 224, 0.3);
  position: relative;
  padding-bottom: 20px;
}

.popular-queries-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d61ae0, transparent);
  border-radius: 2px;
}

.popular-queries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.popular-query-tag {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popular-query-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.popular-query-tag:hover::before {
  left: 100%;
}

.popular-query-tag:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: #d61ae0;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(214, 26, 224, 0.4);
  color: #fff;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  section,
  .main_conteiner,
  .slots_conteiner,
  .info-block,
  .popular-queries-section {
    border-radius: 20px;
    padding: 25px 20px;
    margin: 20px 10px;
  }
  
  .main {
    border-radius: 22px;
    padding: 30px 20px;
  }
  
  .main_text {
    border-radius: 16px;
    padding: 25px 20px;
  }
  
  .feature_card {
    border-radius: 18px;
    padding: 24px 20px;
  }
  
  .slot_item {
    border-radius: 16px;
    padding: 15px;
  }
  
  .popular-queries-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .popular-queries-grid {
    gap: 10px;
  }
  
  .popular-query-tag {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* Оптимизация производительности */
@media (prefers-reduced-motion: reduce) {
  section,
  .main_conteiner,
  .feature_card,
  .slot_item,
  .info-block,
  .popular-queries-section {
    animation: none;
    transition: none;
  }
  
  section:hover,
  .main_conteiner:hover,
  .feature_card:hover,
  .slot_item:hover,
  .info-block:hover,
  .popular-queries-section:hover {
    transform: none;
  }
  
  .popular-query-tag:hover {
    transform: none;
  }
}

/* ===== СТИЛИ ДЛЯ БЛОКА БЕЗОПАСНОСТИ ===== */
.security-block {
  max-width: 1300px;
  margin: 30px auto;
  padding: 0 15px;
}

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

.security-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.security-item:hover {
  transform: translateY(-5px);
  border-color: #d61ae0;
  box-shadow: 0 10px 30px rgba(214, 26, 224, 0.3);
  background: linear-gradient(145deg, rgba(214, 26, 224, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.security-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.security-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: #ffffff;
}

.security-text {
  font-size: 13px;
  opacity: 0.9;
  color: #ffffff;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .security-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ===== СТИЛИ ДЛЯ ФУТЕРА (компактный с кнопками как в хедере) ===== */
.site-footer {
  background: linear-gradient(135deg, #051114 0%, #113741 50%, #061316 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 25px 0;
  position: relative;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}

.footer-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 25px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-section {
  color: #ffffff;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}

.footer-text {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.8;
  margin: 0;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 13px;
}

.footer-links a:hover {
  background: linear-gradient(135deg, rgba(214, 26, 224, 0.25) 0%, rgba(214, 26, 224, 0.15) 50%, rgba(214, 26, 224, 0.2) 100%);
  color: #d61ae0;
}

.footer-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-button {
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-button.login {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.12) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.footer-button.login:hover {
  background: linear-gradient(135deg, #d61ae0 0%, #ff21ff 50%, #eb1df6 100%);
  border-color: #d61ae0;
  box-shadow: 0 4px 15px rgba(214, 26, 224, 0.4);
}

.footer-button.register {
  background: linear-gradient(135deg, #d61ae0 0%, #ff22ff 50%, #f61eff 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 4px 15px rgba(214, 26, 224, 0.4);
  position: relative;
  padding-right: 45px;
}

.footer-button.register:hover {
  background: linear-gradient(135deg, #f61eff 0%, #d61ae0 50%, #ff21ff 100%);
  box-shadow: 0 6px 25px rgba(214, 26, 224, 0.6);
  transform: translateY(-2px);
}

.footer-button.register .register-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
  white-space: nowrap;
}

.footer-links a:hover {
  color: #d61ae0;
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-links {
    justify-content: center;
    gap: 15px;
  }
  
  .footer-text {
    font-size: 12px;
  }
  
  .footer-links a {
    font-size: 12px;
  }
}