.agegate-lock {
  overflow: hidden !important;
}

.agegate-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.agegate-dialog {
  width: min(440px, 100%);
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  padding: 26px;
}

.agegate-brand {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 10px;
  margin-bottom: 18px;
  border-radius: 4px;
  background: #f89b22;
  color: #111;
  font-size: 18px;
  font-weight: 800;
  line-height: 32px;
}

.agegate-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.agegate-content {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
  white-space: pre-line;
}

.agegate-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.agegate-button {
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

.agegate-confirm {
  background: #f89b22;
  color: #111;
}

.agegate-reject {
  background: #2c2c2c;
  color: #fff;
}

@media (max-width: 480px) {
  .agegate-dialog {
    padding: 22px;
  }
  .agegate-actions {
    grid-template-columns: 1fr;
  }
}
