body {
	font-family: sans-serif;
	background: #f9f9f9;
	padding: 2em;
	max-width: 900px;
	margin: auto;
	color: #333;
	line-height: 1.6;
	text-align: left;
	/* текст слева */
}

.lang {
	margin: 1em auto;
	text-align: center;
}

.download-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 1em;
	margin-bottom: 2em;
	flex-wrap: wrap;
}
.download-wrapper img {
	height: 70px;
	display: block;
	margin-top: 1px;
	/* подстрой это значение для точного выравнивания */
}
.apk-button {
	display: inline-block;
	padding: 1em 2em;
	font-size: 17px;
	background: #1a73e8;
	color: white;
	border-radius: 24px;
	text-decoration: none;
	box-shadow: 0 3px 8px rgba(26, 115, 232, 0.4);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
	font-weight: 600;
	/* margin-bottom: 2em; убрал, теперь у обёртки */
}

.apk-button:hover,
.apk-button:focus {
	background-color: #155ab6;
	box-shadow: 0 6px 16px rgba(21, 90, 182, 0.6);
	outline: none;
	cursor: pointer;
}

.desc {
	max-width: 600px;
	margin: 2em auto;
	font-size: 20px;
	/* чуть крупнее */
	line-height: 1.4;
	color: #1a73e8;
	/* синий цвет, как в заголовках */
	font-weight: 700;
	/* жирный */
	background: #fff;
	padding: 1em 1.5em;
	border-radius: 12px;
	box-shadow: 0 3px 10px rgba(26, 115, 232, 0.15);
	/* легкий синий теневой эффект */
	text-align: center;
	user-select: text;
	transition: opacity 0.3s ease;
}

.icon {
	display: block;
	margin: 0 auto 1em auto;
	/* сверху 0, снизу 1em, по бокам авто для центрирования */
	width: 128px;
	height: 128px;
	border-radius: 32px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	object-fit: cover;
	background-color: white;
}

.full-description {
	text-align: left;
	background: white;
	padding: 1.5em 2em;
	border-radius: 16px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	max-width: 900px;
	margin: 3em auto;
	white-space: pre-wrap;
	user-select: text;
}

.full-description h2 {
	margin-top: 0;
	font-weight: 700;
	color: #1a73e8;
}

.full-description h3 {
	margin-top: 0 !important;
	margin-bottom: 0.3em;
	color: #155ab6;
}
.full-description p {
	margin-top: 0.4em;
	margin-bottom: 0.4em!important;
	/* было 1em — уменьшил */
}

.full-description ul {
	margin-top: 0;
	margin-bottom: 0.4em!important;
	/* было 1em — уменьшил */
	padding-left: 1.2em;
}

.full-description li {
	margin-bottom: 0.5em;
}

footer {
	margin-top: 3em;
	padding: 1em 0;
	border-top: 1px solid #ddd;
	text-align: center;
}

footer a {
	color: #1a73e8;
	text-decoration: none;
	font-weight: 600;
}

footer a:hover {
	text-decoration: underline;
}

/* Для страницы privacy.html */
h1 {
	color: #1a73e8;
	margin-bottom: 0.5em;
	text-align: center;
}

section {
	background: white;
	padding: 2em;
	border-radius: 16px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	margin-top: 2em;
}

p {
	margin-bottom: 1em;
}
/* Адаптив для мобильных устройств */
@media (max-width: 600px) {
	body {
		padding: 1em;
		max-width: 100%;
	}

	.desc {
		max-width: 100%;
		margin: 1.4em auto;
		font-size: 18px;
		line-height: 1.3;
		padding: 0.8em 1em;
	}

	.full-description {
		padding: 1em 1em;
		max-width: 100%;
		margin: 2em auto;
		font-size: 14px;
		line-height: 1.3;
	}

	.icon {
		width: 100px;
		height: 100px;
		margin-bottom: 1em;
	}

	.lang button {
		font-size: 18px;
		padding: 0.6em 1.2em;
		margin: 0 0.3em;
	}

	.apk-button {
		font-size: 16px;
		padding: 0.8em 1.5em;
	}

	footer {
		padding: 0.5em 0;
	}

	footer a {
		font-size: 16px;
	}
}
/* Плавное появление для переключаемых описаний */
.desc,
.full-description {
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	height: 0;
	overflow: hidden;
}

.desc[style*="display: block"],
.full-description[style*="display: block"] {
	opacity: 1;
	pointer-events: auto;
	height: auto;
}

/* Заглушка для видео/скриншота */
.video-placeholder {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #e3e9f6;
	border: 2px dashed #1a73e8;
	color: #1a73e8;
	font-weight: 700;
	font-size: 18px;
	height: 200px;
	border-radius: 12px;
	margin-top: 1em;
	margin-bottom: 2em;
	user-select: none;
	cursor: default;
}

.video-placeholder svg {
	margin-right: 0.6em;
	fill: #1a73e8;
	width: 28px;
	height: 28px;
}

/* Активная кнопка языка */
.lang button.active {
	background-color: #1a73e8;
	color: white;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(26, 115, 232, 0.6);
}

/* Наведение на кнопки языка */
.lang button:hover:not(.active),
.lang button:focus:not(.active) {
	background-color: #e0e8f9;
	color: #155ab6;
	outline: none;
	cursor: pointer;
}

/* Улучшенный флекс для кнопок языков */
.lang {
	display: flex;
	justify-content: center;
	gap: 0.6em;
	margin: 1em auto;
}

/* Улучшенный акцент для заголовков в full-description */
.full-description h2,
.full-description h3 {
	transition: color 0.3s ease;
}

/* Мобильные под видео-заглушки */
@media (max-width: 600px) {
	.video-placeholder {
		height: 140px;
		font-size: 16px;
	}
}
.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 соотношение */
	padding-top: 25px;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	background: #000;
	/* черный фон под видео */
	border-radius: 8px;
	/* скругление углов */
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	/* тень для аккуратности */
	margin: 15px 0;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
@keyframes dropBounce {
	0% {
		opacity: 0;
		transform: translateY(-200px);
	}

	60% {
		opacity: 1;
		transform: translateY(20px);
	}

	80% {
		transform: translateY(-10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.animated-drop {
	animation: dropBounce 1s ease forwards;
	opacity: 0;
}

.icon.animated-drop {
	animation-delay: 0s;
}

h1.animated-drop {
	animation-delay: 0.3s;
}

.lang.animated-drop {
	animation-delay: 0.6s;
}

.download-wrapper.animated-drop {
	animation-delay: 0.9s;
}