:root{
  --pink:#f1a6c9;
  --pink2:#f6c2db;
  --ink:#1a141a;
  --card:#ffffff;
  --shadow: 0 18px 55px rgba(0,0,0,.28);
  --softShadow: 0 10px 18px rgba(0,0,0,.10);
}

/* Fond léopard */
body{
  margin:0;
  min-height:100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: url("bg-leopard.jpg") center/cover fixed no-repeat;
}

/* voile doux + un peu de blur “photo” */
body::before{
  content:"";
  position:fixed; inset:0;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(0.5px);
  pointer-events:none;
}

/* Layout */
.wrap{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding: 30px 18px;
  position:relative;
  z-index:1;
}

/* Carte blanche */
.card{
  width: min(420px, 92vw);
  background: rgba(255,255,255,.96);
  border-radius: 26px;
  border: 2px solid rgba(241,166,201,.95);
  box-shadow: var(--shadow);
  padding: 26px 18px 18px;
  text-align:center;
}

/* Header */
.header{
  padding: 4px 10px 10px;
}

.avatarWrap{
  display:grid;
  place-items:center;
  margin-top: 6px;
  margin-bottom: 14px;
}

.avatar{
  width: 118px;
  height: 118px;
  border-radius: 999px;
  object-fit: cover;
  background: #d9d9d9;
  border: 6px solid rgba(255,255,255,.98);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.title{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: .9px;
  font-weight: 500;
}

.bio{
  margin: 0 0 6px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  opacity:.85;
}

.emojiRow{
  margin: 0 0 10px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  opacity:.9;
}

/* Liens */
.links{
  display:flex;
  flex-direction:column;
  gap: 12px;
  padding: 0 10px 8px;
}

/* Bouton pill */
.pill{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  position:relative;

  padding: 14px 14px;
  border-radius: 14px;
  text-decoration:none;
  color: var(--ink);

  background: #fff;
  border: 2px solid rgba(246,194,219,.95);
  box-shadow: var(--softShadow);

  font-size: 14px;
  letter-spacing: .9px;

  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
  outline: none;
}

/* hover / active */
.pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0,0,0,.14);
  filter: brightness(1.01);
}

.pill:active{
  transform: translateY(0) scale(.99);
}

/* Accessibilité clavier (tab) */
.pill:focus-visible{
  box-shadow: 0 0 0 4px rgba(241,166,201,.35), 0 14px 24px rgba(0,0,0,.14);
}

.pill__text{
  font-weight: 500;
}

.pill__badge{
  position:absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 8px;
  border-radius: 999px;
  letter-spacing: .4px;
  border: 1px solid rgba(0,0,0,.08);
}

.pill__badge--vip{
  background: rgba(241,166,201,.35);
}

.pill__badge--new{
  background: rgba(255, 216, 0, .25);
}

/* Footer */
.footer{
  margin-top: 10px;
  padding: 8px 0 2px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  opacity:.75;
}

/* ===== Gate 18+ ===== */
.gate{
  position:fixed; inset:0;
  display:grid;
  place-items:center;
  padding:24px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
  z-index: 50;
}

.gate__card{
  width:min(460px, 95vw);
  background: rgba(255,255,255,.96);
  border-radius: 20px;
  padding: 20px 18px;
  border: 2px solid rgba(241,166,201,.95);
  box-shadow: var(--shadow);
  text-align:center;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.gate__badge{
  display:inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pink);
  color:#fff;
  font-weight: 900;
  letter-spacing: .5px;
}

.gate__title{ margin: 12px 0 6px; font-size: 22px; }
.gate__text{ margin: 0 0 14px; opacity:.9; line-height:1.45; }

.gate__actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.gate__btn{
  border:0;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  cursor:pointer;
  transition: transform .12s ease, filter .12s ease;
}
.gate__btn:active{ transform: scale(.98); }

.gate__btn--yes{
  background: var(--pink);
  color:#fff;
}
.gate__btn--no{
  background: rgba(0,0,0,.06);
  border: 2px solid rgba(0,0,0,.10);
}

.gate__fine{
  margin-top: 10px;
  opacity:.85;
}

/* Responsive */
@media (max-width:420px){
  .card{ padding: 24px 16px 16px; }
  .links{ padding: 0 6px 8px; }
}

/* ===== Mobile optimisation ===== */
@media (max-width: 480px){

  .wrap{
    padding: 16px 10px;
  }

  .card{
    width: 100%;
    border-radius: 22px;
    padding: 22px 14px 14px;
  }

  .avatar{
    width: 100px;
    height: 100px;
  }

  .title{
    font-size: 17px;
  }

  .bio{
    font-size: 12px;
  }
}

@media (max-width: 480px){

  .gate{
    padding: 16px;
  }

  .gate__card{
    width: 100%;
    padding: 18px 14px;
  }

}
