*{ margin:0; padding:0; box-sizing:border-box; }
html,body{ height:100%; }

/* ===== Shared (modal) ===== */
:root{
  --premium-gradient: linear-gradient(135deg, #ff00cc 0%, #333399 100%);
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,.7);
  --border-color: rgba(255,255,255,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
}

.age-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
}
.age-modal.hidden{ display:none; }

.age-modal-content{
  background: linear-gradient(135deg, rgba(30,30,45,.95), rgba(20,20,30,.95));
  border: 2px solid rgba(250,139,255,.3);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,.8);
  animation: slideUp 0.4s ease-out;
}
.age-modal-icon{ font-size:72px; margin-bottom:24px; }
.age-modal-content h2{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  background: var(--premium-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.age-modal-content p{
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
}
.age-modal-buttons{
  display:flex;
  gap: 16px;
  margin-top: 32px;
  justify-content:center;
}
.age-btn{
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Outfit', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
.age-btn-enter{
  background: var(--premium-gradient);
  color: white;
}
.age-btn-enter:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250,139,255,.4);
}
.age-btn-exit{
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.2);
}
.age-btn-exit:hover{ background: rgba(255,255,255,.15); }

@keyframes fadeIn{ from{opacity:0} to{opacity:1} }
@keyframes slideUp{ from{opacity:0; transform:translateY(30px)} to{opacity:1; transform:translateY(0)} }


/* =========================================================
   LANDING (scopé)
========================================================= */
body.landing{
  font-family: 'Outfit', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: #0a0a0a;
  color: var(--text-primary);
  overflow-x: hidden;
}

body.landing .background-collage{
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

body.landing .bg-grid{
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

body.landing .bg-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.landing .bg-grid::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,12,0.65), rgba(15,12,25,0.75));
  pointer-events: none;
  backdrop-filter: blur(2px);
}

body.landing .background-collage::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(138,43,226,0.08), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(219,39,119,0.08), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

body.landing .container{
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px 32px;
  position: relative;
  z-index: 2;
}

body.landing .profile-header{
  text-align:center;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown{
  from{ opacity:0; transform:translateY(-30px); }
  to{ opacity:1; transform:translateY(0); }
}

body.landing .profile-image-wrapper{
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  padding: 3px;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

body.landing .profile-image{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  border: 3px solid rgba(255,255,255,0.2);
}

body.landing .profile-name{
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #fff, #b4b4b4);
  -webkit-background-clip: text;
  color: transparent;
}

body.landing .badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  font-size: .85rem;
}

body.landing .profile-handle{ color: rgba(255,255,255,0.7); margin: 0 0 6px; }
body.landing .profile-bio{ color: rgba(255,255,255,0.85); margin:0; }

body.landing .links-section{ margin-bottom: 30px; }

body.landing .section-title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
}

body.landing .link-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 20px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  text-decoration:none;
  color:#fff;
  transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  position: relative;
  overflow:hidden;
}

body.landing .link-card.primary{
  background: linear-gradient(135deg, rgba(255,0,204,0.12), rgba(51,51,153,0.12));
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 4px 20px rgba(255,0,204,0.15);
}

body.landing .link-card:hover{
  transform: scale(1.02) translateY(-2px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

body.landing .link-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:50%;
  height:100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
}
body.landing .link-card:hover::before{ left:150%; }

body.landing .link-content{ display:flex; align-items:center; gap:14px; }
body.landing .link-icon{
  width:44px; height:44px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.12);
  font-size:22px;
}
body.landing .link-text{ display:flex; flex-direction:column; gap:3px; }
body.landing .link-title{ font-size:17px; font-weight:700; }
body.landing .link-subtitle{ font-size:13px; color: rgba(255,255,255,0.7); }
body.landing .link-arrow{ font-size:20px; opacity:.75; }

body.landing .footer{
  text-align:center;
  padding: 10px 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
body.landing .footer-link{ color:inherit; text-decoration:underline; }


/* =========================================================
   EXCLUSIVE (scopé) - esthétique alignée à la landing
========================================================= */
body.exclusive{
  margin:0;
  font-family: 'Outfit', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: rgba(255,255,255,.92);
  background: #0a0a0a;
  overflow-x: hidden;
}

.exclusive-page .background-collage{ display:none !important; }

.page-bg{
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px 48px;
}

.page-bg::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: var(--bg-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(16px) brightness(0.65) saturate(0.95);
  transform: scale(1.06);
  z-index: 0;
}

.page-bg::after{
  content:"";
  position: fixed;
  inset: 0;
  background: radial-gradient(900px 600px at 30% 0%, rgba(255,255,255,.10), transparent 60%),
              radial-gradient(900px 600px at 80% 30%, rgba(255,255,255,.08), transparent 60%),
              rgba(0,0,0,.35);
  z-index: 1;
  pointer-events: none;
}

.page-bg > *{
  position: relative;
  z-index: 2;
}

body.exclusive .container{
  max-width: 680px;
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

body.exclusive .exclusive-card{
  padding: 24px 20px 28px;
  background: rgba(8,10,16,0.78);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}

body.exclusive .profile-header{
  text-align:center;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease-out;
}

body.exclusive .profile-image-wrapper{
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  padding: 3px;
  box-shadow: 0 0 20px rgba(255,255,255,0.12);
  animation: pulse 3s ease-in-out infinite;
}

body.exclusive .profile-image{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  border: 3px solid rgba(255,255,255,0.2);
}

body.exclusive .profile-name{
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #fff, #b4b4b4);
  -webkit-background-clip: text;
  color: transparent;
}

body.exclusive .badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  font-size: .85rem;
}

body.exclusive .profile-handle{ color: rgba(255,255,255,0.7); margin: 0 0 6px; }
body.exclusive .profile-bio{ color: rgba(255,255,255,0.85); margin:0; }

body.exclusive .links-section{ margin-bottom: 26px; }

body.exclusive .section-title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
}

body.exclusive .link-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 20px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  text-decoration:none;
  color:#fff;
  transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
  position: relative;
  overflow:hidden;
}

body.exclusive .link-card.primary{
  background: linear-gradient(135deg, rgba(255,0,204,0.12), rgba(51,51,153,0.12));
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(255,0,204,0.18);
}

body.exclusive .link-card:hover{
  transform: scale(1.02) translateY(-2px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
}

body.exclusive .link-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:50%;
  height:100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-25deg);
  transition: 0.6s;
}
body.exclusive .link-card:hover::before{ left:150%; }

body.exclusive .link-content{ display:flex; align-items:center; gap:14px; }
body.exclusive .link-icon{
  width:44px; height:44px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.16);
  font-size:22px;
}
body.exclusive .link-text{ display:flex; flex-direction:column; gap:3px; }
body.exclusive .link-title{ font-size:17px; font-weight:700; }
body.exclusive .link-subtitle{ font-size:13px; color: rgba(255,255,255,0.72); }
body.exclusive .link-arrow{ font-size:20px; opacity:.75; }

body.exclusive .footer{
  text-align:center;
  padding: 10px 0 0;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* ===== Exclusive buttons animations (attirer le regard) ===== */
body.exclusive .link-card{
  opacity: 0;
  transform: translateY(10px);
  animation: btnIn .55s ease forwards;
}
body.exclusive .link-card:nth-child(1){ animation-delay: .05s; }
body.exclusive .link-card:nth-child(2){ animation-delay: .12s; }
body.exclusive .link-card:nth-child(3){ animation-delay: .19s; }

/* Glow pulse sur le primary */
body.exclusive .link-card.primary{
  animation: btnIn .55s ease forwards, glowPulse 1.6s ease-in-out .6s infinite;
}

/* Shimmer sur le primary */
body.exclusive .link-card.primary::before{
  animation: shimmer 2.4s ease-in-out 1s infinite;
}

/* Respect reduce-motion */
@media (prefers-reduced-motion: reduce){
  body.exclusive .link-card,
  body.exclusive .link-card.primary{
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
