 .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;
}

.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; } }



.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-new {
  background: var(--features-bg);
  padding: 80px 20px;
  text-align: center;
  color: var(--features-text-color);
}

.features-new .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-heading {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  color: var(--features-title-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.features-subheading {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--features-subtitle-color);
  margin-bottom: 40px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--features-card-bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px var(--features-card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px var(--features-card-shadow);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--features-icon-bg);
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.feature-card-title {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--features-title-color);
  text-transform: uppercase;
}

.feature-card-text {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--features-text-color);
}

@media (max-width: 768px) {
  .features-heading {
    font-size: 2.2rem;
  }
  .features-subheading {
    font-size: 1rem;
  }
}


/* === Глобальные переменные для секции игр === */
:root {
    --games-bg: var(--background-color); /* Фон секции */
    --games-text-color: var(--text-color); /* Цвет текста */
    --games-title-color: var(--primary-color); /* Цвет заголовка */
    --games-card-bg: var(--card-bg); /* Фон карточек */
    --games-overlay-bg: rgba(0, 0, 0, 0.7); /* Оверлей при наведении */
    --games-btn-bg: var(--button-bg); /* Цвет кнопки */
    --games-btn-hover-bg: var(--button-hover-bg); /* Цвет кнопки при наведении */
}

/* === Общие стили для секции игр === */
.games-section {
    background: var(--games-bg);
    color: var(--games-text-color);
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

/* Контейнер */
.games-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Заголовок */
.games-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--games-title-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease-in-out;
}

/* Подзаголовок */
.games-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-in-out;
}

/* === Сетка карточек === */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    animation: fadeIn 1.2s ease-in-out;
}

/* === Карточки игр === */
.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--games-card-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.game-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px var(--shadow-color);
}

/* Изображение игры */
.game-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image {
    transform: scale(1.1);
}

/* === Оверлей (при наведении) === */
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--games-overlay-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

/* Заголовок внутри оверлея */
.game-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--games-title-color);
    margin-bottom: 10px;
}

/* Описание внутри оверлея */
.game-description {
    font-size: 1rem;
    color: var(--games-text-color);
    margin-bottom: 20px;
    text-align: center;
}

/* Кнопка в карточке */
.game-link {
    display: inline-block;
    padding: 12px 25px;
    background: var(--games-btn-bg);
    color: var(--button-text);
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.game-link:hover {
    background: var(--games-btn-hover-bg);
    transform: scale(1.05);
}

/* === Анимации === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Адаптивность === */
@media (max-width: 768px) {
    .games-section {
        padding: 60px 15px;
    }

    .games-title {
        font-size: 2rem;
    }

    .games-subtitle {
        font-size: 1rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-heading {
        font-size: 1.3rem;
    }

    .game-description {
        font-size: 0.9rem;
    }

    .game-link {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}


.parallax-section {
  position: relative;
  overflow: hidden;
  height: 30rem;
  background-color: var(--background-color);
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-repeat: no-repeat;
  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-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  padding: 1rem;
  color: var(--primary-color);
}

.parallax-title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.parallax-text {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .parallax-title {
    font-size: 2rem;
  }
  .parallax-text {
    font-size: 1rem;
  }
}


.about-us-unique {
  padding: 60px 20px;
  background: var(--background-color);
}

.about-us-unique .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-info {
  flex: 1;
}

.about-heading {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.about-text {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--text-color);
}

.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);
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.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:hover {
  background: var(--button-hover-bg);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    margin-top: 20px;
  }
  .about-heading {
    font-size: 2.2rem;
  }
  .about-text {
    font-size: 1rem;
  }
}


/* Cookie Consent Modal Variant 2 Styles */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);  /* затемнение фона */
  display: none;  /* показывается через JS */
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.cookie-modal {
  background: var(--background-color);
  color: var(--text-color);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  font-family: var(--font-primary);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--text-color);
  cursor: pointer;
}

.cookie-modal h2 {
  margin-top: 0;
  font-family: var(--font-secondary);
  color: var(--primary-color);
}

.cookie-modal p {
  font-size: 16px;
  margin: 20px 0;
}

.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.cookie-modal-actions .btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease;
  background: var(--button-bg);
  color: var(--button-text);
  box-shadow: 0 4px 8px var(--button-shadow);
}

.cookie-modal-actions .btn:hover {
  background: var(--button-hover-bg);
}

.cookie-modal-actions .btn.secondary {
  background: var(--button-secondary-bg);
  color: var(--button-secondary-text);
}


/* === Глобальные переменные 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-card {
    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;
    cursor: pointer;
    overflow: hidden;
}

.faq-card.open {
    background: var(--faq-hover-bg);
}

/* === Заголовки карточек === */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* === Иконка открытия === */
.faq-toggle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--faq-toggle-color);
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.faq-card.open .faq-toggle {
    transform: rotate(45deg);
}

/* === Ответы (анимация раскрытия) === */
.faq-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    padding: 0 20px;
}

.faq-card.open .faq-body {
    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;
    }
}


/* Секция статистики с затемнением фона */
.stats-section {
  position: relative;
  background: var(--background-color);
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.stats-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

/* Блок с изображением */
.stats-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeInLeft 1s ease-in-out;
}

.stats-image img {
  width: 100%;
  max-width: 500px;
  /* Изменено: вместо переменной скругления задаем 50% для круглого изображения */
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease-in-out;
}

.stats-image img:hover {
  transform: scale(1.05);
}

/* Блок с контентом */
.stats-content {
  flex: 1;
  text-align: left;
  animation: fadeInRight 1s ease-in-out;
}

.stats-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.stats-description {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Сетка статистических карточек */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.stats-item {
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.stats-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
  margin: 0;
}

.stats-label {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-color);
  margin-top: 10px;
}

/* Анимации появления */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .stats-layout {
    flex-direction: column;
    text-align: center;
  }
  
  .stats-content {
    text-align: center;
  }
}





/* Стили формы используют переменные из темы */
.contact-form {
    background: var(--background-color);
    padding: 40px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form__content {
    background: #FFFFFF; /* Для полей ввода оставляем белый фон */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.contact-form h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-form label {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    text-align: left;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
    background: #FFFFFF;
    color: var(--text-color);
    font-size: 1rem;
    border-radius: 8px;
    outline: none;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 25px;
    background: var(--button-bg);
    color: var(--button-text);
    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;
}

.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: 768px) {
    .contact-form {
        padding: 60px 15px;
    }

    .contact-form__content {
        padding: 30px;
    }

    .contact-form h2 {
        font-size: 2rem;
    }

    .contact-form label {
        font-size: 1rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

