*{box-sizing:border-box}

body{
  margin:0;
  font-family:Montserrat, sans-serif;
  background:#000;
  color:#fff;
}

/* HEADER */
.header{
  max-width:680px;
  margin:0 auto;
  padding:22px 16px 14px;
  background:#111;
  text-align:center;
}

.logo{
  width:100px;
  height:100px;
  border-radius:50%;
  border:3px solid #f6086c;
  margin:0 auto 10px;
  display:block;
  object-fit:cover;
}

h1{
  font-size:26px;
  margin:6px 0;
  color:#f6086c;
}

.subtitle{
  font-size:15px;
  color:#ccc;
  line-height:1.6;
  max-width:520px;
  margin:0 auto;
}

/* CONTADOR */
.countdown-box{
  max-width:420px;
  margin:14px auto;
  padding:10px;
  border-radius:12px;
  border:1px solid #f6086c;
  background:#111;
  text-align:center;
}

.countdown-label{
  font-size:13px;
  color:#aaa;
  margin-bottom:4px;
}

.countdown{
  font-size:34px;
  font-weight:900;
  color:#f6086c;
}

/* CONTAINER */
.container{
  max-width:680px;
  margin:0 auto 26px;
  padding:24px;
  border-radius:20px;
  background:#111;
  box-shadow:0 8px 28px rgba(255,77,166,0.25);
}

.alert{
  font-size:15px;
  font-weight:700;
  margin-bottom:10px;
  text-align:center;
}

.social-proof{
  font-size:14px;
  color:#f6086c;
  margin-bottom:16px;
  font-weight:700;
  text-align:center;
}

input{
  width:100%;
  padding:16px;
  border-radius:14px;
  border:none;
  font-size:15px;
  margin-bottom:14px;
}

.btn{
  padding:16px;
  width:100%;
  border:none;
  border-radius:16px;
  background:#f6086c;
  color:#fff;
  font-weight:900;
  font-size:15px;
  cursor:pointer;
  transition:.3s;
}

.btn:hover{
  transform:scale(1.03);
  box-shadow:0 10px 24px rgba(255,77,166,0.4);
}

.result{
  margin-top:18px;
  padding:18px;
  border-radius:16px;
  background:#0d0d0d;
  font-size:14px;
  text-align:center;
}

.result a{
  color:#f6086c;
  word-break:break-all;
  display:block;
  margin-top:8px;
}

.steps{
  margin-top:20px;
  padding-top:16px;
  border-top:1px solid #222;
  font-size:14px;
  color:#ccc;
  line-height:1.8;
  text-align:left;
}

.steps-title{
  color:#f6086c;
  font-weight:700;
  margin-bottom:6px;
}

/* POPUP */
.popup{
  position:fixed;
  bottom:18px;
  left:18px;
  background:#111;
  color:#fff;
  padding:12px 16px;
  border-radius:14px;
  box-shadow:0 6px 16px rgba(0,0,0,.4);
  font-size:13px;
  display:none;
  border:1px solid #f6086c;
  z-index:999;
}

/* ALERTA */
.exit-warning{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.9);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2000;
  display:none;
}

.exit-box{
  background:#111;
  padding:28px;
  border-radius:18px;
  border:2px solid #f6086c;
  max-width:400px;
  text-align:center;
}

.exit-box h2{
  color:#f6086c;
  margin-bottom:10px;
}