*{box-sizing:border-box}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:
    radial-gradient(circle at 15% 20%,rgba(255,45,120,.22),transparent 35%),
    radial-gradient(circle at 85% 20%,rgba(120,60,255,.22),transparent 35%),
    #070713;
  color:#fff;
}

a{text-decoration:none;color:inherit}
.container{width:min(1180px,92%);margin:auto}

.top{
  background:linear-gradient(90deg,#ff2f7d,#7c35ff);
  text-align:center;
  font-size:14px;
  font-weight:800;
  padding:9px;
}

.nav{
  background:rgba(5,5,15,.9);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-inner{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:18px;
}

.logo b{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:linear-gradient(135deg,#ff3b75,#ff8a00);
}

.nav-pill{
  background:rgba(255,255,255,.08);
  padding:11px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:900;
}

.hero{padding:80px 0 120px}

.grid{
  display:grid;
  grid-template-columns:1fr 390px;
  gap:70px;
  align-items:center;
}

.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.badge,.pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  padding:8px 13px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
}

.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#ff3b4d;
  box-shadow:0 0 14px #ff3b4d;
}

h1{
  font-size:clamp(52px,6vw,82px);
  line-height:.92;
  letter-spacing:-3px;
  margin:22px 0;
}

.grad{
  background:linear-gradient(90deg,#ff3377,#ff8a00);
  -webkit-background-clip:text;
  color:transparent;
}

.lead{
  max-width:620px;
  font-size:18px;
  line-height:1.7;
  color:rgba(255,255,255,.82);
}

.row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:28px 0 14px;
}

.cta{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:54px;
  padding:0 28px;
  border-radius:999px;
  background:linear-gradient(90deg,#ff3377,#ff8a00);
  color:#fff;
  font-weight:900;
  border:0;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(255,60,110,.25);
}

.cta.secondary{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:none;
}

.small{
  font-size:14px;
  color:rgba(255,255,255,.75);
}

/* LIVE CAM CARD */
.preview{
  width:390px;
  height:640px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.video-box{
  position:relative;
  width:390px;
  height:640px;
  max-width:100%;
  border-radius:34px;
  overflow:hidden;
  background:#000;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 30px 90px rgba(0,0,0,.55);
}

.video-box video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:brightness(.95) contrast(1.05);
}

.video-box::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top,rgba(0,0,0,.82),transparent 42%),
    linear-gradient(to bottom,rgba(0,0,0,.38),transparent 28%);
  z-index:2;
  pointer-events:none;
}

.preview-top{
  position:absolute;
  top:18px;
  left:18px;
  right:18px;
  display:flex;
  justify-content:space-between;
  z-index:5;
}

.pill{
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(10px);
}

.chat-box{
  position:absolute;
  left:16px;
  bottom:142px;
  width:74%;
  max-height:190px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:7px;
  z-index:6;
}

.chat-message{
  width:fit-content;
  max-width:100%;
  background:rgba(0,0,0,.48);
  padding:8px 11px;
  border-radius:14px;
  font-size:13px;
  line-height:1.35;
  backdrop-filter:blur(10px);
  animation:chatIn .35s ease;
}

.username{
  color:#ffd36a;
  font-weight:900;
}

@keyframes chatIn{
  from{opacity:0;transform:translateY(12px)}
  to{opacity:1;transform:translateY(0)}
}

.love-container{
  position:absolute;
  right:16px;
  bottom:105px;
  width:70px;
  height:330px;
  z-index:7;
  pointer-events:none;
}

.love{
  position:absolute;
  bottom:0;
  animation:floatLove 3s ease-out forwards;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.25));
}

@keyframes floatLove{
  0%{opacity:0;transform:translateY(0) scale(.6)}
  15%{opacity:1}
  100%{opacity:0;transform:translateY(-290px) scale(1.35)}
}

.lock{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:6;
  padding:20px;
  border-radius:24px;
  background:rgba(10,5,10,.74);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(14px);

  opacity:0;
  transform:translateY(20px);
  transition:.6s ease;
}

.lock.show{
  opacity:1;
  transform:translateY(0);
}

.lock h2{
  margin:0 0 8px;
  font-size:24px;
}

.lock p{
  margin:0 0 16px;
  color:rgba(255,255,255,.84);
  line-height:1.5;
  font-size:14px;
}

.lock .cta{width:100%}

.sticky{
  position:fixed;
  left:50%;
  bottom:20px;
  transform:translateX(-50%);
  width:min(620px,92%);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:12px 14px 12px 22px;
  border-radius:999px;
  background:rgba(10,10,20,.84);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(16px);
  z-index:20;
}

.sticky div{display:grid;gap:2px}

.sticky span{
  font-size:13px;
  color:rgba(255,255,255,.68);
}

.sticky .cta{
  min-height:48px;
  padding:0 26px;
}

.age-box{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  padding:20px;
  background:rgba(0,0,0,.74);
  z-index:50;
}

.age-box.show{display:grid}

.age-modal{
  width:min(520px,100%);
  padding:32px;
  border-radius:28px;
  background:#101020;
  border:1px solid rgba(255,255,255,.12);
  text-align:center;
}

.age-modal h2{
  font-size:34px;
  margin:18px 0 8px;
}

.age-modal p{
  color:rgba(255,255,255,.75);
  line-height:1.6;
}

.age-actions{
  display:grid;
  gap:12px;
  margin:22px 0;
}

.center{justify-content:center}
.notice{font-size:12px}

.footer{
  padding:40px 0 110px;
  text-align:center;
  color:rgba(255,255,255,.5);
  font-size:13px;
}

@media(max-width:900px){
  .hero{padding:50px 0 120px}

  .grid{
    grid-template-columns:1fr;
    gap:45px;
  }

  .hero-copy{text-align:center}

  .badges,.row{justify-content:center}

  .lead{margin:auto}

  .preview{
    width:100%;
    height:auto;
  }

  .video-box{
    width:min(380px,100%);
    height:620px;
  }
}

@media(max-width:430px){
  .video-box{
    height:570px;
    border-radius:28px;
  }

  h1{letter-spacing:-2px}
}