/* Age restriction modal for MidnightLoungeBar */
.mlb-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(255,75,62,0.35), transparent 65%),
              rgba(5, 6, 11, 0.96);
  backdrop-filter: blur(16px);
}

.mlb-age-modal {
  max-width: 420px;
  margin: 0 1.25rem;
  background: #05060b;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  padding: 1.6rem 1.5rem 1.4rem;
  text-align: center;
  color: #ffffff;
}

.mlb-age-title {
  margin: 0 0 0.75rem;
  font-family: "Oswald", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mlb-age-desc {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: #e2e2e2;
  line-height: 1.5;
}

.mlb-age-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mlb-age-btn {
  border-radius: 999px;
  border: none;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mlb-age-btn--yes {
  background: linear-gradient(90deg, #ffb400, #ff4b3e);
  color: #05060b;
}

.mlb-age-btn--yes:hover {
  background: linear-gradient(90deg, #ffe27a, #ff7b5c);
}

.mlb-age-btn--no {
  background: transparent;
  color: #f7f7f7;
  border: 1px solid rgba(247, 247, 247, 0.6);
}

.mlb-age-btn--no:hover {
  background: rgba(247, 247, 247, 0.08);
}

.mlb-age-btn:focus-visible {
  outline: 2px solid #ffdf6b;
  outline-offset: 3px;
}

@media (min-width: 600px) {
  .mlb-age-modal {
    padding-inline: 2rem;
  }

  .mlb-age-actions {
    flex-direction: row;
    justify-content: center;
  }
}
