/* Базовые настройки и контейнер */
body {
	margin: 0;
	font-family: Arial, sans-serif;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

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

/* Шапка */
.header {
	background-color: #f8f9fa;
	border-bottom: 1px solid #ddd;
	padding: 15px 0;
}

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

.logo {
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}

.nav a {
	margin-left: 20px;
	text-decoration: none;
	color: #555;
}

/* Контент и отступы */
.main-content {
	flex: 1;
	padding: 60px 0;
	/* Вертикальные отступы для контента */
}

h1 {
	margin-bottom: 30px;
	color: #222;
}

/* Футер */
.footer {
	background-color: #2c3e50;
	color: #fff;
	padding: 40px 0 20px;
	margin-top: 60px;
}

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

.footer-column h4 {
	margin-bottom: 15px;
	border-bottom: 1px solid #555;
	padding-bottom: 5px;
}

.footer-column a {
	display: block;
	color: #bdc3c7;
	text-decoration: none;
	margin-bottom: 8px;
	font-size: 14px;
}

.footer-column a:hover {
	color: #fff;
}

.footer-bottom {
	text-align: center;
	border-top: 1px solid #555;
	padding-top: 20px;
	font-size: 12px;
	color: #95a5a6;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {

	/* Уменьшаем отступы секции, чтобы контент был выше */
	.main-content {
		padding: 30px 0;
	}

	/* Шапка: центрируем логотип и навигацию */
	.header .container {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.nav a {
		margin: 0 10px;
		font-size: 14px;
	}

	/* Текст: уменьшаем заголовки для маленьких экранов */
	h1 {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}

	/* Футер: выстраиваем колонки в один столбец */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		text-align: center;
	}

	.footer-column h4 {
		margin-bottom: 10px;
		display: inline-block;
		width: 100%;
	}

	/* Увеличиваем область клика для ссылок в футере (удобство для пальцев) */
	.footer-column a {
		padding: 5px 0;
		font-size: 16px;
	}
}

/* Совсем маленькие экраны (iPhone SE и подобные) */
@media (max-width: 480px) {
	.nav {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}

	.nav a {
		margin: 0;
	}
}

.restriction-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.restriction-modal {
	position: relative;
	width: 100%;
	max-width: 380px;
	box-sizing: border-box;
	background: #1a1a1c;
	border-radius: 20px;
	padding: 40px 25px 25px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	text-align: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.restriction-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 28px;
	color: #ff453a;
	cursor: pointer;
	line-height: 1;
	transition: color 0.2s;
}

.restriction-close:hover {
	color: #666;
}

.restriction-icon {
	font-size: 45px;
	margin-bottom: 15px;
}

.restriction-title {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 12px 0;
}

.restriction-text {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 25px;
}

.restriction-btn {
	width: 100%;
	background: #ff453a;
	color: #fff;
	border: none;
	padding: 14px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s, transform 0.1s;
}

.restriction-btn:hover {
	opacity: 0.9;
}

.restriction-btn:active {
	transform: scale(0.98);
}

.legal-tag {
	margin-top: 15px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #ff453a;
	opacity: 0.8;
	text-transform: uppercase;
}

#cookie-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	transition: opacity 0.4s ease;
}

#cookie-boss {
	position: relative;
	width: 100%;
	max-width: 380px;
	box-sizing: border-box;
	background: #1a1a1c;
	color: #fff;
	padding: 40px 25px 25px;
	border-radius: 20px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 24px;
	cursor: pointer;
	opacity: 0.5;
	line-height: 1;
	transition: 0.2s;
}

.cookie-close:hover {
	opacity: 1;
}

.cookie-icon {
	font-size: 45px;
	margin-bottom: 15px;
}

.cookie-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

.cookie-text {
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 25px;
}

.cookie-btn {
	width: 100%;
	background: #fff;
	color: #000;
	border: none;
	padding: 14px;
	border-radius: 12px;
	font-weight: 600;
	cursor: pointer;
	font-size: 16px;
	transition: background 0.2s, transform 0.1s;
}

.cookie-btn:hover {
	background: #e5e5e5;
}

.cookie-btn:active {
	transform: scale(0.98);
}

.footer-bottom a {
	color: inherit;
	/* Берет цвет у родительского текста */
	text-decoration: none;
	/* Убирает подчеркивание */
	cursor: default;
	/* (Опционально) Делает курсор как у текста */
}

.footer-bottom a:hover {
	color: inherit;
	/* Чтобы при наведении цвет не менялся */
	text-decoration: none;
	/* Чтобы при наведении не подчеркивалось */
}

:root {
	--bg-color: #fff;
	--text-sim: #333;
	/* Цвет «текста» */
}

/* ... твои основные стили body и html ... */
.fake-header {
	height: 60px;
	background: white;
	display: flex;
	align-items: center;
	padding: 0 10%;
	border-bottom: 1px solid #eee;
}

/* Имитация слов в навигации */
.fake-nav {
	display: flex;
	gap: 25px;
	margin-left: auto;
}

.fake-nav-item {
	width: 50px;
	height: 8px;
	background: #666;
	border-radius: 2px;
}

.fake-content {
	max-width: 800px;
	margin: 60px auto;
	padding: 0 20px;
}

/* Заголовок теперь короче и плотнее */
/* Обертка для слов заголовка */
.fake-h1-wrap {
	display: flex;
	gap: 12px;
	margin-bottom: 40px;
}

/* Стили для слов-заголовков (делаем их выше и темнее) */
.word-h1-l,
.word-h1-m,
.word-h1-s {
	height: 28px;
	/* Высота заголовка h1 */
	background: #222;
	border-radius: 4px;
}

.word-h1-l {
	width: 180px;
}

.word-h1-m {
	width: 120px;
}

.word-h1-s {
	width: 80px;
}

/* Твои старые стили для обычных слов (оставляем без изменений) */
.fake-line-wrap {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
}

.word-s {
	height: 10px;
	background: var(--text-sim);
	border-radius: 2px;
	width: 40px;
}

.word-m {
	height: 10px;
	background: var(--text-sim);
	border-radius: 2px;
	width: 80px;
}

.word-l {
	height: 10px;
	background: var(--text-sim);
	border-radius: 2px;
	width: 120px;
}

/* Контейнер для строки, которая состоит из «слов» */
.fake-line-wrap {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
}

/* Сами «слова» разной длины для реалистичности */
.word-s {
	height: 10px;
	background: var(--text-sim);
	border-radius: 2px;
	width: 40px;
}

.word-m {
	height: 10px;
	background: var(--text-sim);
	border-radius: 2px;
	width: 80px;
}

.word-l {
	height: 10px;
	background: var(--text-sim);
	border-radius: 2px;
	width: 120px;
}

/* Базовые параметры футера */
.fake-footer {
	background-color: #2c3e50;
	padding: 40px 0 20px;
	margin-top: auto;
	margin-bottom: 0;
	width: 100%;
}

.fake-footer .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

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

/* Общие стили для "скелетонов" */
.fake-h4,
.fake-footer-link,
.fake-copyright {
	background: #4a5a6a;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
}

/* Анимация блика (shimmer effect) */
.fake-h4::after,
.fake-footer-link::after,
.fake-copyright::after {
	content: "";
	position: absolute;
	top: 0;
	left: -150%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	100% {
		left: 150%;
	}
}

/* Размеры заголовков */
.fake-h4 {
	height: 18px;
	margin-bottom: 15px;
	border-bottom: 1px solid #555;
	background: #555;
}

.col-1-title {
	width: 80px;
}

.col-2-title {
	width: 100px;
}

.col-3-title {
	width: 160px;
}

/* Размеры ссылок */
.fake-footer-link {
	height: 12px;
	margin-bottom: 12px;
}

/* Имитация разной длины текста (VPN, Windows, Android и т.д.) */
.link-1-1 {
	width: 40px;
}

.link-1-2 {
	width: 90px;
}

.link-1-3 {
	width: 100px;
}

.link-2-1 {
	width: 110px;
}

.link-2-2 {
	width: 115px;
}

.link-2-3 {
	width: 70px;
}

.link-2-4 {
	width: 50px;
}

.link-2-5 {
	width: 60px;
}

.link-3-1 {
	width: 50px;
}

.link-3-2 {
	width: 70px;
}

.link-3-3 {
	width: 110px;
}

/* Нижняя часть */
.fake-footer-bottom {
	text-align: center;
	border-top: 1px solid #555;
	padding-top: 20px;
	display: flex;
	justify-content: center;
}

.fake-copyright {
	width: 250px;
	height: 10px;
	background: #555;
}

/* Адаптивность под мобильные */
@media (max-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.fake-h4,
	.fake-footer-link {
		margin-left: auto;
		margin-right: auto;
	}

	.fake-footer-link {
		height: 16px;
		/* Больше область "клика" как в оригинале */
		margin-bottom: 15px;
	}
}