/* Age restriction (18+) modal styles */

.bt-age-gate {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.bt-age-gate--active {
  display: block;
}

.bt-age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(255, 0, 102, 0.48) 0%, rgba(0, 0, 0, 0.96) 45%, rgba(0, 0, 0, 0.98) 100%);
  backdrop-filter: blur(6px);
}

.bt-age-gate__modal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.bt-age-gate__content {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: radial-gradient(circle at 0 0, rgba(255, 51, 102, 0.35) 0%, #05030b 40%, #05030b 100%);
  border-radius: 1.25rem;
  border: 1px solid rgba(123, 44, 255, 0.9);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.95);
  padding: 1.75rem 1.75rem 1.5rem;
  color: #fdfbff;
}

.bt-age-gate__title {
  font-family: "Rajdhani", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.bt-age-gate__description {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: #e2d7ff;
  margin-bottom: 1.25rem;
}

.bt-age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bt-age-gate__button {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.bt-age-gate__button--primary {
  background: linear-gradient(90deg, #ff3366, #ff0066, #7b2cff);
  color: #05030b;
  box-shadow: 0 0 22px rgba(255, 51, 102, 0.9);
}

.bt-age-gate__button--secondary {
  background: transparent;
  border-color: rgba(0, 229, 255, 0.9);
  color: #fdfbff;
}

.bt-age-gate__button:hover,
.bt-age-gate__button:focus-visible {
  filter: brightness(1.08);
}

.bt-age-gate__button:focus-visible {
  outline: 2px solid #00e5ff;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .bt-age-gate__content {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .bt-age-gate__actions {
    flex-direction: column;
  }

  .bt-age-gate__button {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bt-age-gate__content,
  .bt-age-gate__backdrop,
  .bt-age-gate__button {
    transition: none !important;
  }
}
