.rf-age-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.rf-age-modal.is-open {
  display: flex;
}

.rf-age-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 16, 0.88);
  backdrop-filter: blur(6px);
}

.rf-age-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #0f1528;
  border: 1px solid var(--rf-border);
  border-radius: var(--rf-radius-md);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rf-age-modal__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.rf-age-modal__logo img {
  max-height: 36px;
}

.rf-age-modal__title {
  font-size: 22px;
  margin: 0;
  letter-spacing: 1px;
}

.rf-age-modal__desc {
  font-size: 13px;
  color: var(--rf-muted);
  margin: 0;
}

.rf-age-modal__check {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 13px;
  color: #d9def0;
  margin-top: 8px;
}

.rf-age-modal__check input {
  accent-color: var(--rf-accent);
}

.rf-age-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.rf-age-modal__actions .rf-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  filter: none;
  transform: none;
}

.rf-age-modal__decline {
  background: transparent;
  color: var(--rf-muted);
  font-size: 13px;
  padding: 6px;
  text-decoration: underline;
}

.rf-age-modal__decline:hover {
  color: #ffffff;
}
