/* Age Consent Overlay Styles */
.age-consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.age-consent-overlay.show {
  opacity: 1;
  visibility: visible;
}

.age-consent-container {
  width: 350px;
  max-width: 90vw;
  padding: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.age-consent-title {
  font-family: "Arial", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 0;
}

.age-consent-message {
  font-family: "Arial", sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.age-consent-warning {
  font-family: "Arial", sans-serif;
  font-size: 14px;
  color: #f39c12;
  font-style: italic;
  margin-bottom: 30px;
}

.age-consent-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.age-consent-btn {
  flex: 1;
  color: white;
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Arial", sans-serif;
}

.age-consent-accept {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

.age-consent-deny {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  box-shadow: 0 4px 10px rgba(192, 57, 43, 0.3);
}

.age-consent-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .age-consent-container {
    width: 300px;
    padding: 20px;
  }

  .age-consent-title {
    font-size: 20px;
  }

  .age-consent-message {
    font-size: 14px;
  }

  .age-consent-buttons {
    flex-direction: column;
  }
}
