/*
  Popup choix version mobile / web
  Suivre Sa Santé
  À charger sur toutes les pages du site desktop.
*/

.device-choice-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(2, 6, 17, .72);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  backdrop-filter: blur(10px) saturate(150%);
}

.device-choice-overlay.is-visible {
  display: flex;
}

.device-choice-modal {
  width: min(100%, 520px);
  border: 1px solid rgba(98, 216, 238, .24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(121, 106, 255, .18), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(85, 223, 255, .14), transparent 40%),
    linear-gradient(145deg, rgba(18, 28, 52, .96), rgba(8, 12, 26, .98));
  box-shadow: 0 34px 120px rgba(0, 0, 0, .55);
  color: #f7fbff;
  padding: 26px;
}

.device-choice-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64e6ff;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.device-choice-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #64e6ff;
  box-shadow: 0 0 18px rgba(100, 230, 255, .75);
}

.device-choice-modal h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(1.75rem, 5vw, 2.4rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.045em;
}

.device-choice-modal p {
  margin: 12px 0 0;
  color: rgba(225, 234, 247, .76);
  font-size: .96rem;
  font-weight: 650;
  line-height: 1.48;
}

.device-choice-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}

.device-choice-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  cursor: pointer;
  padding: 0 18px;
  font-size: .92rem;
  font-weight: 950;
  text-align: center;
}

.device-choice-btn-mobile {
  border-color: rgba(85, 223, 255, .30);
  background: linear-gradient(135deg, #55dfff, #796aff);
  color: #03111d;
}

.device-choice-btn-web {
  background: rgba(255,255,255,.07);
  color: #fff;
}

.device-choice-note {
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  padding: 12px;
  color: rgba(225, 234, 247, .68);
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.4;
}

.device-choice-small-actions {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.device-choice-link {
  border: 0;
  background: transparent;
  color: rgba(225, 234, 247, .64);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 520px) {
  .device-choice-actions {
    grid-template-columns: 1fr 1fr;
  }
}
