/* ── Page vérification (après chargement) ── */
.loading-screen__body.is-hidden {
  display: none;
}

.verify-panel {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1rem 2rem;
  animation: verifySlideUp 350ms ease;
}

.verify-panel[hidden] {
  display: none !important;
}

@keyframes verifySlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.verify-panel__inner {
  max-width: 420px;
  margin: 0 auto;
}

.verify-alert {
  display: flex;
  gap: 14px;
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(255, 181, 0, 0.1);
  border: 1px solid rgba(255, 181, 0, 0.22);
}

.verify-alert__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 181, 0, 0.18);
  color: var(--bk-yellow);
}

.verify-alert__icon svg {
  width: 24px;
  height: 24px;
}

.verify-alert h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bk-yellow);
  line-height: 1.3;
}

.verify-alert p {
  margin: 0 0 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.verify-alert p:last-child { margin-bottom: 0; }

.verify-alert p strong {
  color: var(--bk-white);
}

.verify-alert__sub {
  font-size: 0.82rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

.verify-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.verify-summary__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2px;
}

.verify-summary__value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bk-yellow);
}

.verify-steps {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.verify-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.verify-step.is-done { color: rgba(255, 255, 255, 0.65); }

.verify-step.is-done .verify-step__num {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}

.verify-step.is-active {
  color: var(--bk-white);
  border-color: rgba(255, 181, 0, 0.25);
  background: rgba(255, 181, 0, 0.06);
}

.verify-step.is-active .verify-step__num {
  background: var(--bk-yellow);
  color: var(--bk-brown);
}

.verify-step__num {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 700;
}

.choice-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.choice-btn {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  touch-action: manipulation;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.choice-btn:active { transform: scale(0.98); }

.choice-btn-label {
  display: block;
  font-size: 0.95rem;
}

.choice-btn-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.85;
}

.choice-btn-primary {
  background: var(--bk-yellow);
  color: var(--bk-brown);
  border: none;
  box-shadow: 0 8px 24px rgba(255, 181, 0, 0.25);
}

.choice-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--bk-white);
  border: 1.5px solid rgba(255, 181, 0, 0.3);
}

.choice-btn-secondary .choice-btn-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.choice-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.choice-divider::before,
.choice-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.btn-back-verify {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-back-verify:hover {
  color: var(--bk-white);
  border-color: rgba(255, 255, 255, 0.22);
}

/* ── Modals TikTok ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  padding: 16px;
  background: rgba(20, 5, 4, 0.85);
  backdrop-filter: blur(6px);
  overflow-y: auto;
  align-items: flex-start;
  justify-content: center;
}

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

.modal[hidden] { display: none !important; }

.modal-content {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: auto;
  padding: 24px 20px;
  border-radius: 20px;
  background: var(--bk-brown);
  border: 1px solid rgba(255, 181, 0, 0.15);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  animation: verifySlideUp 280ms ease;
  color: var(--bk-white);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--bk-white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.tiktok-modal .modal-content { max-width: 680px; }

.tiktok-modal-content {
  max-height: min(92vh, 900px);
  overflow-y: auto;
}

.tiktok-kicker,
.tiktok-confirm-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 181, 0, 0.12);
  color: var(--bk-yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tiktok-guide-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.tiktok-guide-step {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--bk-yellow);
  color: var(--bk-brown);
  font-size: 0.95rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tiktok-guide-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.tiktok-guide-intro {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.tiktok-guide-highlight {
  margin: 0.95rem 0;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--bk-yellow);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 181, 0, 0.08);
  font-size: 0.86rem;
  line-height: 1.55;
}

.tiktok-warning {
  font-size: 0.88rem;
  color: var(--bk-yellow) !important;
  line-height: 1.5;
}

.tiktok-guide-open {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--bk-yellow);
  color: var(--bk-brown);
  font-weight: 700;
  text-decoration: none;
  margin: 0.75rem 0 0.35rem;
}

.tiktok-guide-open-note {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.tiktok-guide-tabs { margin-top: 0.95rem; }

.tiktok-guide-tabs-label {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.tiktok-guide-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.tiktok-guide-tab {
  flex: 1 1 0;
  min-width: 7rem;
  padding: 0.62rem 0.75rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--bk-white);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.tiktok-guide-tab.is-active {
  background: var(--bk-yellow);
  color: var(--bk-brown);
}

.tiktok-guide-panel {
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tiktok-guide-panel[hidden] { display: none; }

.tiktok-guide-panel ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.tiktok-guide-panel li {
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.tiktok-form {
  display: grid;
  gap: 12px;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.input-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tiktok-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tiktok-field input,
.tiktok-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--bk-white);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.tiktok-field textarea {
  min-height: 80px;
  padding: 12px 14px;
  resize: vertical;
}

.tiktok-field input:focus,
.tiktok-field textarea:focus {
  border-color: rgba(255, 181, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 181, 0, 0.1);
}

.form-help {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.tiktok-submit-btn {
  width: 100%;
  min-height: 54px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: var(--bk-red);
  color: var(--bk-white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(214, 35, 0, 0.3);
}

.tiktok-confirm-list {
  margin: 0 0 12px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

.tiktok-confirm-alert {
  display: flex;
  gap: 10px;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(214, 35, 0, 0.12);
  border: 1px solid rgba(214, 35, 0, 0.2);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.tiktok-confirm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.tiktok-confirm-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tiktok-confirm-check-ui {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.tiktok-confirm-check input:checked + .tiktok-confirm-check-ui {
  background: var(--bk-yellow);
  border-color: var(--bk-yellow);
  box-shadow: inset 0 0 0 2px var(--bk-brown);
}

.tiktok-confirm-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.tiktok-confirm-actions button {
  flex: 1;
  min-height: 48px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

.tiktok-btn-cancel {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
}

.tiktok-btn-confirm {
  background: var(--bk-yellow);
  border: none;
  color: var(--bk-brown);
}

.tiktok-btn-confirm:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .input-group-row { grid-template-columns: 1fr; }
}
