.age-verification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-verification__modal {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.age-verification__title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.age-verification__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.age-verification__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.age-verification__btn {
  padding: 15px 40px;
  border: none;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 120px;
}

.age-verification__btn--yes {
  background-color: #28a745;
  color: #fff;
}

.age-verification__btn--yes:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.age-verification__btn--no {
  background-color: #dc3545;
  color: #fff;
}

.age-verification__btn--no:hover {
  background-color: #c82333;
  transform: translateY(-2px);
}

.age-verification__warning {
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.age-verification__warning--show {
  opacity: 1;
}

.site-content {

  transition: opacity 0.5s ease;
}

.site-content--visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  z-index: 9999;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-banner--show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-banner__btn {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-banner__btn--accept {
  background-color: #ffd700;
  color: #1a1a2e;
}

.cookie-banner__btn--accept:hover {
  background-color: #ffed4e;
  transform: translateY(-1px);
}

.cookie-banner__btn--learn {
  background-color: transparent;
  color: #ffd700;
  border: 1px solid #ffd700;
}

.cookie-banner__btn--learn:hover {
  background-color: #ffd700;
  color: #1a1a2e;
}

.header__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header__mobile-menu--active {
  display: block;
}

.header__mobile-menu .header__nav-list {
  flex-direction: column;
  gap: 15px;
}

.header__mobile-menu .header__nav-link {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-success {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid #28a745;
  color: #28a745;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

.form-error {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #dc3545;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
