/* Claim account — verificación por preguntas secretas */
.dp-claim .dp-claim-trust {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.dp-claim-q {
  border: 0;
  margin: 0 0 1.15rem;
  padding: 0;
}

.dp-claim-q-title {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.45rem;
  color: #fff;
}

.dp-claim-q-num {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.dp-claim-q-hint {
  margin: 0 0 0.7rem 2.15rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.dp-claim-options {
  display: grid;
  gap: 0.55rem;
}

.dp-claim-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.dp-claim-option:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.dp-claim-option:has(input:checked) {
  border-color: rgba(204, 255, 0, 0.75);
  background: rgba(204, 255, 0, 0.12);
}

.dp-claim-option input {
  flex: 0 0 auto;
  accent-color: #ccff00;
}

.dp-claim .dp-login-back {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.dp-claim .dp-login-back:hover {
  color: #fff;
}

.dp-claim-questions .dp-claim-q {
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.dp-claim-option span {
  font-size: 0.9rem;
  color: #fff;
}

.dp-claim-secondary-link {
  display: block;
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.dp-claim-secondary-link:hover {
  color: #fff;
  text-decoration: underline;
}

.dp-claim-locked {
  display: grid;
  gap: 0.85rem;
}

.dp-claim-locked p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

.dp-claim-paths {
  display: grid;
  gap: 0.65rem;
}

.dp-claim-paths .dp-activate-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
}

.dp-claim-paths .dp-activate-link-title {
  display: block;
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.dp-claim-paths .dp-activate-link-desc {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.dp-login-alert-info {
  border-color: rgba(99, 102, 241, 0.35);
  background: rgba(99, 102, 241, 0.12);
}

/* Scroll: las preguntas son más altas que el viewport */
html:has(body.dp-claim),
body.dp-claim {
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100%;
  height: auto;
  min-height: 100%;
  position: static;
  -webkit-overflow-scrolling: touch;
}

body.dp-login.dp-claim .dp-login-screen {
  height: auto;
  min-height: 100dvh;
  max-height: none;
  overflow-x: hidden;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

body.dp-login.dp-claim .dp-login-sheet {
  flex: 1 1 auto;
  height: auto;
  max-height: none;
  overflow: visible;
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
}

body.dp-login.dp-claim .dp-claim-questions {
  overflow: visible;
}

@media (max-width: 1023px) {
  body.dp-claim .dp-login-screen {
    overflow-y: visible;
  }

  body.dp-claim .dp-login-hero {
    flex: 0 0 auto;
    min-height: 0;
  }

  body.dp-claim .dp-login-sheet {
    flex: 1 1 auto;
    overflow: visible;
  }
}

@media (min-width: 1024px) {
  body.dp-claim {
    overflow-y: auto;
  }

  body.dp-claim .dp-login-screen {
    overflow: visible;
    height: auto;
    min-height: 100dvh;
  }

  body.dp-claim .dp-login-sheet {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100dvh;
    -webkit-overflow-scrolling: touch;
  }
}
