*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  min-height:100vh;
  background:
    radial-gradient(circle at top, rgba(255,0,0,.28), transparent 34%),
    linear-gradient(180deg,#170000,#050505 42%,#000);
  color:#fff;
  font-family:Arial, Helvetica, sans-serif;
}

.page{
  width:100%;
  max-width:520px;
  margin:0 auto;
  padding:22px 14px 42px;
}

.hero{
  text-align:center;
  margin-bottom:22px;
}

.badge{
  display:inline-block;
  padding:8px 14px;
  border:1px solid rgba(255,45,45,.35);
  border-radius:999px;
  color:#ffd0d0;
  background:rgba(255,0,0,.08);
  font-size:11px;
  letter-spacing:1.4px;
  margin-bottom:14px;
}

h1{
  font-size:42px;
  line-height:.9;
  text-shadow:0 0 22px rgba(255,0,0,.7);
}

h1 span{
  color:#ff1616;
}

.hero p{
  color:#d0d0d0;
  margin-top:10px;
  font-size:15px;
}

.preview-feed{
  display:grid;
  gap:22px;
}

.preview-card{
  padding:10px;
  border-radius:24px;
  background:
    radial-gradient(circle at top, rgba(255,0,0,.13), transparent 60%),
    rgba(14,14,14,.95);
  border:1px solid rgba(255,35,35,.22);
  box-shadow:0 22px 60px rgba(0,0,0,.36), 0 0 28px rgba(255,0,0,.08);
}

.video-wrap{
  position:relative;
  width:100%;
  aspect-ratio:9/16;
  max-height:620px;
  border-radius:18px;
  overflow:hidden;
  background:#050505;
  border:1px solid rgba(255,255,255,.08);
}

.video-wrap video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  background:#000;
}

.tag{
  position:absolute;
  top:12px;
  left:12px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.62);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.7px;
}

.buy-btn{
  width:100%;
  min-height:56px;
  margin-top:12px;
  border:0;
  border-radius:16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(135deg,#ff2424,#bd0000 50%,#720000);
  color:#fff;
  font-weight:950;
  font-size:15px;
  cursor:pointer;
  box-shadow:0 16px 42px rgba(255,0,0,.32), inset 0 1px 0 rgba(255,255,255,.25);
}

.locked-box{
  position:relative;
  width:100%;
  aspect-ratio:9/16;
  border-radius:18px;
  overflow:hidden;
  background:
    radial-gradient(circle at center, rgba(255,0,0,.22), transparent 42%),
    linear-gradient(135deg,#160000,#030303);
  border:1px solid rgba(255,255,255,.08);
  display:grid;
  place-items:center;
}

.locked-box::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(12px);
}

.lock-content{
  position:relative;
  z-index:2;
  text-align:center;
  padding:24px;
}

.lock-content strong{
  display:block;
  font-size:26px;
  line-height:1.12;
  text-shadow:0 0 22px rgba(255,0,0,.9);
  margin-bottom:10px;
}

.lock-content span{
  display:block;
  font-size:20px;
  font-weight:900;
  margin-bottom:8px;
}

.lock-content small{
  color:#d0d0d0;
  font-size:13px;
}

.pulse{
  animation:pulse 2.3s infinite;
}

@keyframes pulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.025)}
}

.plan-modal{
  position:fixed;
  inset:0;
  z-index:999;
  display:grid;
  place-items:center;
  padding:18px;
  opacity:0;
  visibility:hidden;
  transition:.2s;
}

.plan-modal.active{
  opacity:1;
  visibility:visible;
}

.modal-bg{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.75);
  backdrop-filter:blur(12px);
}

.modal-card{
  position:relative;
  z-index:2;
  width:min(94vw,430px);
  padding:22px 15px 16px;
  border-radius:24px;
  background:
    radial-gradient(circle at top, rgba(255,0,0,.22), transparent 60%),
    rgba(8,8,8,.96);
  border:1px solid rgba(255,35,35,.28);
  box-shadow:0 24px 80px rgba(0,0,0,.7), 0 0 52px rgba(255,0,0,.18);
}

.modal-close{
  position:absolute;
  top:10px;
  right:12px;
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:24px;
}

.modal-badge{
  width:max-content;
  margin:0 auto 10px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,0,0,.09);
  border:1px solid rgba(255,45,45,.3);
  font-size:11px;
  color:#ffd1d1;
}

.modal-card h2{
  text-align:center;
  font-size:22px;
  margin-bottom:8px;
}

.modal-card p{
  text-align:center;
  color:#cfcfcf;
  font-size:13px;
  margin-bottom:15px;
}

.plan{
  position:relative;
  min-height:76px;
  padding:14px 13px;
  margin-bottom:11px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-radius:18px;
  text-decoration:none;
  color:#fff;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
}

.plan.popular{
  border-color:rgba(255,22,22,.44);
  background:linear-gradient(135deg, rgba(255,22,22,.25), rgba(70,0,0,.32));
}

.plan i{
  position:absolute;
  right:12px;
  top:-9px;
  padding:4px 8px;
  border-radius:999px;
  background:linear-gradient(135deg,#ff2424,#9b0000);
  font-size:9px;
  font-style:normal;
  font-weight:950;
}

.plan strong{
  display:block;
  font-size:17px;
  margin-bottom:5px;
}

.plan span{
  color:rgba(255,255,255,.72);
  font-size:12px;
}

.plan b{
  font-size:20px;
  text-shadow:0 0 14px rgba(255,0,0,.65);
  white-space:nowrap;
}

.modal-open{
  overflow:hidden;
}

.plan{
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  cursor:pointer;
  font-family:inherit;
  text-align:left;
}

.hidden{
  display:none !important;
}

.checkout-form{
  display:grid;
  gap:11px;
}

.checkout-form h3,
.pix-box h3{
  text-align:center;
  font-size:18px;
  margin:4px 0 4px;
}

.checkout-form label{
  display:grid;
  gap:6px;
  color:#e8e8e8;
  font-size:12px;
  font-weight:800;
}

.checkout-form input{
  width:100%;
  height:46px;
  border-radius:13px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.07);
  color:#fff;
  padding:0 12px;
  outline:none;
}

.checkout-form input::placeholder{
  color:rgba(255,255,255,.38);
}

.back-btn,
.copy-btn,
.pay-link{
  min-height:42px;
  border-radius:13px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  text-align:center;
  text-decoration:none;
  display:grid;
  place-items:center;
}

.pix-box{
  display:grid;
  gap:11px;
}

.pix-box p{
  margin-bottom:0;
}

.pix-qr{
  width:220px;
  height:220px;
  padding:10px;
  border-radius:16px;
  background:#fff;
  margin:0 auto;
}

#pixCode{
  width:100%;
  min-height:92px;
  resize:none;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.07);
  color:#fff;
  padding:12px;
  outline:none;
  font-size:12px;
}

.status-message{
  min-height:20px;
  margin-top:11px;
  text-align:center;
  color:#d7d7d7;
  font-size:12px;
  font-weight:800;
}

.status-message.error{
  color:#ff8b8b;
}

.status-message.success{
  color:#9effb7;
}

.status-message.loading{
  color:#ffe08a;
}

.access-box{
  padding:13px;
  border-radius:16px;
  border:1px solid rgba(80,255,130,.25);
  background:rgba(0,255,100,.08);
  text-align:center;
}

.access-box strong{
  display:block;
  margin-bottom:10px;
}

.access-box a{
  min-height:48px;
  border-radius:14px;
  background:linear-gradient(135deg,#29d968,#128a39);
  color:#fff;
  display:grid;
  place-items:center;
  text-decoration:none;
  font-weight:950;
}

button:disabled{
  opacity:.58;
  cursor:not-allowed;
}
