/*МОДАЛЬНОЕ ОКНО*/
#age-verification-popup {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 100;
}

.age-verification-content {
  position: relative;
  z-index: 200;
  background: #009739;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid #009739;
  width: 24rem;
}

.age-verification-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.age-verification-subtitle {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.age-verification-button {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  cursor: pointer;
  background: white;
  border: none;
  transition: background-color 0.2s;
  font-size: 1rem;
}

#age-error {
  display: none;
  color: red;
  font-size: 1.25rem;
  margin-top: 10px;
}
