* {
	box-sizing: border-box;
	margin: 0;
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
}
body {
	max-width: 1100px;
   margin: 0 auto;
	font-size: 16px;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
	background-attachment: fixed;
	color: #ffffff;
	padding-top: 110px;
	line-height: 1.6;
}
.conteiner {
	max-width: 1100px;
	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, #000000 0%, #1a1a1a 100%);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	padding: 0;
	z-index: 1000;
	text-align: center;
	border-bottom: 1px solid rgba(91, 168, 255, 0.2);
}
.header_conteiner {
  display: flex;
  align-items: center;     /* центрируем по вертикали */
  justify-content: space-between;
  padding: 5px 15px;       /* компактные отступы */
  gap: 12px;               /* расстояние между элементами */
  height: 55px;            /* компактная высота */
}
.header_logo img {
  max-height: 42px;  /* увеличен размер логотипа */
  width: auto;
}
@media (max-width: 768px) {
  .header_logo img {
    max-height: 36px;  /* увеличен размер логотипа для мобильных */
  }
}
.header_button {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}
/* Навигационное меню */
.navigation {
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.85) 100%);
  backdrop-filter: blur(15px);
  z-index: 999;
  border-bottom: 1px solid rgba(91, 168, 255, 0.1);
}
.nav_conteiner {
	justify-content: center;
	gap: 20px;
	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(255, 255, 255, 0.1);
	border-color: #5BA8FF;
}
.nav-link.active {
	background-color: #5BA8FF;
	border-color: #5BA8FF;
	color: #000000;
}
@media (max-width: 768px) {
	body {
		padding-top: 130px; /* Отступ для мобильной версии с многострочным меню */
	}
	.header_button {
		gap: 8px;
	}
	
	.navigation {
		top: 60px; /* Увеличиваем отступ на мобильном, чтобы активная кнопка не наезжала */
		padding: 8px 0; /* Добавляем внутренний отступ */
	}
	   
	.nav-link {
		font-size: 12px; /* Увеличиваем с 9px до 12px */
		padding: 6px 10px; /* Увеличиваем padding */
		border-width: 1px; /* Уменьшаем толщину обводки активной кнопки */
	}
	.nav_conteiner {
		gap: 8px;
	}
}

.btn {
	border: 2px solid #5BA8FF;
	display: inline-block;
	padding: 8px 14px;
	background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
	color: #000000;
	border-radius: 8px;
	cursor: pointer;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	font-size: 12px;
	box-shadow: 0 4px 15px rgba(91, 168, 255, 0.3);
	white-space: nowrap;
}
@media (max-width: 768px) {
	.btn {
		 width: 100%;
		 text-align: center;
		 padding: 10px;
		 font-size: 14px;
	}
}

@keyframes glow {
	0% { box-shadow: 0 0 5px #5BA8FF; }
	50% { box-shadow: 0 0 20px #5BA8FF; }
	100% { box-shadow: 0 0 5px #5BA8FF; }
}

.glowing {
	animation: glow 1.5s infinite alternate;
}
.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(91, 168, 255, 0.4);
}
.button_1 {
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
	color: #5BA8FF;
	border-color: #5BA8FF;
}
.button_1:hover {
	background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
	color: #000000;
}
.button_2 {
	background: transparent;
	color: #5BA8FF;
	border-color: #5BA8FF;
}
.button_2:hover {
	background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
	color: #000000;
}
h1 {
	font-size: 42px;
	text-align: center;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.3;
	background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 50%, #5BA8FF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 30px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
	h1 {
		font-size: 30px;
	}
}

h2 {
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
	position: relative;
}
h2::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
	border-radius: 2px;
}
@media (max-width: 768px) {
	h2 {
		font-size: 26px;
		margin-top: 10px;
	}
}

.main_conteiner {
	position: relative;
	margin-top: 40px;
}
.main_text {
	font-size: 18px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	background: rgba(255, 255, 255, 0.03);
	padding: 30px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(91, 168, 255, 0.1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
main img {
	display: flex;
	align-items: center;
	justify-content: center;
    width: 100%;
}
main img.avatar {
	width: 45px !important;
	height: 45px !important;
	max-width: 45px !important;
	max-height: 45px !important;
}
.main_text.reviews img {
	width: 45px !important;
	height: 45px !important;
	max-width: 45px !important;
	max-height: 45px !important;
}
.main p {
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	line-height: 1.4;
}
.photo {
	margin: 0 auto;
	width: 70%;
	height: 80%;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 40px;
}
@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, #1a1a1a 0%, #2d2d2d 100%);
	color: #ffffff;
	border-radius: 20px;
	padding: 20px 25px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(91, 168, 255, 0.3);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@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;
t}
}	}
.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;
t}
}	}
.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;
	}
}

/* Хлебные крошки */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  margin-bottom: 20px;
  font-size: 14px;
  list-style: none;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb li:not(:last-child)::after {
  content: "›";
  color: #5BA8FF;
  font-weight: bold;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: #5BA8FF;
}
.breadcrumb li:last-child {
  color: #5BA8FF;
  font-weight: 600;
}
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 12px;
    gap: 6px;
  }
}

/* Кнопка "Наверх" - УДАЛЕНО */
/*
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(91, 168, 255, 0.3);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background: linear-gradient(135deg, #4A90E2 0%, #FF9500 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(91, 168, 255, 0.4);
}
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
*/

/* PWA кнопка установки */
.pwa-install-btn {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%) !important;
  border-color: #5BA8FF !important;
  margin-top: 15px;
  color: #000000 !important;
}
.pwa-install-btn:hover {
  background: linear-gradient(135deg, #4A90E2 0%, #FFA500 100%) !important;
}

/* Lazy Loading изображений */
img[data-src]:not([src]) {
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.1) 25%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.1) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}
img.loaded {
  opacity: 1;
  background: none;
  animation: none;
}
img.error {
  opacity: 0.5;
  background: rgba(255, 0, 0, 0.1);
  animation: none;
}
@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Поиск по сайту - ОТКЛЮЧЕНО */
/*
.search-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto 30px;
}
.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(91, 168, 255, 0.3);
  border-radius: 25px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.search-box:focus-within {
  border-color: #5BA8FF;
  box-shadow: 0 0 20px rgba(91, 168, 255, 0.3);
}
.search-input {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  outline: none;
}
.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-btn {
  padding: 12px 20px;
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  border: none;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}
.search-btn:hover {
  background: linear-gradient(135deg, #4A90E2 0%, #FF9500 100%);
}
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(91, 168, 255, 0.3);
  border-radius: 15px;
  margin-top: 10px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  backdrop-filter: blur(10px);
  display: none;
}
.search-result-item {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(91, 168, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-result-item:hover {
  background: rgba(91, 168, 255, 0.1);
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-title {
  color: #5BA8FF;
  font-weight: bold;
  margin-bottom: 5px;
}
.search-result-snippet {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.4;
}
.search-result-url {
  color: rgba(91, 168, 255, 0.7);
  font-size: 12px;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .search-container {
    max-width: 100%;
    margin: 0 0 20px;
  }
  .search-input {
    font-size: 14px;
    padding: 10px 15px;
  }
  .search-btn {
    padding: 10px 15px;
    font-size: 16px;
  }
}
*/

/* Стили для страницы контактов */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}
.contact-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(91, 168, 255, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.contact-item:hover {
  border-color: rgba(91, 168, 255, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(91, 168, 255, 0.2);
}
.contact-icon {
  font-size: 48px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.contact-item h3 {
  color: #5BA8FF;
  margin-bottom: 15px;
  font-size: 20px;
}
.contact-item p {
  margin-bottom: 10px;
  line-height: 1.6;
}
.quick-help-tips {
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid #5BA8FF;
  padding: 20px;
  margin: 25px 0;
  border-radius: 8px;
}
.common-issues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 25px 0;
}
.issue-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(91, 168, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}
.issue-category h3 {
  color: #5BA8FF;
  border-bottom: 2px solid rgba(91, 168, 255, 0.3);
  padding-bottom: 8px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-item {
    padding: 20px;
  }
  .contact-icon {
    font-size: 36px;
  }
  .common-issues {
    grid-template-columns: 1fr;
  }
}

/* Дополнительные стили для сгенерированного контента */
h3 {
  font-size: 26px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 18px;
  color: #5BA8FF;
  position: relative;
  padding-left: 20px;
}
h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  border-radius: 2px;
}
ul, ol {
  padding-left: 25px;
  margin-bottom: 20px;
}
li {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
}
ul li::before {
  content: "▶";
  color: #5BA8FF;
  font-size: 12px;
  position: absolute;
  left: -20px;
  top: 2px;
}
ol li {
  counter-increment: list-counter;
}
ol {
  counter-reset: list-counter;
}
ol li::before {
  content: counter(list-counter);
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: #000;
  font-weight: bold;
  font-size: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -30px;
  top: 0;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 25px;
  font-size: 14px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
th, td {
  border: none;
  padding: 15px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
th {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(8, 52, 21, 0.4) 100%);
  font-weight: 600;
  color: #5BA8FF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
td {
  background: rgba(255, 255, 255, 0.05);
}
tr:hover td {
  background: rgba(255, 255, 255, 0.08);
}
.seo-links {
  background: linear-gradient(135deg, #083415 0%, #0a4018 100%);
  color: #fff;
  padding: 40px 20px 20px 20px;
  font-size: 14px;
  border-top: 1px solid rgba(91, 168, 255, 0.2);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto 30px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.seo-links h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}
.seo-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.seo-links ul li {
  margin-bottom: 8px;
}
.seo-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.seo-links ul li a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}
.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fff;
}
.reviews {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 10px 0;
}
.reviews .avatar {
  width: 45px !important;
  height: 45px !important;
}
.reviews img.avatar {
  width: 45px !important;
  height: 45px !important;
  max-width: 45px !important;
  max-height: 45px !important;
}
.main_text.reviews img.avatar {
  width: 45px !important;
  height: 45px !important;
  max-width: 45px !important;
  max-height: 45px !important;
}
.review {
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 4px solid #5BA8FF;
  transition: all 0.3s ease;
  position: relative;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-left-color: #5BA8FF;
}
.review::before {
  content: "⭐";
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 24px;
  opacity: 0.3;
}
.review img {
  width: 45px !important;
  height: 45px !important;
  max-width: 45px !important;
  max-height: 45px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 20px;
  border: 3px solid #5BA8FF;
  box-shadow: 0 3px 10px rgba(91, 168, 255, 0.3);
}
.review .avatar {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%; /* скругление краёв */
  margin-right: 15px;
  object-fit: cover;
  flex-shrink: 0;
}
.review-text {
  flex: 1;
}
.review-text h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #5BA8FF;
  letter-spacing: -0.5px;
}
.review-text p {
  margin: 0;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  text-align: justify;
}
.big-button {
  display: inline-block;
  padding: 18px 50px; /* увеличенный размер */
  font-size: 22px; /* крупный текст */
  font-weight: bold;
  color: #fff;
  background: #000000; /* синий, как у кнопки Регистрация */
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 15px rgba(91, 168, 255, 0.8); /* свечение */
  transition: all 0.3s ease;
      margin-bottom: 15px; /* ✅ отступ между кнопками */
}
.big-button:hover {
  background: #5BA8FF; /* темнее при наведении */
  box-shadow: 0 0 20px rgba(30, 115, 190, 1);
}
.nav-link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
/* dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a2e;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  min-width: 150px;
  z-index: 900; /* ниже гамбургера */
}
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  color: #fff;
  text-decoration: none;
}
.dropdown-menu a:hover {
  background: #2a2a3d;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
/* гамбургер */
.hamburger {
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  z-index: 1001; /* всегда выше выпадашки */
  position: relative;
}
/* mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #1a1a2e;
  position: absolute;
  right: 20px;
  top: 60px;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 10px;
  z-index: 1000; /* выше всего */
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.mobile-menu a {
  padding: 8px 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
.mobile-menu a:hover {
  background: #2a2a3d;
}
.promo-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px auto;
  max-width: 400px;
}
.promo-block input {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  border: 2px solid #ffcc00;
  border-radius: 8px;
  background: #141a2a;
  color: #fff;
  flex: 1;
}
.promo-block button {
  font-size: 18px;
  font-weight: bold;
  background: #ffcc00;
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.promo-block button:hover {
  background: #155a96;
  box-shadow: 0 0 10px rgba(255,206,4,0.9);
}
.apk-section {
  background: #006b3f;
  padding: 60px 20px;
  color: #fff;
}
.apk-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* левая и правая колонка */
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  gap: 40px;
}
.apk-info {
  text-align: left;
}
.apk-info h1 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 800;
}
.apk-info h1 span {
  color: #ffcc00;
}
.apk-info p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.apk-button {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #000;
  border: 2px solid #ffcc00;
  border-radius: 10px;
  padding: 15px 25px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  max-width: 360px; /* фиксированная ширина */
}
.apk-button:hover {
  background: #111;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
}
.apk-button img {
  width: 50px;
  height: auto;
}
.apk-button-text {
  display: flex;
  flex-direction: column;
}
.apk-button-text strong {
  font-size: 20px;
}
.apk-button-text span {
  font-size: 14px;
  opacity: 0.9;
}
.apk-version {
  margin: 20px 0 30px;
  font-size: 14px;
  color: #ddd;
}
.apk-features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}
.feature {
  flex: 1 1 30%;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 250px;
}
.feature img {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}
.feature p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}
/* --- адаптив для мобильных --- */
@media (max-width: 768px) {
  .apk-features {
    flex-direction: column;
    gap: 20px;
  }
  .feature {
    flex: 1 1 100%;
    flex-direction: column;   /* иконка сверху, текст снизу */
    align-items: center;
    text-align: center;
  }
  .feature p {
    text-align: center;
    font-size: 15px;
  }
.apk-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.apk-image img {
  max-width: 100%;
  height: auto;
}
/* --- адаптив для мобильных --- */
@media (max-width: 768px) {
  .apk-container {
    grid-template-columns: 1fr;   /* одна колонка */
    text-align: center;           /* центрируем контент */
  }
  .apk-info h1 {
    font-size: 26px;              /* уменьшаем заголовок */
  }
  
  .apk-info p {
    font-size: 15px;              /* уменьшаем текст */
    line-height: 1.5;
  }

  .apk-button {
    max-width: 100%;
    justify-content: center;
  }
  .apk-button img {
    width: 35px;                  /* уменьшенная иконка */
  }
  .apk-button-text strong {
    font-size: 18px;
  }
  .apk-button-text span {
    font-size: 13px;
  }
  .apk-version {
    font-size: 13px;
  }
    .apk-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;     /* не переносим */
    gap: 10px;
    width: 100%;
    margin-top: 20px;
  }
 .feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .feature img {
    width: 40px;
    margin-bottom: 5px;
  }
  .feature p {
    font-size: 12px;
    line-height: 1.3;
  }
  .apk-image {
    order: -1;                    /* картинка уходит наверх */
    margin-bottom: 20px;
  }
  .apk-image img {
    max-width: 40%;               /* уменьшаем картинку */
  }
}

@media (max-width: 768px) {
  .apk-image {
    display: flex;
    justify-content: center;
  }
  .apk-image img {
    max-width: 80%;
  }
}

ol li {
  margin-bottom: 30px;
  line-height: 1.6;
}
ol li p {
  margin-bottom: 15px; /* отступ текста от картинки */
  font-size: 18px;
}
.apk-steps {
  text-align: center;
}
.apk-step {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
  min-height: 50px;
  margin: 15px auto;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  .apk-step {
    max-width: 90%; /* на телефонах почти вся ширина */
  }
}

@media (max-width: 1024px) {
  .apk-image .phones-img {
    max-width: 320px; /* планшеты */
  }
}

@media (max-width: 768px) {
  .apk-image .phones-img {
    max-width: 260px; /* телефоны */
  }
}
/* Стили для изображения телефонов */
.phones-img {
  max-width: 420px;
  width: clamp(280px, 48vw, 520px); /* адаптивная ширина */
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .phones-img { width: clamp(240px, 80vw, 360px); }
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f1f1f1;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.rating-score {
  font-size: 36px;
  font-weight: bold;
  color: #ff9900;
}
.rating-score span {
  font-size: 18px;
  font-weight: normal;
  color: #333;
}
.rating-details p {
  margin: 0;
  font-size: 14px;
  color: #444;
}
.rating-stars {
  font-size: 20px;
  color: #ffcc00;
}
.avatar {
  width: 45px !important;           /* размер аватарки */
  height: 45px !important;
  border-radius: 50%;    /* делаем круглую форму */
  object-fit: cover;     /* картинка обрезается, но без искажений */
  margin-right: 15px;    /* отступ справа от текста */
  border: 2px solid #ddd;/* лёгкая рамка */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* тень для объёма */
}
@media (max-width: 768px) {
  .avatar {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
}

.review-form {
  max-width: 600px;
  margin: 30px 0;           /* убрал auto по центру */
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;         /* текст и элементы формы влево */
}
.review-form .form-group {
  margin-bottom: 20px;
}
.review-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
}
.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  resize: none;
  transition: border 0.3s;
}
.review-form input:focus,
.review-form textarea:focus {
  border-color: #ffcc00;
  outline: none;
}
.btn-submit {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  background: #ffcc00;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-submit:hover {
  background: #e6b800;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
}
.thank-you-message {
  margin: 20px 0;
  padding: 15px 20px;
  background: #e6ffe6;
  border: 1px solid #66cc66;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #006600;
}
/* FAQ стили */
.faq-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(91, 168, 255, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.faq-section:hover {
  border-color: rgba(91, 168, 255, 0.6);
  box-shadow: 0 5px 20px rgba(91, 168, 255, 0.2);
}
.faq-section h2 {
  color: #5BA8FF;
  border-bottom: 2px solid #5BA8FF;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-question {
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid #5BA8FF;
  padding: 15px 20px;
  margin: 15px 0;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.faq-question:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateX(5px);
}
.faq-question h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
}
.faq-answer {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
}
/* Сравнительная таблица */
.comparison-hero {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: #000;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(91, 168, 255, 0.3);
}
.comparison-hero h2 {
  color: #000;
  font-size: 28px;
  margin-bottom: 15px;
}
.comparison-table {
  overflow-x: auto;
  margin: 30px 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.comparison-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  color: #333;
}
.comparison-table th {
  background: #333;
  color: #fff;
  padding: 15px;
  font-weight: bold;
  text-align: center;
}
.comparison-table th.melbet-header {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: #000;
  font-size: 18px;
  position: relative;
}
.comparison-table th.melbet-header::after {
  content: "👑 ЛИДЕР";
  position: absolute;
  top: -8px;
  right: 10px;
  background: #FF4444;
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: bold;
}
.comparison-table td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.comparison-table td.melbet-cell {
  background: linear-gradient(135deg, rgba(91, 168, 255, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
  font-weight: bold;
  color: #000;
  border-left: 4px solid #5BA8FF;
  border-right: 4px solid #5BA8FF;
}
.comparison-table tr:first-child td.melbet-cell {
  border-top: 4px solid #5BA8FF;
}
.comparison-table tr:last-child td.melbet-cell {
  border-bottom: 4px solid #5BA8FF;
}
.winner-badge {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  margin-left: 5px;
}
.competitor-cell {
  background: rgba(200, 200, 200, 0.1);
  color: #666;
}
/* Улучшенные отзывы */
.reviews-header {
  text-align: center;
  margin: 30px 0;
}
.rating-summary {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: white;
  border-radius: 20px;
  padding: 25px;
  margin: 25px 0;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}
.rating-summary .rating-score {
  color: #fff;
  font-size: 42px;
}
.rating-summary .rating-details p {
  color: rgba(255, 255, 255, 0.9);
}
.review {
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: none;
  border-radius: 16px;
  padding: 25px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}
.review::before {
  content: "⭐";
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 24px;
  opacity: 0.3;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.review .avatar {
  width: 45px !important;
  height: 45px !important;
  border: 3px solid #5BA8FF;
  box-shadow: 0 3px 10px rgba(91, 168, 255, 0.3);
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}
.review-text h3 {
  color: #5BA8FF;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.review-text h4 {
  color: #555;
  font-size: 16px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 15px;
  }
  
  .comparison-hero {
    padding: 20px;
  }
  
  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100vw;
    margin: 20px -15px;
  }
  
  .comparison-table table {
    min-width: 600px;
    font-size: 12px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 8px 6px;
    white-space: nowrap;
  }
  
  .comparison-table th.melbet-header::after {
    display: none;
  }
  
  .winner-badge {
    display: none;
  }
  
  .review {
    padding: 15px;
  }
}
}
}

/* ===== НОВАЯ HERO СЕКЦИЯ ===== */
.hero-section {
  padding: 40px 0;
  margin-bottom: 40px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  padding-right: 20px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  text-align: left;
}

.hero-content h1 span {
  color: #5BA8FF;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.download-button {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: #000000;
  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(91, 168, 255, 0.3);
}

.download-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(91, 168, 255, 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;
}

.version-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.feature-item img {
  width: 40px;
  height: 40px;
}

.live-badge {
  background: #e53e3e;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  min-width: 35px;
  text-align: center;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phones-mockup {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Мобильная адаптация hero секции */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-content h1 {
    font-size: 32px;
    text-align: center;
  }
  
  .hero-content p {
    font-size: 16px;
    text-align: center;
  }
  
  .download-button {
    max-width: 100%;
    justify-content: center;
  }
  
  .features-list {
    align-items: center;
  }
  
  .phones-mockup {
    max-height: 400px;
  }
}

/* Исправляем размеры в попапе */
.popup .block_img img {
  width: 50px !important;
  height: 50px !important;
}

/* Исправляем footer футер */
.footer-bottom {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== НОВЫЙ ФУТЕР КАК НА СКРИНШОТЕ ===== */
.main-footer {
  background: rgba(0, 0, 0, 0.8);
  margin-top: 60px;
  padding: 0;
}

.footer-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 40px 20px;
  text-align: center;
}

.footer-text-block {
  margin-bottom: 30px;
}

.footer-text-block p {
  font-size: 18px;
  line-height: 1.6;
  color: white;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 400;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-button {
  display: inline-block;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid rgba(91, 168, 255, 0.3);
  min-width: 280px;
  text-align: center;
}

.footer-button:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: #5BA8FF;
  transform: translateY(-2px);
}

.footer-button span {
  display: block;
  letter-spacing: 1px;
}

.footer-links {
  background: rgba(0, 0, 0, 0.9);
  padding: 40px 20px;
}

.footer-links h3 {
  color: #5BA8FF;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #5BA8FF;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.95);
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(91, 168, 255, 0.2);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Мобильная адаптация футера */
@media (max-width: 768px) {
  .footer-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-button {
    min-width: 100%;
    max-width: 350px;
  }
  
  .footer-text-block p {
    font-size: 16px;
  }
  
  .footer-links ul {
    grid-template-columns: 1fr;
  }
}

/* ===== ИСПРАВЛЯЕМ POPUP ===== */
.popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 450px;
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 2px solid rgba(91, 168, 255, 0.3);
}

/* Отключено: автоматическое появление попапа
.popup.show {
  opacity: 1;
  visibility: visible;
}
*/

.popup_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  gap: 15px;
}

.popup .block_img {
  flex-shrink: 0;
}

.popup .block_img img {
  width: 45px !important;
  height: 45px !important;
  display: block;
}

.popup .block_txt {
  flex: 1;
  text-align: left;
}

.popup .block_txt span {
  color: #5BA8FF;
  font-weight: bold;
  font-size: 18px;
  display: block;
  line-height: 1.2;
}

.popup .block_txt p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 2px 0 0 0;
}

.popup .block_btn {
  flex-shrink: 0;
}

.popup .block_btn .btn {
  padding: 10px 20px;
  font-size: 14px;
  min-width: 80px;
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.popup-close:hover {
  color: #5BA8FF;
}

/* Мобильная адаптация popup */
@media (max-width: 768px) {
  .popup {
    width: 95%;
    bottom: 15px;
  }
  
  .popup_block {
    padding: 12px 15px;
    gap: 12px;
  }
  
  .popup .block_img img {
    width: 40px !important;
    height: 40px !important;
  }
  
  .popup .block_txt span {
    font-size: 16px;
  }
  
  .popup .block_txt p {
    font-size: 12px;
  }
  
  .popup .block_btn .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ УСТАНОВКИ ===== */
.info-box {
  background: rgba(91, 168, 255, 0.1);
  border: 2px solid rgba(91, 168, 255, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
  backdrop-filter: blur(10px);
}

.info-box h3 {
  color: #5BA8FF;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.install-steps {
  margin: 30px 0;
}

.step-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  border-left: 4px solid #5BA8FF;
}

.step-block h3 {
  color: #5BA8FF;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}

.step-block p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.step-tip {
  background: rgba(91, 168, 255, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  margin-top: 15px;
  font-size: 14px;
  border-left: 3px solid #5BA8FF;
}

.faq-install {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
}

.faq-install h3 {
  color: #5BA8FF;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.faq-install p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.final-cta {
  background: linear-gradient(135deg, rgba(91, 168, 255, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
  border: 2px solid rgba(91, 168, 255, 0.3);
}

.final-cta h3 {
  color: #5BA8FF;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 24px;
}

.big-button {
  display: inline-block;
  margin: 10px 15px;
  padding: 15px 30px;
  font-size: 16px;
  min-width: 200px;
}

/* Мобильная адаптация для установки */
@media (max-width: 768px) {
  .step-block {
    padding: 20px 15px;
  }
  
  .step-block h3 {
    font-size: 18px;
  }
  
  .big-button {
    display: block;
    margin: 10px auto;
    width: 90%;
    max-width: 300px;
  }
  
  .final-cta {
    padding: 20px 15px;
  }
  
  .info-box {
    padding: 15px;
  }
}

/* ===== СТИЛИ ДЛЯ ХЛЕБНЫХ КРОШЕК (ОТКЛЮЧЕНО) ===== */
/*
.breadcrumb-container {
  background: rgba(14, 99, 69, 0.3);
  border-bottom: 1px solid rgba(91, 168, 255, 0.2);
  padding: 12px 0;
  margin: 0;
  margin-top: -140px;
  padding-top: 152px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  clear: both;
}

.breadcrumb-container .conteiner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  overflow-x: hidden;
}

.breadcrumb-container .breadcrumb {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.breadcrumb li a {
  color: #5BA8FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb li a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: rgba(91, 168, 255, 0.6);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .breadcrumb-container {
    padding: 10px 0;
    margin-top: -130px;
    padding-top: 142px;
  }
  
  .breadcrumb-container .conteiner {
    padding: 0 15px;
  }
  
  .breadcrumb li {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb-container {
    padding: 8px 0;
    margin-top: -130px;
    padding-top: 140px;
  }
  
  .breadcrumb-container .conteiner {
    padding: 0 10px;
  }
  
  .breadcrumb li {
    font-size: 0.8rem;
  }
  
  .breadcrumb li:not(:last-child)::after {
    margin-left: 5px;
  }
}
*/

/* ===== СТИЛИ ДЛЯ ОБНОВЛЕННОЙ СТРАНИЦЫ ОТЗЫВОВ ===== */

/* Герой секция отзывов */
.reviews-hero {
  text-align: center;
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(14, 99, 69, 0.1) 0%, rgba(91, 168, 255, 0.1) 100%);
  border-radius: 15px;
  margin-bottom: 40px;
}

.reviews-hero h1 {
  font-size: 2.5rem;
  color: #5BA8FF;
  margin-bottom: 15px;
  font-weight: 800;
}

.reviews-intro {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Карточка рейтинга */
.rating-summary {
  margin-bottom: 40px;
}

.rating-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 40px;
}

.rating-score {
  text-align: center;
}

.rating-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #5BA8FF;
  line-height: 1;
}

.rating-stars {
  font-size: 1.5rem;
  margin: 10px 0;
}

.rating-text {
  color: #666;
  font-weight: 600;
}

.rating-stats {
  display: flex;
  gap: 30px;
  flex: 1;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-item strong {
  display: block;
  font-size: 1.8rem;
  color: #5BA8FF;
  font-weight: 800;
}

.stat-item span {
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Фильтры отзывов */
.reviews-filters {
  margin-bottom: 40px;
}

.reviews-filters h2 {
  color: #5BA8FF;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.filter-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 10px 20px;
  background: #f5f5f5;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid transparent;
}

.filter-tag:hover,
.filter-tag.active {
  background: #5BA8FF;
  color: white;
  border-color: #5BA8FF;
}

/* Контейнер отзывов */
.reviews-container {
  display: grid;
  gap: 25px;
  margin-bottom: 50px;
}

/* Карточка отзыва */
.review-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #5BA8FF;
}

.review-meta {
  flex: 1;
}

.reviewer-name {
  margin: 0 0 5px 0;
  color: #5BA8FF;
  font-size: 1.2rem;
  font-weight: 700;
}

.review-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
  color: #666;
}

.review-rating {
  font-size: 1rem;
}

.review-date {
  color: #999;
}

.review-content {
  margin-bottom: 20px;
}

.review-content p {
  line-height: 1.6;
  color: #333;
  margin: 0;
}

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

.review-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(14, 99, 69, 0.1);
  color: #5BA8FF;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.helpful-btn {
  background: none;
  border: 1px solid #ddd;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
  transition: all 0.3s ease;
}

.helpful-btn:hover {
  background: #f0f0f0;
  border-color: #ccc;
}

/* Секция добавления отзыва */
.add-review-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
  margin-top: 50px;
  border: 1px solid rgba(91, 168, 255, 0.2);
}

.add-review-header {
  text-align: center;
  margin-bottom: 40px;
}

.add-review-header h2 {
  color: white;
  margin-bottom: 15px;
  font-size: 2rem;
}

.add-review-header p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

/* Форма отзыва */
.review-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: white;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5BA8FF;
  background: rgba(255,255,255,0.15);
}

/* Рейтинг в форме */
.rating-input {
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
  justify-content: flex-end;
}

.rating-input input {
  display: none;
}

.rating-input label {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.3s ease;
}

.rating-input label:hover,
.rating-input input:checked ~ label {
  color: #5BA8FF;
}

.submit-review-btn {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: #000000;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
}

.submit-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(91, 168, 255, 0.4);
}

/* Сообщение благодарности */
.thank-you-message {
  text-align: center;
  padding: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  border: 2px solid rgba(255,255,255,0.2);
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.thank-you-message h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.thank-you-message p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

/* Адаптивность */
@media (max-width: 768px) {
  .reviews-hero h1 {
    font-size: 2rem;
  }
  
  .rating-card {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .rating-stats {
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .review-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .filter-tags {
    justify-content: center;
  }
  
  .add-review-section {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .reviews-hero {
    padding: 30px 15px;
  }
  
  .rating-card {
    padding: 20px;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .review-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .review-info {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===== СТИЛИ ДЛЯ ОБНОВЛЕННОЙ СТРАНИЦЫ ПРОМОКОДОВ ===== */

/* Герой секция промокодов */
.promocode-hero {
  text-align: center;
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(14, 99, 69, 0.1) 0%, rgba(91, 168, 255, 0.1) 100%);
  border-radius: 20px;
  margin-bottom: 40px;
}

.promocode-hero h1 {
  font-size: 2.5rem;
  color: #5BA8FF;
  margin-bottom: 15px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

/* Главная промо секция */
.main-promo-section {
  margin-bottom: 50px;
}

.promo-card {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  border-radius: 25px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.promo-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.promo-badge {
  display: inline-block;
  background: #5BA8FF;
  color: #000000;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-header h2 {
  color: white;
  margin: 0;
  font-size: 1.8rem;
}

/* Контейнер промокода */
.promo-code-container {
  position: relative;
  z-index: 2;
}

.promo-code-display {
  margin-bottom: 30px;
}

.promo-label {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.9);
  text-align: center;
}

.promo-code-box {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 5px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,206,4,0.3);
}

.promo-input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  letter-spacing: 3px;
}

.promo-input:focus {
  outline: none;
}

.copy-btn {
  background: linear-gradient(135deg, #5BA8FF 0%, #f1b800 100%);
  color: #5BA8FF;
  border: none;
  border-radius: 10px;
  padding: 15px 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 160px;
  justify-content: center;
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(91, 168, 255, 0.4);
}

.copy-btn.copied {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: white;
}

.copy-btn.large {
  padding: 20px 30px;
  font-size: 1.1rem;
  min-width: 200px;
}

.promo-code-box.large {
  padding: 8px;
}

.promo-input.large {
  font-size: 1.8rem;
  padding: 20px;
}

/* Преимущества промокода */
.promo-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.benefit-icon {
  font-size: 1.5rem;
}

/* CTA секция */
.promo-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.promo-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.2);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 700;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,206,4,0.3);
}

.promo-action-btn:hover {
  background: rgba(255,206,4,0.2);
  border-color: #5BA8FF;
  transform: translateY(-2px);
}

.promo-note {
  margin-top: 15px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* Информационные блоки */
.info-block {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  border-left: 5px solid #5BA8FF;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.info-block.highlight {
  background: linear-gradient(135deg, #FFF59D 0%, #FFEB3B 100%);
  border-left: 8px solid #F57F17;
  border: 4px solid #F57F17;
  box-shadow: 0 10px 30px rgba(245, 127, 23, 0.25);
  position: relative;
}

.info-block.highlight::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #F57F17 0%, #FF8F00 100%);
}

.info-block.highlight h3 {
  color: #E65100 !important;
  font-weight: 700 !important;
}

.info-block.highlight p {
  color: #E65100 !important;
  font-weight: 500 !important;
}

.info-block.highlight strong,
.info-block.highlight b {
  color: #BF360C !important;
  font-weight: 800 !important;
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-content h3 {
  color: #5BA8FF;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Контентные секции */
.content-section {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}

.text-block {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.text-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.text-block.modern {
  border-top: 5px solid #5BA8FF;
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.text-block.success {
  border-top: 6px solid #5BA8FF;
  background: linear-gradient(135deg, #ffffff 0%, #f1f8e9 100%);
  border: 2px solid rgba(76, 175, 80, 0.2);
}

.text-block.warning {
  border-top: 6px solid #FF9800;
  background: linear-gradient(135deg, #ffffff 0%, #fff8e1 100%);
  border: 2px solid rgba(255, 152, 0, 0.2);
}

.text-block.info {
  border-top: 6px solid #2196F3;
  background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
  border: 2px solid rgba(33, 150, 243, 0.2);
}

.block-header {
  background: linear-gradient(135deg, rgba(14, 99, 69, 0.05) 0%, rgba(14, 99, 69, 0.02) 100%);
  padding: 25px;
  border-bottom: 2px solid rgba(14, 99, 69, 0.1);
}

.text-block.success .block-header {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.08) 100%);
  border-bottom: 3px solid rgba(76, 175, 80, 0.3);
}

.text-block.warning .block-header {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 152, 0, 0.08) 100%);
  border-bottom: 3px solid rgba(255, 152, 0, 0.3);
}

.text-block.info .block-header {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.08) 100%);
  border-bottom: 3px solid rgba(33, 150, 243, 0.3);
}

.block-header h3 {
  margin: 0;
  color: #5BA8FF;
  font-size: 1.4rem;
  font-weight: 700;
}

.text-block.success .block-header h3 {
  color: #5BA8FF;
}

.text-block.warning .block-header h3 {
  color: #FF9800;
}

.text-block.info .block-header h3 {
  color: #2196F3;
}

.block-content {
  padding: 30px;
}

.text-block.modern .block-content p {
  color: #333 !important;
}

.text-block.success .block-content p {
  color: #5BA8FF !important;
}

.text-block.warning .block-content p {
  color: #E65100 !important;
}

.text-block.info .block-content p {
  color: #1565C0 !important;
}

.text-block.modern .block-content strong,
.text-block.modern .block-content b {
  color: #5BA8FF !important;
}

.text-block.success .block-content strong,
.text-block.success .block-content b {
  color: #4A90E2 !important;
}

.text-block.warning .block-content strong,
.text-block.warning .block-content b {
  color: #BF360C !important;
}

.text-block.info .block-content strong,
.text-block.info .block-content b {
  color: #0D47A1 !important;
}

/* Выделенные блоки */
.highlight-box {
  background: linear-gradient(135deg, #FFF59D 0%, #FFEB3B 100%);
  border: 4px solid #F57F17;
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  box-shadow: 0 10px 30px rgba(245, 127, 23, 0.3);
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #F57F17 0%, #FF8F00 50%, #F57F17 100%);
}

.highlight-box::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20px;
  width: 100px;
  height: 200%;
  background: linear-gradient(45deg, transparent 0%, rgba(245, 127, 23, 0.15) 50%, transparent 100%);
  transform: rotate(15deg);
}

.highlight-box p {
  color: #E65100 !important;
  font-weight: 600 !important;
}

.highlight-box strong {
  color: #BF360C !important;
  font-weight: 800 !important;
}

.highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
  color: #E65100;
  background: rgba(245, 127, 23, 0.3);
  padding: 12px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #F57F17;
}

/* Шаги активации */
.steps-container {
  display: grid;
  gap: 25px;
}

.step-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(14, 99, 69, 0.03) 0%, rgba(14, 99, 69, 0.01) 100%);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(14, 99, 69, 0.1);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(14, 99, 69, 0.1);
  border-color: rgba(14, 99, 69, 0.2);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(91, 168, 255, 0.4);
}

.step-content h4 {
  color: #5BA8FF;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.step-content p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Пример расчета */
.example-box {
  background: linear-gradient(135deg, rgba(91, 168, 255, 0.15) 0%, rgba(91, 168, 255, 0.05) 100%);
  border: 2px solid rgba(91, 168, 255, 0.4);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  margin: 25px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(91, 168, 255, 0.2);
}

.example-box::before {
  content: '💰';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  opacity: 0.3;
}

.example-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.amount {
  color: #5BA8FF;
  background: rgba(91, 168, 255, 0.15);
  padding: 8px 16px;
  border-radius: 25px;
  border: 2px solid rgba(91, 168, 255, 0.3);
}

.plus, .equals {
  color: #666;
  font-size: 1.5rem;
  font-weight: 900;
}

.bonus {
  color: #5BA8FF;
  background: rgba(91, 168, 255, 0.15);
  padding: 8px 16px;
  border-radius: 25px;
  border: 2px solid rgba(91, 168, 255, 0.3);
}

.total {
  color: #FF9800;
  background: rgba(255, 152, 0, 0.1);
  padding: 8px 16px;
  border-radius: 25px;
  border: 2px solid rgba(255, 152, 0, 0.2);
}

.example-text {
  color: #5BA8FF;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

/* Информация о вейджере */
.wagering-info {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 152, 0, 0.05) 100%);
  border: 2px solid rgba(255, 152, 0, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
  position: relative;
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.1);
}

.wagering-info::before {
  content: '⚠️';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
}

.wagering-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.7);
  padding: 15px 20px;
  border-radius: 10px;
}

.wagering-label {
  font-weight: 700;
  color: #5BA8FF;
  font-size: 1.1rem;
}

.wagering-value {
  font-weight: 800;
  color: #FF9800;
  font-size: 1.4rem;
  background: rgba(255, 152, 0, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
}

.wagering-example {
  background: rgba(255, 255, 255, 0.7);
  padding: 15px 20px;
  border-radius: 10px;
}

.wagering-example p {
  margin: 0;
  color: #555;
  font-style: italic;
  font-weight: 500;
}

/* Сетка преимуществ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.advantage-item {
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, rgba(14, 99, 69, 0.08) 0%, rgba(14, 99, 69, 0.02) 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid rgba(14, 99, 69, 0.1);
  position: relative;
  overflow: hidden;
}

.advantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #5BA8FF 0%, #4A90E2 100%);
}

.advantage-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(14, 99, 69, 0.15);
  border-color: rgba(14, 99, 69, 0.2);
}

.advantage-item:nth-child(2)::before {
  background: linear-gradient(90deg, #2196F3 0%, #1976D2 100%);
}

.advantage-item:nth-child(2) {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.08) 0%, rgba(33, 150, 243, 0.02) 100%);
  border-color: rgba(33, 150, 243, 0.1);
}

.advantage-item:nth-child(2):hover {
  border-color: rgba(33, 150, 243, 0.2);
  box-shadow: 0 10px 25px rgba(33, 150, 243, 0.15);
}

.advantage-item:nth-child(4)::before {
  background: linear-gradient(90deg, #5BA8FF 0%, #4A90E2 100%);
}

.advantage-item:nth-child(4) {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(76, 175, 80, 0.02) 100%);
  border-color: rgba(76, 175, 80, 0.1);
}

.advantage-item:nth-child(4):hover {
  border-color: rgba(76, 175, 80, 0.2);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.15);
}

.adv-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #5BA8FF;
}

.advantage-item:nth-child(2) .adv-icon {
  color: #2196F3;
}

.advantage-item:nth-child(4) .adv-icon {
  color: #5BA8FF;
}

.advantage-item h4 {
  color: #5BA8FF;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.advantage-item:nth-child(2) h4 {
  color: #2196F3;
}

.advantage-item:nth-child(4) h4 {
  color: #5BA8FF;
}

.advantage-item p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Таблица бонусов */
.bonus-table-section {
  margin: 50px 0;
}

.bonus-table-section h2 {
  text-align: center;
  color: #5BA8FF;
  margin-bottom: 30px;
  font-size: 2rem;
}

.bonus-table-container {
  overflow-x: auto;
}

.bonus-table-modern {
  width: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.table-header {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.table-header .table-cell {
  padding: 20px;
  font-weight: 700;
  text-align: center;
  font-size: 1.1rem;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #dee2e6;
  transition: background-color 0.3s ease;
  position: relative;
}

.table-row:hover {
  background: rgba(91, 168, 255, 0.08);
}

.table-row.highlighted {
  background: rgba(91, 168, 255, 0.1);
}

.table-row.best {
  background: linear-gradient(135deg, rgba(91, 168, 255, 0.15) 0%, rgba(91, 168, 255, 0.1) 100%);
  position: relative;
}

.table-cell {
  padding: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.table-cell.deposit {
  color: #5BA8FF;
}

.table-cell.bonus {
  color: #5BA8FF;
}

.table-cell.total {
  color: #FF9800;
  font-weight: 700;
}

.best-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: #000000;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Финальная промо секция */
.final-promo-section {
  margin: 50px 0;
}

.promo-card.final {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-align: center;
  border: 1px solid rgba(91, 168, 255, 0.3);
}

.final-promo-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.final-promo-header p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

.final-promo-code {
  margin: 40px 0;
}

.final-promo-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.final-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  min-width: 180px;
  justify-content: center;
}

.final-action-btn.primary {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: #000000;
}

.final-action-btn.secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.final-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.final-promo-note {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
}

.final-promo-note p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* Общие правила для предотвращения переполнения */
@media (max-width: 768px) {
  * {
    box-sizing: border-box;
  }
  
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .conteiner,
  .main_conteiner,
  .main,
  .main_text {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    hyphens: auto;
  }
  
  p, div, span {
    word-wrap: break-word;
  }
  
  .promocode-hero {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  
  .promocode-hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .main-promo-section {
    margin-bottom: 30px;
  }
  
  .promo-card {
    padding: 20px;
    margin: 0 10px;
  }
  
  .promo-header h2 {
    font-size: 1.4rem;
  }
  
  .promo-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
  
  .promo-benefits {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .benefit-item {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .promo-code-box {
    flex-direction: column;
    gap: 10px;
    padding: 3px;
  }
  
  .promo-input {
    font-size: 1.2rem;
    padding: 12px;
    letter-spacing: 2px;
  }
  
  .copy-btn {
    min-width: auto;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .promo-action-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .content-section {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .text-block {
    margin: 0 5px;
  }
  
  .block-header {
    padding: 20px;
  }
  
  .block-header h3 {
    font-size: 1.2rem;
  }
  
  .block-content {
    padding: 20px;
  }
  
  .info-block {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    margin: 0 5px 20px 5px;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .example-item {
    font-size: 1rem;
    gap: 8px;
    flex-direction: column;
  }
  
  .amount, .bonus, .total {
    padding: 6px 12px;
    font-size: 1rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .advantage-item {
    padding: 20px;
  }
  
  .bonus-table-section {
    margin: 30px 0;
  }
  
  .bonus-table-section h2 {
    font-size: 1.6rem;
  }
  
  .bonus-table-container {
    margin: 0 5px;
  }
  
  .table-header,
  .table-row {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .table-cell {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
    font-size: 0.9rem;
  }
  
  .table-header .table-cell {
    background: #5BA8FF;
    color: white;
    font-weight: 700;
    font-size: 1rem;
  }
  
  .best-badge {
    position: static;
    display: inline-block;
    margin-top: 8px;
    font-size: 0.7rem;
  }
  
  .final-promo-section {
    margin: 30px 0;
  }
  
  .final-promo-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .final-action-btn {
    min-width: 250px;
    padding: 12px 25px;
  }
  
  .final-promo-note {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  * {
    box-sizing: border-box;
  }
  
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  
  .conteiner {
    padding: 0 10px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .main_conteiner {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .main {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .promocode-hero {
    padding: 25px 10px;
    border-radius: 15px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .promocode-hero h1 {
    font-size: 1.3rem;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    word-wrap: break-word;
  }
  
  .main-promo-section {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .promo-card {
    padding: 15px;
    margin: 0;
    border-radius: 15px;
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
  }
  
  .promo-header h2 {
    font-size: 1.2rem;
  }
  
  .promo-code-box {
    padding: 2px;
  }
  
  .promo-input {
    font-size: 1rem;
    padding: 10px;
    letter-spacing: 1px;
  }
  
  .copy-btn {
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  
  .copy-btn.large {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 150px;
  }
  
  .content-section {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .text-block {
    margin: 0;
    border-radius: 15px;
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
  }
  
  .block-header {
    padding: 15px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .block-header h3 {
    font-size: 1.1rem;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  .block-content {
    padding: 15px;
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
  }
  
  .info-block {
    padding: 15px;
    margin: 0 0 15px 0;
    border-radius: 12px;
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
  }
  
  .highlight-box {
    padding: 20px;
    margin: 20px 0;
    border-radius: 15px;
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
  }
  
  .step-item {
    padding: 12px;
    border-radius: 12px;
  }
  
  .example-box {
    padding: 20px;
    margin: 15px 0;
  }
  
  .wagering-info {
    padding: 15px;
    margin: 15px 0;
  }
  
  .advantage-item {
    padding: 15px;
  }
  
  .adv-icon {
    font-size: 2rem;
  }
  
  .bonus-table-section {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .bonus-table-container {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .modern-table,
  .bonus-table-modern {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .table-cell {
    padding: 10px;
    font-size: 0.85rem;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  
  .final-promo-section {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .final-action-btn {
    min-width: auto;
    width: 100%;
    max-width: 280px;
    padding: 10px 15px;
    font-size: 0.9rem;
    word-wrap: break-word;
  }
  
  .final-promo-note {
    padding: 15px;
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
  }
}

/* ===== СТИЛИ ДЛЯ ОБНОВЛЕННОЙ СТРАНИЦЫ СРАВНЕНИЯ ===== */

/* Герой секция сравнения */
.comparison-hero {
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(135deg, rgba(14, 99, 69, 0.1) 0%, rgba(91, 168, 255, 0.1) 100%);
  border-radius: 25px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.comparison-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(91, 168, 255, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.comparison-hero h1 {
  font-size: 2.5rem;
  color: #5BA8FF;
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Краткий обзор карточки */
.comparison-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.summary-card {
  background: white;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.summary-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.summary-card.winner {
  border: 3px solid #FFD700;
  background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
}

.summary-card.winner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #FFD700 0%, #FFA000 100%);
}

.summary-card.second {
  border: 3px solid #C0C0C0;
}

.summary-card.third {
  border: 3px solid #CD7F32;
}

.card-header {
  text-align: center;
  margin-bottom: 25px;
}

.trophy {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.card-header h3 {
  color: #5BA8FF;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.rating {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #5BA8FF;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
}

.summary-card.winner .rating {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: #000000;
}

.card-body .pros h4 {
  color: #5BA8FF;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.card-body ul {
  list-style: none;
  padding: 0;
}

.card-body li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.card-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5BA8FF;
  font-weight: bold;
}

.summary-card.winner li::before {
  content: '🏆';
}

/* Современная таблица сравнения */
.comparison-table-section {
  margin: 60px 0;
}

.comparison-table-section h2 {
  text-align: center;
  color: #5BA8FF;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.modern-table {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.table-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #5BA8FF;
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1.5fr;
  font-weight: 700;
}

.table-header > div {
  padding: 25px 20px;
  text-align: center;
  font-size: 1.1rem;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1.5fr;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.table-row:hover {
  background: rgba(91, 168, 255, 0.05);
}

.table-row.total {
  background: linear-gradient(135deg, rgba(91, 168, 255, 0.15) 0%, rgba(91, 168, 255, 0.08) 100%);
  border-bottom: none;
}

.table-row > div {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.criterion-cell {
  background: rgba(91, 168, 255, 0.08);
  align-items: flex-start !important;
  text-align: left !important;
  font-weight: 600;
  color: #5BA8FF;
}

.melbet-cell.winner {
  background: linear-gradient(135deg, rgba(91, 168, 255, 0.15) 0%, rgba(91, 168, 255, 0.08) 100%);
  position: relative;
}

.value {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

.melbet-cell.winner .value {
  color: #5BA8FF;
  font-weight: 700;
}

.badge {
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge.best {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: #000000;
}

.badge.fast {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
  color: white;
}

.badge.leader {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
  color: white;
}

.badge.compact {
  background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
  color: white;
}

.badge.profitable {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: white;
}

.badge.reliable {
  background: linear-gradient(135deg, #607D8B 0%, #455A64 100%);
  color: white;
}

.badge.champion {
  background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
  color: #5BA8FF;
  font-weight: 800;
}

/* Преимущества */
.advantages-section {
  margin: 60px 0;
}

.advantages-section h2 {
  text-align: center;
  color: #5BA8FF;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

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

.advantage-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advantage-card.money {
  border-top: 5px solid #5BA8FF;
}

.advantage-card.speed {
  border-top: 5px solid #2196F3;
}

.advantage-card.support {
  border-top: 5px solid #FF9800;
}

.advantage-card.app {
  border-top: 5px solid #9C27B0;
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.advantage-card h3 {
  color: #5BA8FF;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
}

.advantage-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.advantage-stats {
  background: rgba(14, 99, 69, 0.1);
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
}

.stat-item {
  color: #5BA8FF;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Отзывы */
.reviews-section {
  margin: 60px 0;
}

.reviews-section h2 {
  text-align: center;
  color: #5BA8FF;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.review-card.melbet {
  border-left: 5px solid #5BA8FF;
  background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
}

.review-card.competitor {
  border-left: 5px solid #FF9800;
}

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

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.review-meta h4 {
  color: #5BA8FF;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.review-platform {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.review-rating {
  font-size: 1rem;
}

.review-content p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* Рекомендации */
.recommendations-section {
  margin: 60px 0;
}

.recommendations-section h2 {
  text-align: center;
  color: #5BA8FF;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.recommendation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.recommendation-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.recommendation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.recommendation-card.recommended {
  border: 3px solid #5BA8FF;
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.recommendation-card.alternative {
  border: 3px solid #FF9800;
}

.recommendation-card.niche {
  border: 3px solid #2196F3;
}

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

.rec-header h3 {
  color: #5BA8FF;
  font-size: 1.3rem;
  margin: 0;
}

.rec-badge {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.recommendation-card.recommended .rec-badge {
  background: #5BA8FF;
  color: white;
}

.recommendation-card.alternative .rec-badge {
  background: #FF9800;
  color: white;
}

.recommendation-card.niche .rec-badge {
  background: #2196F3;
  color: white;
}

.rec-content h4 {
  color: #5BA8FF;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.rec-content ul {
  list-style: none;
  padding: 0;
}

.rec-content li {
  padding: 8px 0;
  color: #555;
  line-height: 1.5;
}

/* Заключение */
.conclusion-section {
  margin: 60px 0;
}

.conclusion-card {
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: white;
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.conclusion-card h2 {
  color: white;
  margin-bottom: 25px;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.conclusion-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.final-cta {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.final-cta h3 {
  color: #5BA8FF;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

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

.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #5BA8FF 0%, #f1b800 100%);
  color: #5BA8FF;
}

.cta-btn.secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Адаптивность */
@media (max-width: 768px) {
  .comparison-hero h1 {
    font-size: 2rem;
  }
  
  .comparison-summary {
    grid-template-columns: 1fr;
  }
  
  .table-header,
  .table-row {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .table-header > div,
  .table-row > div {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .criterion-cell {
    background: #5BA8FF;
    color: white !important;
    font-weight: 700;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .recommendation-cards {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .comparison-hero {
    padding: 30px 20px;
  }
  
  .summary-card,
  .advantage-card,
  .review-card,
  .recommendation-card {
    padding: 20px;
  }
  
  .conclusion-card {
    padding: 30px 20px;
  }
}

/* Стили для промо-блока RANG */
.promo-highlight {
  background: linear-gradient(135deg, #fff5e6 0%, #fffbf0 100%);
  border: 3px solid #5BA8FF;
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 8px 25px rgba(91, 168, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.promo-highlight::before {
  content: "🌟";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 80px;
  opacity: 0.1;
  transform: rotate(15deg);
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

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

.promo-highlight h3 {
  color: #5BA8FF;
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 800;
}

.promo-highlight p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.promo-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 25px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.benefit-item span:last-child {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.promo-code-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.promo-label {
  font-size: 18px;
  font-weight: 600;
  color: #666;
}

.promo-code {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  padding: 10px 30px;
  border-radius: 10px;
  letter-spacing: 3px;
  box-shadow: 0 4px 12px rgba(91, 168, 255, 0.4);
}

.copy-btn {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #5BA8FF;
  border: 2px solid #5BA8FF;
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(91, 168, 255, 0.3);
}

.copy-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: #000000;
  box-shadow: 0 6px 18px rgba(91, 168, 255, 0.5);
}

.copy-btn:active {
  transform: translateY(0);
}

.promo-note {
  background: rgba(91, 168, 255, 0.1);
  padding: 15px 20px;
  border-left: 4px solid #5BA8FF;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 20px;
}

.promo-link {
  color: #5BA8FF;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.promo-link:hover {
  color: #4A90E2;
  text-decoration: underline;
}

/* Мобильная адаптация промо-блока */
@media (max-width: 768px) {
  .promo-highlight {
    padding: 20px 15px;
  }
  
  .promo-highlight h3 {
    font-size: 20px;
  }
  
  .promo-benefits {
    grid-template-columns: 1fr;
  }
  
  .promo-code {
    font-size: 24px;
    padding: 8px 20px;
  }
  
  .promo-code-block {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================
   НОВЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ ОТЗЫВОВ
   ============================================ */

/* Блок общего рейтинга с трастовыми элементами */
.trust-rating-block {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  padding: 40px;
  margin: 30px 0;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(91, 168, 255, 0.2);
}

.trust-score-main {
  text-align: center;
  margin-bottom: 30px;
}

.score-number {
  font-size: 72px;
  font-weight: 800;
  color: #5BA8FF;
  line-height: 1;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.score-stars {
  font-size: 32px;
  margin: 10px 0;
}

.score-text {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #5BA8FF;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.trust-badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badges .badge {
  background: rgba(91, 168, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(91, 168, 255, 0.3);
}

/* Новые карточки отзывов */
.reviews-new {
  margin-top: 30px;
}

.review-card-new {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.review-card-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: #5BA8FF;
}

.review-card-new.verified {
  border-left: 5px solid #5BA8FF;
}

.review-header-new {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.avatar-new {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  border: 3px solid #5BA8FF;
  box-shadow: 0 4px 12px rgba(91, 168, 255, 0.3);
  flex-shrink: 0;
}

.review-user-info {
  flex: 1;
  min-width: 200px;
}

.user-name {
  font-size: 20px;
  font-weight: 700;
  color: #5BA8FF;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.verified-badge {
  background: #5BA8FF;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.review-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #666;
}

.platform-badge {
  background: #f0f0f0;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.date {
  color: #999;
}

.experience {
  color: #5BA8FF;
  font-weight: 600;
}

.review-rating-new {
  font-size: 24px;
  flex-shrink: 0;
}

.review-content-new h4 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.review-content-new p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.review-footer-new {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

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

.helpful-label {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.helpful-btn {
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.helpful-btn:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
}

.helpful-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.review-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.review-tags .tag {
  background: rgba(14, 99, 69, 0.1);
  color: #5BA8FF;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

/* Новая форма отзыва */
.review-form-new-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 40px;
  margin-top: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid #5BA8FF;
}

.form-header-new {
  text-align: center;
  margin-bottom: 30px;
}

.form-header-new h2 {
  font-size: 32px;
  color: #5BA8FF;
  margin-bottom: 10px;
}

.form-header-new p {
  font-size: 16px;
  color: #666;
}

.review-form-new {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-new {
  margin-bottom: 25px;
}

.form-group-new label {
  display: block;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
  border-color: #5BA8FF;
  outline: none;
  box-shadow: 0 0 0 3px rgba(91, 168, 255, 0.1);
}

.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
}

.star-rating-input input {
  display: none;
}

.star-rating-input label {
  font-size: 40px;
  cursor: pointer;
  color: #ddd;
  transition: all 0.2s ease;
}

.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
  color: #5BA8FF;
}

.char-counter {
  text-align: right;
  font-size: 13px;
  color: #999;
  margin-top: 8px;
}

.form-terms {
  margin: 25px 0;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  position: relative;
  padding-left: 35px;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #5BA8FF;
  border-color: #5BA8FF;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.btn-submit-new {
  width: 100%;
  background: linear-gradient(135deg, #5BA8FF 0%, #4A90E2 100%);
  color: #000000;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(91, 168, 255, 0.4);
}

.btn-submit-new:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #4A90E2 0%, #FFA500 100%);
  box-shadow: 0 10px 30px rgba(91, 168, 255, 0.5);
}

.btn-submit-new:active {
  transform: translateY(0);
}

.thank-you-new {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #5BA8FF;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(91, 168, 255, 0.4);
}

.thank-you-new h3 {
  font-size: 28px;
  color: #5BA8FF;
  margin: 0;
}

.thank-you-new p {
  font-size: 16px;
  color: #666;
  max-width: 500px;
  margin: 0;
}

/* Мобильная адаптация отзывов */
@media (max-width: 768px) {
  .trust-rating-block {
    padding: 25px 20px;
  }
  
  .score-number {
    font-size: 56px;
  }
  
  .score-stars {
    font-size: 24px;
  }
  
  .trust-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .review-card-new {
    padding: 20px;
  }
  
  .review-header-new {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .avatar-new {
    width: 50px !important;
    height: 50px !important;
  }
  
  .user-name {
    font-size: 18px;
  }
  
  .review-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .review-footer-new {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .review-form-new-container {
    padding: 25px 15px;
  }
  
  .form-header-new h2 {
    font-size: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .star-rating-input label {
    font-size: 32px;
  }
}

