.text-shadow-effect {
  text-shadow: 2px 2px 3px rgba(11, 40, 45, 0.5);
}

/* --- БАЗОВЫЕ СТИЛИ --- */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- МОБИЛЬНАЯ АДАПТАЦИЯ --- */
@media (max-width: 768px) {
  /* Главный блок */
  .main-block {
    padding: 60px 16px !important;
    min-height: auto !important;
    width: 100% !important;
  }

  .main-block h1 {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }

  .main-block .btns {
    flex-direction: column;
    width: 100%;
  }

  /* Карточки */
  .grid {
    grid-template-columns: 1fr !important;
  }

  /* Блок статистики */
  .alpha-stats {
    flex-direction: column;
    align-items: center;
  }

  .alpha-stat {
    width: 100% !important;
    max-width: 280px;
  }

  /* Футер */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-menu {
    flex-direction: column;
    margin: 0 !important;
  }
}

/* --- ГАРАНТИЯ ДЕСКТОПНОГО ВИДА --- */
@media (min-width: 769px) {
  .main-block {
    min-height: 100vh !important;
  }
  
  .grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  .alpha-stats {
    flex-direction: row !important;
    justify-content: center !important;
  }
}