@charset "UTF-8";
/* Подключённый шрифт */
body,
html {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.site-header {
  background-color: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.site-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo-link {
  display: inline-block;
}
.site-header .logo-link .logo-img {
  height: 60px;
  width: auto;
}
.site-header .header-nav {
  display: flex;
  gap: 1rem;
}
.site-header .header-nav .btn {
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.site-header .header-nav .btn:hover {
  background-color: #0056b3;
}

.popup {
  display: none;
  /* по умолчанию скрыто */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup .popup-content {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
}
.popup .popup-content .popup-logo {
  width: 150px;
  margin-bottom: 1rem;
}
.popup .popup-content form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.popup .popup-content form input {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}
.popup .popup-content form input:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.popup .popup-content form .btn {
  background-color: #007bff;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.popup .popup-content form .btn:hover {
  background-color: #0056b3;
}
.popup .popup-content .switch-link {
  margin-top: 1rem;
}
.popup .popup-content .switch-link a {
  color: #007bff;
  font-size: 0.9rem;
  text-decoration: none;
}
.popup .popup-content .switch-link a:hover {
  text-decoration: underline;
}

/* Анимация появления */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.hero-section .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.hero-section .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-section .hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-section .hero-btn {
  background-color: #fff;
  color: #007bff;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-section .hero-btn:hover {
  background-color: #007bff;
  color: #fff;
}

.about-section {
  background-color: #ffffff;
  color: #333;
  padding: 3rem 0;
}
.about-section .section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.about-section p {
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 1rem;
}

.responsible-section {
  background-color: #f9f9f9;
  padding: 3rem 0;
  text-align: center;
}
.responsible-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.responsible-section p {
  max-width: 900px;
  margin: 0 auto 1rem auto;
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 1rem;
}
.responsible-section p a {
  color: #007bff;
  text-decoration: none;
}
.responsible-section p a:hover {
  text-decoration: underline;
}
.responsible-section .responsible-logos {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.responsible-section .responsible-logos img {
  height: 60px;
  width: auto;
}

.site-footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
.site-footer p {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.verification-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.verification-popup .verification-content {
  background-color: #f0fff4;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: slideDown 0.4s ease;
}
.verification-popup .verification-content p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2f855a;
  margin-bottom: 1.5rem;
}
.verification-popup .verification-content .verify-close-btn {
  padding: 0.6rem 1.8rem;
  background-color: #38a169;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.verification-popup .verification-content .verify-close-btn:hover {
  background-color: #2f855a;
}

/* Анимация появления сверху */
@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#agePopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  /* показываем по умолчанию */
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
#agePopup .age-popup-content {
  background: #ffffff;
  padding: 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
#agePopup .age-popup-content p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
#agePopup .age-popup-content button {
  margin: 0.5rem;
  padding: 0.6rem 1.8rem;
  font-size: 1rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#agePopup .age-popup-content button:hover {
  background-color: #0056b3;
}
#agePopup .age-popup-content #deny-age {
  background: #6c757d;
}
#agePopup .age-popup-content #deny-age:hover {
  background: #5a6268;
}/*# sourceMappingURL=style.css.map */