/* --- Сброс и базовые стили --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --vh: 1vh;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Контент занимает всё пространство */
main {
  flex: 1;
}

/* --- ФОН --- */
.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  z-index: -2;
}

.bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease-in-out;
}

.bg-low-quality {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url('../assets/header-bg-small.webp');
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.bg-high-quality {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url('../assets/header-bg-full.webp');
  background-size: cover;
  background-position: center;
  opacity: 0;
}

/* --- КОНТЕНТ --- */
.content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Хедер --- */
header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 20px 10px;
  text-align: center;
  width: 100%;
  opacity: 0;
  animation: fadeIn 3s ease forwards;
}

header h1 {
  font-size: clamp(2.2em, 5vw, 4em);
  margin: 0;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

header p {
  font-size: 14px; /* уменьшили */
  margin-top: 15px;
  opacity: 0.95;
  max-width: 90%;
}

/* --- Кнопочные блоки --- */
.buttons-columns {
  display: flex;
  flex-direction: column;
  gap: 0; /* Убираем ВЕРТИКАЛЬНЫЙ зазор между кнопочными колонками */
  margin-top: 30px;
  margin-bottom: 10px;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

.button-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(40,40,40,0.8);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  
  /* АНИМАЦИЯ ТОЛЬКО ДЛЯ ДЕСКТОПА */
  transform: translateY(-50px);
  opacity: 0;
  animation: slideDown 2.5s ease forwards;
}

.button-desc {
  font-size: 0.95em;
  color: #eee;
  margin-top: 15px;
  max-width: 100%;
  line-height: 1.5;
}

/* --- Кнопки --- */
.cta-button, .proxy-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 16px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  width: 100%;
  max-width: 320px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

/* Красная кнопка */
.cta-button {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
}
.cta-button:hover {
  background: linear-gradient(135deg, #991b1b, #7f1d1d);
  transform: scale(1.05);
}

/* Белая кнопка */
.proxy-button {
  background: linear-gradient(135deg, #ffffff, #f3f3f3);
  color: #1e3a8a;
}
.proxy-button:hover {
  background: linear-gradient(135deg, #e5e5e5, #d4d4d4);
  transform: scale(1.05);
}

/* --- Главная секция --- */
.main-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 0; /* Убираем ВЕРТИКАЛЬНЫЙ зазор между колонками */
  max-width: 1200px;
  min-width: 0;
  margin: 10px auto;
  padding: 0 40px; /* Оставляем только горизонтальные отступы */
  width: 100%;
}

.left-column, .center-column, .right-column {
  background: rgba(40,40,40,0.7);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 3s ease forwards;
}

.center-column .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card {
  background: rgba(50,50,50,0.6);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.05);
}

.online {
  color: #22c55e;
  font-weight: bold;
}

/* --- Футер --- */
footer {
  padding: 50px 20px;
  text-align: center;
  font-size: 1em;
  background: rgba(17, 17, 17, 0.95);
  width: 100%;
  border-top: 2px solid #333;

  opacity: 0;                  /* скрыт в начале */
  animation: fadeInFooter 2s ease-in forwards;
  animation-delay: 1.2s;       /* появится чуть позже */
}

footer a {
  color: #ef4444;
  font-weight: bold;
  text-decoration: none;
}

footer p {
  margin: 0 0 10px 0; /* снизу 10px, сверху 0 */
}

footer p:last-child {
  margin-bottom: 0; /* чтобы последний параграф не имел лишнего отступа */
}


/* --- Заголовки --- */
h2 {
  font-size: clamp(1.6em, 4vw, 2.4em);
  margin-bottom: 25px;
  text-align: center;
  color: #fff;
}

/* --- Флаги --- */
.flag {
  width: 28px;
  height: 21px;
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 3px;
  object-fit: cover;
}

/* Убираем нижние отступы у всех колонок */
.button-column,
.left-column, 
.center-column, 
.right-column {
  margin-bottom: 0;
  margin-top: 0;
}

/* --- Адаптив для ПК --- */
@media (min-width: 992px) {
  .buttons-columns {
    flex-direction: row;
    justify-content: center;
    gap: 30px; /* Оставляем ГОРИЗОНТАЛЬНЫЙ зазор */
  }
  
  .button-column {
    width: 50%; /* Равная ширина для двух колонок */
    max-width: none;
    border-radius: 0;
  }
  
  /* Скругления углов для первой и последней колонки */
  .button-column:first-child {
    border-radius: 16px 16px 16px 16px;
  }
  
  .button-column:last-child {
    border-radius: 16px 16px 16px 16px;
  }
  
  .main-content {
    flex-direction: row;
    justify-content: center;
    gap: 30px; /* Оставляем ГОРИЗОНТАЛЬНЫЙ зазор */
  }
  
  .left-column, .center-column, .right-column {
    width: 45%; /* Каждая колонка 45% ширины */
    flex: none; /* Отключаем flex-grow чтобы ширина была фиксированной */
    min-height: 320px;
    border-radius: 0;
  }
  
  /* Скругления углов  */
  .left-column {
    border-radius: 16px 16px 16px 16px;
  }
  
  .center-column {
    border-radius: 16px 16px 16px 16px;
  }

  .right-column {
    border-radius: 16px 16px 16px 16px;
  }
}

/* --- Адаптив для планшетов --- */
@media (min-width: 768px) and (max-width: 991px) {
  .main-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0; /* Убираем ВЕРТИКАЛЬНЫЙ зазор между колонками */
    margin: 10px auto;
    padding: 0 20px;
  }
  
  .left-column, .right-column {
    width: 50%;
    margin: 0; /* Убираем отступы */
    border-radius: 0;
  }
  
  .center-column {
    width: 100%;
    order: 3;
    margin: 0; /* Убираем отступы */
    border-radius: 16px 16px 16px 16px;
  }
  
  .left-column {
    border-radius: 16px 16px 16px 16px;
  }
  
  .right-column {
    border-radius: 16px 16px 16px 16px;
  }
  
  /* Убираем вертикальные отступы между рядами */
  .left-column,
  .right-column {
    margin-bottom: 0;
  }
  
  .center-column {
    margin-top: 0;
  }
}



/* --- Адаптив для мобильных --- */
@media (max-width: 767px) {
  .buttons-columns {
    gap: 0; /* Убираем зазор */
    border-radius: 16px;
  }
  
  .button-column {
    border-radius: 16px;
    margin-bottom: 20px; /* Добавляем отступ между колонками */
  }
  
  .button-column:first-child {
    border-radius: 16px 16px 16px 16px;
  }
  
  .button-column:last-child {
    margin-bottom: 0;
  }
  
  .main-content {
    gap: 0; /* Убираем ВЕРТИКАЛЬНЫЙ зазор */
    padding: 0 15px;
  }
  
  .left-column, .center-column, .right-column {
    border-radius: 16px;
    margin-bottom: 20px; /* Добавляем отступ между колонками */
  }
  
  .left-column {
    border-radius: 16px 16px 16px 16px;
  }
  
  .center-column {
    border-radius: 16px 16px 16px 16px;
  }

  .right-column {
    border-radius: 16px 16px 16px 16px;
  }
  .right-column:last-child {
    margin-bottom: 0;
  }
}

/* --- Анимации --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInFooter {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in-text {
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

.fade-in-text:nth-child(1) {
  animation-delay: 0.3s; /* h1 */
}

.fade-in-text:nth-child(2) {
  animation-delay: 0.8s; /* p */
}

.main-title {
  font-size: 7.375rem; /* уменьшено на 10px */
  margin-top: 100px;
  margin-bottom: 0px;
  text-align: center;
}

.main-subtitle {
  font-size: 1.625rem; /* увеличено на 10px */
  margin-bottom: 120px;
  text-align: center;
  color: #ccc;
}

.buttons-columns {
  margin-top: 60px;     /* блоки ещё дальше от текста */
  margin-bottom: 10px;
}

/* 📱 Оптимизация для телефонов */
@media (max-width: 768px) {
  .main-title {
    font-size: 3rem;     /* вместо 3rem */
    margin-top: 60px;
  }

  .main-subtitle {
    font-size: 1.1rem;   /* вместо 1.5rem */
    margin-bottom: 40px;
    padding: 0 10px;     /* чуть меньше ширина */
  }

  .buttons-columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;           /* расстояние между блоками */
    margin-top: 40px;
  }

  .button-column {
    max-width: 90%;      /* кнопки растягиваются почти на всю ширину */
    text-align: center;
  }

  .cta-button, .proxy-button {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    padding: 14px;
  }

  .main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    text-align: center;
  }

  .left-column, .center-column, .right-column {
    width: 100%;
  }

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

  .card {
    font-size: 0.95rem;
    padding: 10px;
  }

  footer {
    font-size: 0.9rem;
    padding: 30px 10px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2.6rem;
  }

  .main-subtitle {
    font-size: 1rem;
  }

  .cta-button, .proxy-button {
    font-size: 1rem;
    padding: 12px;
  }

  .card {
    font-size: 0.85rem;
  }
}

/* 📱 Мобильные стили — полностью отключаем анимацию */
@media (max-width: 767px) {
  /* Header становится статичным */
  header {
    animation: none !important;
    opacity: 1 !important;
  }

  /* Кнопочные блоки */
  .button-column {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Основные колонки */
  .left-column,
  .center-column,
  .right-column {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Заголовки и подзаголовки */
  .fade-in-text {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Футер */
  footer {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.button-column,
.left-column,
.center-column,
.right-column {
  background: rgba(40, 40, 40, 0.5); /* полупрозрачный фон */
  backdrop-filter: blur(10px);       /* размытие фона за блоком */
  -webkit-backdrop-filter: blur(10px); /* для Safari */
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
