
* {
	box-sizing: border-box;
	font-family: Roboto, sans-serif;
}
* {
	box-sizing: border-box;
	margin: 0;
}
a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
	transition: color 0.3s ease;
}
a:hover {
	color: #0077B6;
}
body {
	max-width: 1300px;
   margin: 0 auto;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	background-color: #090F1F;
	color: #ffffff;
	padding-top: 120px; /* Увеличено для навигации */
}
.conteiner {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, #0077B6 0%, #005A8A 100%);
	box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
	padding: 10px 0;
	z-index: 1000;
	text-align: center;
}
.header_conatiner {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 90px;
}
.header_logo img {
	height: 35px;
	width: 100%;
	object-fit: contain;
}
.header_button {
	display: flex;
	gap: 20px;
}

/* Навигационное меню */
.navigation {
	position: fixed;
	top: 60px; /* Под header */
	left: 0;
	width: 100%;
	background: rgba(9, 15, 31, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 119, 182, 0.2);
	z-index: 999;
	padding: 10px 0;
	margin-top: 20px;
}
.nav_conteiner {
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}
.nav-link {
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 5px;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid transparent;
}
.nav-link:hover {
	background-color: rgba(0, 119, 182, 0.15);
	border-color: #0077B6;
	color: #0077B6;
}
.nav-link.active {
	background: linear-gradient(135deg, #0077B6 0%, #005A8A 100%);
	border-color: #0077B6;
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 119, 182, 0.3);
}

@media (max-width: 768px) {
	body {
		padding-top: 140px; /* Больше места для мобильной навигации */
	}
	.header_logo img {
		height: 28px; /* Уменьшено на 20% от 35px */
	}
	.header_button {
		gap: 8px;
	}
	.nav_conteiner {
		gap: 10px;
		padding: 10px;
	}
	.nav-link {
		font-size: 12px;
		padding: 6px 10px;
	}
}

.btn {
	border: 1px solid #0077B6;
	display: inline-block;
	padding: 10px 20px;
	background: linear-gradient(135deg, #0077B6 0%, #005A8A 100%);
	color: #ffffff;
	border-radius: 8px;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease-in-out;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(0, 119, 182, 0.2);
}
.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 119, 182, 0.4);
}
@media (max-width: 768px) {
	.btn {
		 width: 100%;
		 text-align: center;
		 padding: 10px;
		 font-size: 14px;
	}
}
@keyframes glow {
	0% { box-shadow: 0 0 5px #0077B6; }
	50% { box-shadow: 0 0 20px #0077B6; }
	100% { box-shadow: 0 0 5px #0077B6; }
}
.glowing {
	animation: glow 1.5s infinite alternate;
}

.button_1 {
	background: linear-gradient(135deg, #0077B6 0%, #005A8A 100%);
	border-color: #0077B6;
}
.button_2 {
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
}
.button_2:hover {
	background: linear-gradient(135deg, #0077B6 0%, #005A8A 100%);
	border-color: #0077B6;
	color: #ffffff;
}

h1 {
	font-size: 50px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.4;
	color: #ffffff;
	text-shadow: 0 2px 8px rgba(0, 119, 182, 0.3);
}
@media (max-width: 768px) {
	h1 {
		font-size: 30px;
	}
}
h2 {
	font-size: 30px;
	font-weight: bold;
	color: #ffffff;
}
@media (max-width: 768px) {
	h2 {
		font-size: 26px;
		margin-top: 10px;
	}
}
.main_conteiner {
	position: relative;
	margin-top: 40px;
}
.main_text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
main img {
	display: flex;
	align-items: center;
	justify-content: center;
}
.main p {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}
.main p a {
	color: #0077B6;
	text-decoration: underline;
}
.main p a:hover {
	color: #005A8A;
}

.photo {
	margin: 0 auto;
	width: 70%;
	height: 80%;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 40px;
	display: block;
	box-shadow: 0 8px 24px rgba(0, 119, 182, 0.2);
	border: 2px solid rgba(0, 119, 182, 0.2);
	transition: all 0.3s ease;
}
.photo:hover {
	box-shadow: 0 12px 32px rgba(0, 119, 182, 0.3);
	border-color: rgba(0, 119, 182, 0.4);
	transform: translateY(-2px);
}

.main .download-button {
	margin: 0 auto 40px auto;
	display: flex;
}
@media (max-width: 768px) {
	.photo {
		width: 100%;
		margin-bottom: 20px;
	}
}
.main h1 {
	margin-bottom: 50px;
}
@media (max-width: 768px) {
	.main h1 {
		margin-bottom: 20px;
	}
}
.popup {
	width: 470px;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #0077B6 0%, #005A8A 100%);
	color: #ffffff;
	border-radius: 20px;
	padding: 20px 25px;
	box-shadow: 0 8px 24px rgba(0, 119, 182, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
@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.476);
	font-size: 20px;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 6px;
}
@media (max-width: 768px) {
	.popup-close {
		font-size: 16px;
		right: 6px;
		top: 3px;
	}
}
.block_txt {
	width: 40%;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.block_txt span {
	font-size: 35px;
	color: #ffffff;
	font-weight: 700;
}
@media (max-width: 768px) {
	.block_txt span {
		font-size: 24px;
	}
}
.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: 24px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 15px;
  color: #ffffff;
}

ul, ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

li {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

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

th, td {
  border: 1px solid rgba(0, 119, 182, 0.2);
  padding: 10px;
  text-align: left;
}

th {
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.2) 0%, rgba(0, 90, 138, 0.2) 100%);
  font-weight: bold;
  color: #ffffff;
  border-color: rgba(0, 119, 182, 0.3);
}
td {
  background-color: rgba(9, 15, 31, 0.5);
  color: #ffffff;
}

/* Кнопка скачивания APK */
.download-button {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0077B6 0%, #005A8A 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 18px 25px;
  border-radius: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  max-width: 320px;
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.download-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 119, 182, 0.5);
}

.download-button img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.button-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.button-text strong {
  font-size: 16px;
  line-height: 1.2;
}

.button-text span {
  font-size: 12px;
  opacity: 0.8;
  font-weight: normal;
}

@media (max-width: 768px) {
  .download-button {
    max-width: 100%;
    justify-content: center;
  }
}

/* Footer Links Styles */
.footer-links {
  max-width: 1300px;
  margin: 40px auto 20px;
  padding: 0 15px;
}

.footer-link-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 119, 182, 0.1);
  transition: all 0.3s ease;
}

.footer-link-item:hover {
  border-bottom-color: rgba(0, 119, 182, 0.5);
}

.footer-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0077B6;
}

.footer-bottom {
  text-align: center;
  padding: 20px 15px;
  border-top: 1px solid rgba(0, 119, 182, 0.2);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  background-color: rgba(9, 15, 31, 0.8);
}

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

/* FAQ стили */
.faq-section {
  margin: 30px 0;
}

.faq-item {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(9, 15, 31, 0.6);
  border-radius: 8px;
  border: 1px solid rgba(0, 119, 182, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(9, 15, 31, 0.8);
  border-color: rgba(0, 119, 182, 0.4);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.15);
}

.faq-item {
  border: 1px solid rgba(0, 119, 182, 0.2);
}

/* Info box стили */
.info-box {
  background: rgba(0, 119, 182, 0.1);
  border-left: 4px solid #0077B6;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
  border-right: 1px solid rgba(0, 119, 182, 0.2);
  border-top: 1px solid rgba(0, 119, 182, 0.2);
  border-bottom: 1px solid rgba(0, 119, 182, 0.2);
}

.info-box h3 {
  color: #0077B6;
  margin-top: 0;
}

/* Step tip стили */
.step-tip {
  background: rgba(0, 119, 182, 0.1);
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
  border-left: 3px solid #0077B6;
}

.step-tip strong {
  color: #0077B6;
}

/* Final CTA стили */
.final-cta {
  text-align: center;
  margin: 40px 0;
  padding: 30px;
  background: rgba(0, 119, 182, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 119, 182, 0.2);
}

.final-cta h3 {
  color: #0077B6;
  margin-top: 0;
}

/* Улучшение контрастности для лучшей читаемости */
strong, b {
  color: #ffffff;
  font-weight: 600;
}