html, body {
    overflow-x: hidden;
}
#main-content {padding:15px;padding-bottom: 0 !important;}
/* ==========================================================
   WRAPPER
   ========================================================== */
.dj-page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
    color: #fff;
}

/* ==========================================================
   1) HEADER ROSE (haut du test)
   ========================================================== */
.dj-header,
.dj-result-card {
    background: linear-gradient(135deg, #e91e63, #ff80ab);
    padding: 2.2rem 1.8rem;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 0 25px rgba(0,0,0,0.35);
    margin-bottom: 2.5rem;
}

.dj-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
}

.dj-subtitle {
    text-align: center;
    opacity: .95;
    max-width: 700px;
    margin: 0.5rem auto 0;
}

/* ==========================================================
   2) FORMULAIRE / QUESTIONS = NOIR TRANSPARENT
   ========================================================== */
.dj-form-card {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    padding: 2rem 1.8rem;
    border-radius: 12px;
    color: #fff;
    margin-bottom: 2.5rem;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

/* ==========================================================
   Questions
   ========================================================== */

/* Espace entre questions */
.dj-question-block {
    margin-bottom: 2rem;
}

/* Question en rose */
.dj-question-title {
    color: #ff80ab;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

/* ==========================================================
   OPTIONS = STYLE PILL (identique aux gages)
   ========================================================== */
.dj-option {
    display: flex;
    align-items: center;
    gap: 10px;

    /* pill style */
background: rgb(54 38 58 / 26%);
    border: 1px solid rgba(148,163,184,0.3);
    border-radius: 14px;

    padding: 12px 16px;
    cursor: pointer;
    transition: all .25s ease;

    width: auto; /* important */
}

/* Masquer le vrai radio */
.dj-option input[type="radio"] {
    display: none;
}

/* Texte blanc */
.dj-option span {
    color: #fff;
    font-size: 0.95rem;
}

/* Hover = léger highlight */
.dj-option:hover {
    background: rgba(24, 24, 38, 0.85);
    border-color: rgba(233,30,99,0.45);
    transform: translateY(-1px);
}

/* Sélection = pill rose EXACTE */
.dj-option.selected {
    background: radial-gradient(circle at top left, rgba(233,30,99,.35), rgba(15,23,42,.96));
    border-color: #e91e63;
    box-shadow: 0 6px 16px rgba(233,30,99,0.4);
}

/* Texte blanc même si sélectionné */
.dj-option.selected span {
    color: #fff;
}

/* ==========================================================
   Champs prénom
   ========================================================== */
.dj-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}

.dj-field input {
    width: 100%;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 10px;
    padding: .65rem 1rem;
    color: #fff;
}

.dj-field input::placeholder {
    color: #ffe4ef;
}

/* ==========================================================
   Barre de progression
   ========================================================== */
.dj-progress-bar {
    width: 100%;
    height: 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.25);
    overflow: hidden;
}

.dj-progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(135deg, #ff4081, #ff80ab, #ffb3d6);
    border-radius: 999px;
    transition: .2s ease-out;
}

/* ==========================================================
   Boutons
   ========================================================== */
.dj-button-primary {
    background: #ff4081;
    width: 100%;
    padding: .9rem 1.2rem;
    border-radius: 999px;
    border: none;
    font-weight: 700;
}

.dj-button-primary:hover {
    opacity: .9;
}

.dj-button-outline {
    background: transparent;
    border: 2px solid #fff;
    padding: .7rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    color: #fff;
}

.dj-button-outline:hover {
    background: rgba(255,255,255,0.2);
}

/* ==========================================================
   Alertes
   ========================================================== */
.dj-alert-error {
    background: #ff1744;
    padding: 1rem 1.3rem;
    border-radius: 10px;
    margin-bottom: 1.8rem;
}
label.dj-option.dj-pill-option {
    margin-bottom: 10px;
}
.dj-pill-option {
    margin-bottom: 10px !important;
}
.dj-disclaimer,
.no-spam-note {
    color: #ff80ab !important;   /* Rose du site */
}
.nav-premium {
    font-weight: 700;
    color: #ffffff;
    position: relative;
}

/* soulignement léger rose premium */
.nav-premium::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #ff66a6;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(3px);
    transition: 0.25s ease;
}

/* effet hover premium */
.nav-premium:hover {
    color: #ff66a6 !important;
    text-shadow: 0 0 6px rgba(255,102,166,0.6)!important;
}

.nav-premium:hover::after {
    opacity: 1!important;
    transform: translateY(0)!important;
}

/* CTA blanc – sobre & premium */
.dj-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;

  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 700;

  color: #e91e63;
  background: #ffffff;

  border-radius: 10px; /* moins arrondi */
  border: 2px solid rgba(233, 30, 99, 0.15);

  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);

  transition: 
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.dj-cta-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  background: #fff5f9;
  text-decoration: none;
}

.dj-cta-white:active {
  transform: translateY(0);
  box-shadow: 0 5px 14px rgba(0,0,0,0.18);
}

/* ===== SHARE DARK GLASS ===== */
.dj-share-card-dark {
  margin-top: 2.2rem;
  padding: 1.6rem;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.dj-share-hook {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.2rem;
}

.dj-share-buttons-dark {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}

.dj-share-btn-dark {
  padding: .55rem 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
}

.dj-share-btn-dark:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.dj-share-btn-dark.whatsapp { border-color:#25D366; color:#25D366; }
.dj-share-btn-dark.facebook { border-color:#1877F2; color:#1877F2; }
.dj-share-btn-dark.twitter  { border-color:#fff; color:#fff; }

.page-link { color: #e91e63!important; }
.active>.page-link, .page-link.active { background-color: #df1d5f!important; border-color: #d81c5c!important; }


/* === PILLS NOTIF === */
.dj-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.dj-pill-input {
  position: relative;
}

.dj-pill-input input {
  display: none;
}

.dj-pill-input label {
  padding: .55rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  font-weight: 700;
  transition: all .2s ease;
}

.dj-pill-input input:checked + label {
  background: linear-gradient(135deg, #ff5fa2, #ff8ac6);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(255,95,162,.35);
  border-color: transparent;
}

.dj-pill-input label:hover {
  background: rgba(255,255,255,0.15);
}

/* input mail pill */
.dj-pill-mail {
  width: 100%;
  border-radius: 999px;
  padding: .6rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 600;
}

.dj-pill-mail::placeholder {
  color: rgba(255,255,255,.6);
}
/* === BADGE NOTIF ACTIF === */
.dj-consent-badge {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.45rem .85rem;
  border-radius:999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  font-weight: 800;
}

.dj-consent-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5fa2;
  box-shadow: 0 0 0 3px rgba(255,95,162,.25);
}

.dj-consent-badge small {
  font-weight:700;
  opacity:.85;
}
.dj-edit-pencil {
  cursor: pointer;
  color: #ff5fa2; /* rose DoubleJeu */
  font-size: 1.05rem;
  line-height: 1;
  margin-left: .4rem;
  opacity: .85;
  transition: opacity .15s ease, transform .15s ease;
}

.dj-edit-pencil:hover {
  opacity: 1;
  transform: scale(1.08);
}
