 .site-header { background: var(--secondary-color); padding: 15px 0; box-shadow: 0 4px 8px var(--button-shadow); }
.header-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }

.header-logo img { height: 50px; width: auto; }

.header-nav .nav-list { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }

.header-nav .nav-list .nav-item a { text-decoration: none; font-size: 1rem; font-weight: 600; color: var(--text-color); padding: 8px 12px; transition: color 0.3s ease, transform 0.2s ease; }

.header-nav .nav-list .nav-item a:hover { color: var(--primary-color); transform: translateY(-2px); }

.header-actions { display: flex; gap: 10px; }

.btn { padding: 10px 20px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; text-decoration: none; transition: background 0.3s ease, transform 0.2s ease; cursor: pointer; }

.btn-login { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }

.btn-login:hover { background: var(--primary-color); color: var(--text-color); }

.btn-signup { background: var(--button-bg); color: var(--button-text); border: none; }

.btn-signup:hover { background: var(--button-hover-bg); transform: scale(1.05); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }

.mobile-toggle span { width: 30px; height: 3px; background: var(--text-color); transition: 0.3s ease; }

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }

.mobile-toggle.active span:nth-child(2) { opacity: 0; }

.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) { .header-nav { display: none; } .mobile-toggle { display: flex; } }




/* Unique Footer Styles */
.unique-footer {
  position: relative;
  background-color: #0d0d0d;      /* Dark background */
  color: #e0e0e0;               /* Light text */
  padding: 40px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.unique-footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);  /* Light overlay for subtle effect */
  z-index: 1;
}

.unique-footer-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.unique-footer-info p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Footer Buttons */
.footer-buttons {
  margin-bottom: 20px;
}

.footer-btn {
  display: inline-block;
  margin: 0 10px;
  padding: 8px 16px;
  background-color: #333;  /* Dark button background */
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.footer-btn:hover {
  background-color: #555;
}

.unique-footer-copy p {
  font-size: 14px;
  border-top: 1px solid rgba(224, 224, 224, 0.2);
  padding-top: 10px;
  margin: 0;
  opacity: 0.85;
} .hero-dynamic { position: relative; width: 100%; min-height: 100vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; overflow: hidden; } .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.75); z-index: 1; } .hero-inner { position: relative; z-index: 2; text-align: center; padding: 20px; } .hero-title { font-family: var(--font-secondary); font-size: 3.5rem; text-transform: uppercase; margin-bottom: 20px; color: var(--primary-color); animation: popIn 1s ease-out; } .hero-description { font-family: var(--font-primary); font-size: 1.2rem; margin-bottom: 30px; line-height: 1.5; color: var(--text-color); animation: fadeIn 1s ease-out; } .hero-btn { padding: 12px 30px; font-size: 1rem; border-radius: 8px; background: var(--button-bg); color: var(--button-text); border: none; cursor: pointer; transition: background 0.3s ease, transform 0.3s ease; } .hero-btn:hover { background: var(--button-hover-bg); transform: translateY(-3px); } .hero-arrow { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 2; opacity: 0.7; animation: bounce 2s infinite; } .hero-arrow svg { width: 30px; height: 30px; fill: var(--text-color); } @keyframes popIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } } @media (max-width: 768px) { .hero-title { font-size: 2.5rem; } .hero-description { font-size: 1rem; } .hero-btn { font-size: 0.9rem; padding: 10px 25px; } } @media (max-width: 480px) { .hero-title { font-size: 2rem; } .hero-description { font-size: 0.9rem; } .hero-btn { font-size: 0.8rem; padding: 8px 20px; } }


.stats-circle {
  background: var(--secondary-color);
  padding: 100px 20px;
  text-align: center;
  color: var(--text-color);
}

.stats-circle .container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-circle-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.stats-circle-description {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.stats-circle-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stats-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.circle {
  width: 150px;
  height: 150px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.circle:hover {
  transform: scale(1.05);
}

.circle-number {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--accent-color);
}

.circle-label {
  font-family: var(--font-primary);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-color);
  margin: 0;
}

@media (max-width: 768px) {
  .stats-circle-items {
    flex-direction: column;
    gap: 30px;
  }
  .circle {
    width: 120px;
    height: 120px;
  }
  .circle-number {
    font-size: 2rem;
  }
  .circle-label {
    font-size: 0.9rem;
  }
}


.about-split {
  padding: 80px 20px;
  background: var(--background-color);
  color: var(--text-color);
  position: relative;
}

.about-split .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.about-split-wrapper {
  display: flex;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image-side {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.about-image-side img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
  /* Diagonal clip-path for a unique effect */
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.about-image-side:hover img {
  transform: scale(1.05);
}

.about-text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.about-description {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.about-list li {
  font-family: var(--font-primary);
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.btn.about-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--button-bg);
  color: var(--button-text);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn.about-btn:hover {
  background: var(--button-hover-bg);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .about-split-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-image-side, .about-text-side {
    flex: 0 0 100%;
  }
  .about-title {
    font-size: 2.2rem;
  }
  .about-description {
    font-size: 1rem;
  }
}



/* Cookie Section Styles */
.cookie-section {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  /* Дополнительные стили для контейнера, если нужно */
}

.cookie-popup {
  display: none;  /* Управляется через JS */
  background: var(--secondary-color);
  color: var(--text-color);
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-family: var(--font-primary);
  max-width: 90%;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-popup p {
  margin: 0;
  font-size: 16px;
  flex: 1 1 auto;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
}


.parallax-variant-3 {
  position: relative;
  overflow: hidden;
  height: 40rem;
  background-color: var(--background-color);
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 1;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.parallax-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  padding: 1rem;
  color: var(--primary-color);
}

.parallax-heading {
  font-family: var(--font-secondary);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.parallax-subtitle {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .parallax-heading {
    font-size: 2.5rem;
  }
  .parallax-subtitle {
    font-size: 1rem;
  }
}



.cards-section {
  padding: 50px 15px;
  text-align: center;
  background: #f9f9f9;
}

/* === 📌 Заголовки === */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

/* === 📌 Сетка карточек === */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr; /* Мобильные: 1 колонка */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* === 📌 Карточка === */
.card {
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}

/* === 📌 Изображение карточки === */
.card-image {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  height: 180px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

/* === 📌 Контент карточки === */
.card-content {
  padding: 15px;
  text-align: center;
}

/* === 📌 Заголовок карточки === */
.card-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

/* === 📌 Описание карточки === */
.card-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

/* === 📌 Кнопка === */
.btn-primary {
  display: inline-block;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  background: #008CFF;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.btn-primary:hover {
  background: #006dcc;
}

/* === 📌 Адаптация для планшетов (768px+) === */
@media (min-width: 768px) {
  .cards-grid {
      grid-template-columns: repeat(1, 1fr); /* 2 карточки в ряд */
  }
}

/* === 📌 Адаптация для десктопов (1024px+) === */
@media (min-width: 1024px) {
  .cards-grid {
      grid-template-columns: repeat(3, 1fr); /* 3 карточки в ряд */
  }
}


.features-mod-2 {
  background: linear-gradient(135deg, var(--background-color), var(--secondary-color));
  padding: 80px 20px;
  color: var(--text-color);
}

.features-mod-2 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-header {
  text-align: center;
  margin-bottom: 40px;
}

.features-heading {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.features-subheading {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.8;
}

.features-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.feature-name {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feature-text {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
}


.games-flip {
  padding: 80px 20px;
  background: var(--background-color);
  text-align: center;
  color: var(--text-color);
}

.games-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.games-heading {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.games-subheading {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.8;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 320px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.flip-card-front {
  background: var(--games-card-bg, #fff);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.flip-card-inner:hover .card-image {
  transform: scale(1.05);
}

.flip-card-back {
  background: rgba(0, 0, 0, 0.85);
  color: var(--button-text, #fff);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.game-title {
  font-family: var(--font-secondary, sans-serif);
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.game-description {
  font-family: var(--font-primary, sans-serif);
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--button-text, #fff);
}

.game-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--button-bg, #e91e63);
  color: var(--button-text, #fff);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.game-button:hover {
  background: var(--button-hover-bg, #d81b60);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .games-heading {
    font-size: 2.2rem;
  }
  .games-subheading {
    font-size: 1rem;
  }
  .flip-card-inner {
    height: 280px;
  }
  .game-title {
    font-size: 1.6rem;
  }
  .game-description {
    font-size: 0.9rem;
  }
  .game-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}



/* === Глобальные переменные FAQ === */
:root {
    --faq-bg: var(--background-color);
    --faq-text-color: var(--text-color);
    --faq-title-color: var(--primary-color);
    --faq-card-bg: var(--card-bg);
    --faq-border-color: var(--shadow-color);
    --faq-hover-bg: var(--button-hover-bg);
    --faq-toggle-color: var(--primary-color);
}

/* === Основные стили секции FAQ === */
.faq-section {
    background: var(--faq-bg);
    color: var(--faq-text-color);
    padding: 80px 20px;
    text-align: center;
}

/* Контейнер */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Заголовок */
.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--faq-title-color);
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--faq-text-color);
    margin-bottom: 40px;
}

/* === Грид для карточек === */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

/* === Карточки FAQ === */
.faq-item {
    background: var(--faq-card-bg);
    border-radius: 10px;
    border: 2px solid var(--faq-border-color);
    box-shadow: 0 4px 8px var(--faq-border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

/* === Заголовки карточек === */
.faq-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--faq-text-color);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-button {
    color: var(--faq-hover-bg);
}

/* === Иконка открытия === */
.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--faq-toggle-color);
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* === Ответы (анимация раскрытия) === */
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 150px;
    opacity: 1;
    padding-bottom: 15px;
}

/* === Адаптивность === */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}


 


/* Секция горизонтальной контактной формы */
    .contact-form-horizontal {
      background: var(--background-color);
      padding: 40px 20px;
      margin: 40px auto;
      max-width: 800px;
      border-radius: 12px;
      border: 2px solid var(--primary-color);
      position: relative;
      overflow: hidden;
    }

    /* Оверлей для легкого затемнения фона секции */
    .contact-form-horizontal::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay-bg);
      z-index: 0;
    }

    /* Контейнер внутри секции */
    .container {
      position: relative;
      z-index: 1;
      padding: 0 20px;
      box-sizing: border-box;
    }

    /* Заголовок формы */
    .contact-form-horizontal__title {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    /* Форма располагается вертикально, но ряды содержат поля, выстроенные горизонтально */
    .contact-form-horizontal form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* Ряды формы */
    .contact-form-horizontal__row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* Поля формы (Name, Email) */
    .contact-form-horizontal__field {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    /* Поле для сообщения занимает больше места */
    .contact-form-horizontal__field--message {
      flex: 2;
    }

    /* Контейнер для кнопки (выравнивание по нижней границе) */
    .contact-form-horizontal__field--btn {
      display: flex;
      align-items: flex-end;
    }

    /* Метки полей */
    .contact-form-horizontal label {
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      color: var(--text-color);
      margin-bottom: 5px;
    }

    /* Поля ввода и textarea */
    .contact-form-horizontal input,
    .contact-form-horizontal textarea {
      padding: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      border: 1px solid var(--input-border);
      border-radius: 8px;
      outline: none;
      transition: border 0.3s ease;
      background: var(--input-bg);
      color: var(--text-color);
    }

    /* Фокус на полях ввода */
    .contact-form-horizontal input:focus,
    .contact-form-horizontal textarea:focus {
      border-color: var(--primary-color);
    }

    /* Кнопка отправки */
    .submit-btn {
      width: 100%;
      padding: 12px;
      background: var(--button-bg);
      color: var(--button-text);
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      font-weight: bold;
      text-transform: uppercase;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
      box-shadow: var(--button-shadow);
    }

    /* Эффект при наведении на кнопку */
    .submit-btn:hover {
      background: var(--button-hover-bg);
      transform: scale(1.05);
    }

    /* Сообщение об успешной отправке */
    #success-message {
      display: none;
      text-align: center;
      font-size: 1.2rem;
      font-weight: bold;
      color: var(--secondary-color);
      margin-top: 20px;
      opacity: 0;
      animation: fadeIn 0.5s ease-in-out forwards;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Адаптивность: на узких экранах ряды располагаются вертикально */
    @media (max-width: 600px) {
      .contact-form-horizontal__row {
        flex-direction: column;
      }
      .contact-form-horizontal__field--btn {
        width: 100%;
      }
    }

