/* ========== STYLES PARTAGÉS — Page 1 et Page 2 ========== */

/* Reset & base */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.43;
}

/* Modale première page */
#age-confirmation-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(1px);
  z-index: 9999;
}

.jwt {
  position: relative;
  z-index: 10000;
  width: 405px;
  max-width: calc(100vw - 40px);
  background: #fffefb;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 18px 18px 16px;
  text-align: center;
}

.lead-svc-72 {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: #8c8c8c;
  font-size: 24px;
  line-height: 24px;
  cursor: pointer;
  padding: 0;
}

.release { margin: 12px 0; text-align: center; }
.release img { max-width: 80px; display: block; margin: 0 auto; }

.text-wrap h2 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #4a4a4a;
}

.text-wrap p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #7a7a7a;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.foam {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

/* Boutons — identiques sur les deux pages */
.vox-v3 {
  min-width: 150px;
  height: 34px;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.43;
  white-space: nowrap;
}
.vox-v3.server { background: #f1f2f4; color: #6d6f73; border-color: #e3e5e8; }
.vox-v3.keystone { background: #1398f5; color: #fff; border-color: #1398f5; }
.vox-v3.lib { background: #fff; color: #333; border-color: #ccc; }
.vox-v3:hover { opacity: 0.96; }
.vox-v3.lib:hover { background: #e6e6e6; border-color: #adadad; }

/* Modales page 2 — lightbox, opal */
.lightbox, .opal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.opal { background: rgba(0, 0, 0, 0.4); z-index: 9998; }

.modal-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  max-width: 360px;
  text-align: center;
}

.answer_list { position: relative; z-index: 100; }
#chat { position: fixed; bottom: 20px; right: 20px; z-index: 1000; }
