*{margin:0;padding:0;box-sizing:border-box}

body{
background:radial-gradient(circle at top,#0b1f14,#000);
color:#eaffea;
font-family:'Inter',sans-serif;
text-align:center;
}

/* HERO */
.hero{
padding:45px 15px;
animation:fadeDown 1s ease;
}
.hero h1{
font-family:'Orbitron',sans-serif;
color:#00ff88;
letter-spacing:2px;
}
.tag{opacity:.85;margin:10px 0}

.btn{
display:inline-block;
margin-top:15px;
padding:14px 28px;
background:#00ff88;
color:#000;
border-radius:30px;
font-weight:700;
text-decoration:none;
box-shadow:0 0 20px #00ff88;
}
.big{font-size:18px}

/* SECTIONS */
.section{
padding:45px 15px;
animation:fadeUp 1s ease;
}
.section h2{
color:#00ff88;
margin-bottom:20px;
font-family:'Orbitron',sans-serif;
}

.pill{
display:inline-block;
padding:6px 14px;
border:1px solid #00ff88;
border-radius:20px;
font-size:12px;
margin-bottom:10px;
}

/* VIDEO GRID */
.video-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
gap:15px;
max-width:900px;
margin:auto;
}
.video-card{
background:#07160e;
padding:8px;
border-radius:20px;
box-shadow:0 0 15px rgba(0,255,136,.35);
}
video{
width:100%;
aspect-ratio:9/16;
border-radius:15px;
background:#000;
}

/* INFO CARDS */
.cards{
max-width:700px;
margin:auto;
}
.info-card{
background:#0c1f15;
border:1px solid #00ff88;
border-radius:18px;
padding:20px;
margin:15px 0;
}
.info-card span{
font-size:22px;
color:#00ff88;
}

/* PRICE */
.price-box{
max-width:300px;
margin:auto;
border:2px solid #00ff88;
border-radius:20px;
padding:25px;
}
.old{text-decoration:line-through;opacity:.5}
.new{font-size:34px;color:#00ff88}

/* COMPARE */
.compare{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
max-width:700px;
margin:auto;
}
.bad,.good{
background:#0c1f15;
border-radius:18px;
padding:20px;
}

/* TESTIMONIAL */
.testimonials{
max-width:800px;
margin:auto;
}
.review{
background:#0c1f15;
border-radius:18px;
padding:20px;
margin:15px 0;
}

/* FINAL */
.final{
padding:50px 15px;
background:#001a10;
}

/* FOOTER */
footer{
padding:20px;
font-size:12px;
opacity:.6;
}

/* ANIMATIONS */
@keyframes fadeUp{
from{opacity:0;transform:translateY(30px)}
to{opacity:1;transform:translateY(0)}
}
@keyframes fadeDown{
from{opacity:0;transform:translateY(-30px)}
to{opacity:1;transform:translateY(0)}
}
/* COVER SECTION */
.cover-section{
  padding: 30px 15px 50px;
  display: flex;
  justify-content: center;
  animation: fadeUp 1s ease;
}

.cover-card{
  max-width: 360px;
  width: 100%;
  border-radius: 25px;
  padding: 10px;
  background: linear-gradient(180deg,#0c2a1a,#000);
  box-shadow:
    0 0 25px rgba(0,255,136,0.45),
    inset 0 0 20px rgba(0,255,136,0.25);
}

.cover-card img{
  width: 100%;
  border-radius: 20px;
  display: block;
}
/* PREVIEW SECTIONS */
.preview-section{
  padding: 45px 15px;
  text-align: center;
}

.preview-section h2{
  font-family: 'Orbitron', sans-serif;
  color: #00ff88;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(0,255,136,0.7);
}

/* GRID */
.preview-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

/* CARD */
.preview-card{
  background: linear-gradient(180deg,#0b2418,#000);
  padding: 8px;
  border-radius: 22px;
  box-shadow:
    0 0 18px rgba(0,255,136,0.45),
    inset 0 0 12px rgba(0,255,136,0.2);
  transition: transform 0.3s ease;
}

.preview-card:hover{
  transform: scale(1.04);
}

/* VIDEO */
.preview-card video{
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  background: #000;
}
/* ================= HERO ================= */
.hero-main{
  background: radial-gradient(circle at top, #0c2b1c, #000);
  padding-bottom: 10px;
  text-align: center;
}

/* TOP BAR */
.hero-top{
  padding: 40px 15px;
}

.brand{
  font-family: 'Orbitron', sans-serif;
  color: #00ff88;
  letter-spacing: 3px;
  font-size: 32px;
}

.subtitle{
  opacity: 0.8;
  margin: 10px 0 20px;
}

.preview-btn{
  background:#00ff88;
  color:#000;
  padding:14px 32px;
  border-radius:30px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 0 25px #00ff88;
}

/* CONTENT */
.hero-content{
  max-width: 500px;
  margin: auto;
  padding: 20px 0px;
}

/* SOCIAL PROOF */
.social-proof{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-bottom:25px;
}

.avatars span{
  width:34px;
  height:34px;
  background:#222;
  border-radius:50%;
  border:2px solid #00ff88;
  margin-left:-8px;
}

.social-proof p{
  color:#00ff88;
  font-size:14px;
}

/* HEADLINE */
.big-title{
  font-size:clamp(28px,6vw,52px);
  font-weight:800;
  margin-bottom:20px;
}

/* MAIN BADGE */
.main-badge{
  display:inline-block;
  background:#00ff88;
  color:#000;
  padding:18px 40px;
  border-radius:50px;
  font-size:28px;
  font-weight:800;
  box-shadow:0 0 35px #00ff88;
  margin-bottom:25px;
}

/* TEXT */
.hero-desc{
  color:#00ff88;
  font-size:18px;
  margin-bottom:12px;
}

.hero-para{
  max-width:650px;
  margin:0 auto 30px;
  opacity:0.85;
}

/* PILLS */
.feature-pills{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-bottom:30px;
}

.feature-pills span{
  padding:10px 18px;
  border-radius:25px;
  border:1px solid #00ff88;
  font-size:13px;
  color:#00ff88;
  background:rgba(0,255,136,0.05);
}

/* CTA */
.main-cta{
  display:inline-block;
  background:#00ff88;
  color:#000;
  padding:18px 45px;
  border-radius:20px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 0 35px #00ff88;
}

.note{
  display:block;
  margin-top:12px;
  opacity:0.6;
}
/* ================= CTA + COVER ================= */
.cta-cover{
  background: radial-gradient(circle at center, #0c2b1c, #000);
  padding: 20px 15px 10px;
  text-align: center;
}

/* MAIN CTA */
.main-cta{
  display:inline-block;
  background:#00ff88;
  color:#000;
  padding:18px 45px;
  border-radius:40px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 0 35px #00ff88;
  margin-bottom:8px;
}

.note{
  display:block;
  opacity:0.6;
  margin-bottom:30px;
}

/* COVER CARD */
.cover-card{
  max-width:360px;
  margin:0 auto;
  padding:12px;
  border-radius:28px;
  background:linear-gradient(180deg,#0c2a1a,#000);
  box-shadow:
    0 0 30px rgba(0,255,136,0.45),
    inset 0 0 20px rgba(0,255,136,0.25);
}

/* IMAGE */
.cover-card img{
  width:100%;
  border-radius:22px;
  display:block;
}

/* BUY BUTTON UNDER IMAGE */
.buy-under{
  display:block;
  margin:18px auto 8px;
  background:#00ff88;
  color:#000;
  padding:14px 32px;
  border-radius:30px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 0 25px #00ff88;
}
/* ================= FLOATING BUY BAR ================= */
.floating-buy{
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  max-width: 420px;

  background: linear-gradient(180deg, #0c2a1a, #000);
  border-radius: 22px;
  padding: 10px 12px 12px;

  box-shadow:
    0 0 30px rgba(0,255,136,0.45),
    inset 0 0 15px rgba(0,255,136,0.25);

  z-index: 9999;
}

/* BIG TIMER TOP */
.timer-top{
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #00ff88;
  margin-bottom: 8px;
}

.timer-top #countdown{
  font-size: 22px;
  color: #ffffff;
  margin: 0 4px;
}

.timer-top .hurry{
  color: #ff4d4d;
  margin-left: 6px;
}

/* ROW */
.buy-row{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* COVER */
.buy-row img{
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

/* PRICE */
.price-info{
  flex: 1;
  text-align: left;
}

.old-price{
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 12px;
}

.new-price{
  color: #00ff88;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

/* BUY BUTTON */
.buy-btn{
  background: #00ff88;
  color: #000;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 18px #00ff88;
  white-space: nowrap;
}


