/* Age Verification Modal */
.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.age-verification-modal.active {
  display: flex;
}

.age-verification-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.age-verification-modal__content {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.age-verification-modal__logo {
  margin-bottom: 2rem;
  display: flex;
justify-content: center;
}

.age-verification-modal__logo img {
  max-width: 200px;
  height: auto;
}

.age-verification-modal__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.age-verification-modal__text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.age-verification-modal__checkbox {
  margin-bottom: 2rem;
}

.age-verification-modal__checkbox label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: #1a1a1a;
}

.age-verification-modal__checkbox input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
  accent-color: #00A0B0;
}

.age-verification-modal__button {
  width: 100%;
  padding: 1rem 2rem;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.age-verification-modal__button:hover:not(:disabled) {
  background: #00A0B0;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 160, 176, 0.3);
}

.age-verification-modal__button:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.age-verification-modal__footer {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.age-verification-modal__footer a {
  color: #00A0B0;
  text-decoration: underline;
}

.age-verification-modal__exit {
  display: inline-block;
  font-size: 0.875rem;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.age-verification-modal__exit:hover {
  color: #666;
  text-decoration: underline;
}

/* Prevent scrolling when modal is active */
body.age-verification-active {
  overflow: hidden;
}

@media (max-width: 768px) {
  .age-verification-modal__content {
    padding: 2rem 1.5rem;
    max-width: 90%;
  }
  
  .age-verification-modal__title {
    font-size: 1.5rem;
  }
  
  .age-verification-modal__logo img {
    max-width: 150px;
  }
}
