/* ================= ROOT VARIABLES ================= */
:root{
  --bg-1:#04060a;
  --bg-2:#07101a;

  --card:rgba(255,255,255,0.04);
  --glass:rgba(255,255,255,0.025);
  --border:rgba(255,255,255,0.08);

  --text:#eaf2f8;
  --muted:#90a0b0;

  --accent:#25c55a;
  --accent-2:#18a14a;

  --radius:16px;
}

/* ================= RESET ================= */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html,body{
  height:100%;
}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  color:var(--text);
  line-height:1.55;
  background:
    radial-gradient(1200px 600px at 12% 12%,rgba(36,54,60,0.12),transparent 60%),
    radial-gradient(900px 500px at 88% 82%,rgba(15,85,44,0.07),transparent 65%),
    linear-gradient(180deg,var(--bg-1),var(--bg-2) 65%);
  -webkit-font-smoothing:antialiased;
}

/* ================= SAFE STACKING (CRITICAL) ================= */
main,
section,
.container,
.hero,
.offer-card,
.tool-card,
.legal-box,
.footer{
  position:relative;
  z-index:1;
}

/* ================= CONTAINER ================= */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:28px 18px;
}

/* ================= ADS SAFETY ================= */
.ad-sandbox{
  position:relative;
  z-index:0;
  pointer-events:none;
}

/* ================= NAV ================= */
.nav{
  position:sticky;
  top:0;
  z-index:1000;
  background:linear-gradient(180deg,rgba(2,4,8,.85),rgba(2,4,8,.65));
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-logo{
  width:36px;
  height:36px;
  border-radius:8px;
  object-fit:contain;
}

.brand-text{
  font-weight:700;
  font-size:1.05rem;
}

.brand-text span{color:var(--accent)}

.nav-links{
  display:flex;
  gap:16px;
}

.nav-links a{
  color:var(--muted);
  text-decoration:none;
  padding:8px 12px;
  border-radius:8px;
}

.nav-links a:hover{color:var(--text)}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  color:var(--muted);
  font-size:22px;
  cursor:pointer;
}

/* ================= HERO ================= */
.hero{
  padding:72px 0 64px;
}

.hero h1{
  font-size:clamp(2.1rem,3vw,2.6rem);
  line-height:1.25;
  margin-bottom:14px;
}

.lead{
  color:var(--muted);
  max-width:720px;
  font-size:1.05rem;
}

/* ================= BUTTONS (FIXED & SAFE) ================= */
a,
button{
  pointer-events:auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:14px;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  border:none;
  transition:transform .2s ease, box-shadow .2s ease;
  z-index:20;
  position:relative;
}

.btn.primary{
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
  color:#052e16;
  box-shadow:0 14px 34px rgba(37,197,90,.35);
}

.btn.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 0 36px rgba(37,197,90,.6);
}

.hero-actions-equal{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:24px;
}

.hero-btn{
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
  color:#052e16;
  box-shadow:0 0 22px rgba(37,197,90,.35);
}

.hero-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 36px rgba(37,197,90,.6);
}

.cta-center{
  display:flex;
  justify-content:center;
  margin-top:26px;
}

.create-link-cta{
  padding:14px 28px;
  border-radius:18px;
  font-weight:700;
  font-size:16px;
  color:#7fffd4;
  background:rgba(0,255,255,.08);
  border:1px solid rgba(0,255,255,.35);
  box-shadow:0 0 18px rgba(0,255,255,.25);
}

.create-link-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 0 30px rgba(0,255,255,.45);
}

/* ================= TELEGRAM BUTTON ================= */
.telegram-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border-radius:14px;
  background:linear-gradient(180deg,#2aabee,#229ed9);
  color:#fff;
  font-weight:700;
  box-shadow:0 0 22px rgba(42,171,238,.4);
}

.telegram-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 36px rgba(42,171,238,.6);
}

/* ================= SECTIONS ================= */
.section{
  padding:64px 0;
}

.section-title{
  font-size:1.3rem;
  margin-bottom:8px;
}

.section-sub{
  color:var(--muted);
  font-size:.95rem;
}

/* ================= OFFER GRID ================= */
.offer-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
  margin-top:26px;
}

.offer-card,
.tool-card{
  background:
    linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.015));
  border:1px solid var(--border);
  border-radius:22px;
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:14px;
  transition:transform .25s ease, box-shadow .25s ease;
}
/* ===============================
   SUN / MOON THEME TOGGLE
   =============================== */

.theme-toggle{
  position:fixed;
  top:18px;
  right:18px;
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:9999;
  transition:background .3s ease, transform .3s ease;
}

.theme-toggle:hover{
  transform:scale(1.06);
}

/* ICON BASE */
.theme-toggle .icon{
  position:absolute;
  width:22px;
  height:22px;
  border-radius:50%;
  transition:
    transform .5s cubic-bezier(.4,0,.2,1),
    opacity .4s ease,
    box-shadow .4s ease;
}

/* SUN */
.sun{
  background:#facc15;
  box-shadow:0 0 14px rgba(250,204,21,.9);
}

/* MOON */
.moon{
  background:#e5e7eb;
  box-shadow:inset -6px -6px 0 #9ca3af;
  transform:scale(.5) rotate(-90deg);
  opacity:0;
}

/* DARK MODE ACTIVE */
body.dark .sun{
  transform:scale(.5) rotate(90deg);
  opacity:0;
}

body.dark .moon{
  transform:scale(1) rotate(0deg);
  opacity:1;
  box-shadow:0 0 14px rgba(229,231,235,.7);
}

/* OPTIONAL: DARK MODE BACKGROUND HOOK */
body.dark{
  background-color:#04060a;
}

.offer-card:hover,
.tool-card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 28px 60px rgba(0,0,0,.65),
    0 0 32px rgba(37,197,90,.25);
}

.full-width{width:100%}

/* ================= FAQ ================= */
.faq{
  display:grid;
  gap:14px;
}

.faq-item{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:14px;
  color:var(--text);
  font-weight:600;
  text-align:left;
  cursor:pointer;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 14px 14px;
  color:var(--muted);
}

/* ================= LEGAL ================= */
.legal-box{
  margin-top:32px;
  padding:20px;
  font-size:13px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
}

.legal-box h4{
  margin:0 0 8px;
  color:#e5e7eb;
}

/* ================= FOOTER ================= */
.footer{
  margin-top:80px;
  padding:30px 0;
  border-top:1px solid var(--border);
  background:linear-gradient(180deg,rgba(4,6,10,0),rgba(4,6,10,.9));
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-size:14px;
}

/* ================= MOBILE CTA ================= */
.mobile-cta{
  position:fixed;
  bottom:14px;
  left:50%;
  transform:translateX(-50%) translateY(120%);
  width:calc(100% - 28px);
  max-width:520px;
  background:linear-gradient(180deg,#2aabee,#229ed9);
  border-radius:18px;
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  box-shadow:0 18px 45px rgba(42,171,238,.55);
  transition:.4s ease;
  opacity:0;
  z-index:9999;
}

.mobile-cta.show{
  transform:translateX(-50%) translateY(0);
  opacity:1;
}

.mobile-cta .cta-main{
  color:#fff;
  font-weight:700;
  text-decoration:none;
  flex:1;
  text-align:center;
}

.mobile-cta .cta-close{
  background:rgba(255,255,255,.2);
  border:none;
  color:#fff;
  width:32px;
  height:32px;
  border-radius:50%;
  cursor:pointer;
}

/* Desktop: disable floating CTA */
@media(min-width:981px){
  .mobile-cta{display:none}
}

/* ================= RESPONSIVE ================= */
@media(max-width:980px){
  .offer-grid{grid-template-columns:1fr}
  .nav-links{display:none}
  .nav-toggle{display:block}
  .hero{padding:56px 0}
}
/* ================= FOOTER FIX ================= */

.footer{
  margin-top:80px;
  padding-top:60px;
  background:
    linear-gradient(
      180deg,
      rgba(4,6,10,0),
      rgba(4,6,10,0.6),
      rgba(4,6,10,0.95)
    );
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:40px;
  padding-bottom:30px;
}

.footer-left{
  max-width:420px;
}

.footer-brand{
  margin-bottom:14px;
}

.footer-note{
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
}

.footer-right{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-right a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
}

.footer-right a:hover{
  color:var(--text);
}

.footer-bottom{
  text-align:center;
  padding:16px 0;
  font-size:13px;
  color:var(--muted);
  border-top:1px solid rgba(255,255,255,0.05);
}

/* Mobile */
@media (max-width: 768px){
  .footer-inner{
    flex-direction:column;
    text-align:center;
  }

  .footer-right{
    align-items:center;
  }

  .footer-left{
    max-width:100%;
  }
}
.btn.secondary{
  background:rgba(255,255,255,0.08);
  color:#eaf2f8;
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 0 18px rgba(0,0,0,.35);
}

.btn.secondary:hover{
  background:rgba(255,255,255,0.14);
  transform:translateY(-2px);
}

.footer{
  margin-top:40px; /* instead of huge gap */
}
.offer-card {
  position: relative;
}

.offer-card .ribbon {
  position: absolute;
  top: 12px;
  right: -10px;
  background: #ff5722;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* === Premium Offer Badges === */

.offer-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.offer-head .badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: #f1f5f9;      /* soft neutral */
  color: #0f172a;
}

.offer-head .badge.exclusive {
  background: #eef2ff;      /* soft indigo */
  color: #3730a3;
}

.offer-head .tag.limited {
  background: #fff7ed;      /* soft orange */
  color: #9a3412;
}
.pay-btn{
  position:relative;
  padding:18px 32px;
  border-radius:18px;
  font-size:18px;
  font-weight:800;
  background:linear-gradient(180deg,#22c55e,#16a34a);
  color:#062e14;
  border:none;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(34,197,94,.35);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  transition:transform .25s ease, box-shadow .25s ease;
}

.pay-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 26px 60px rgba(34,197,94,.45);
}

.price-old{
  text-decoration:line-through;
  opacity:.55;
  font-size:15px;
  margin-right:8px;
}

.price-new{
  font-size:22px;
}

/* 🎅 Santa hat */
.santa-hat{
  position:absolute;
  top:-18px;
  right:-18px;
  width:54px;
  transform:rotate(90deg);
  pointer-events:none;
  filter:drop-shadow(0 6px 6px rgba(0,0,0,.35));
}

/* HIDDEN STATE (after Jan 5) */
.no-offer .price-old{
  display:none;
}
.no-offer .santa-hat{
  display:none;
}

/* ===========================
   PREMIUM OFFER BASE
=========================== */
.premium-offer{
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,215,128,.12), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border: 1px solid rgba(255,215,128,.25);

  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.premium-offer:hover{
  transform: translateY(-6px);
  box-shadow:
    0 40px 100px rgba(0,0,0,.75),
    inset 0 0 0 1px rgba(255,215,128,.18);
}

/* ===========================
   PREMIUM BADGE
=========================== */
.premium-badge{
  position:absolute;
  top:14px;
  right:14px;
  padding:6px 12px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.8px;
  border-radius:999px;
  background:linear-gradient(180deg,#ffd27d,#e6a93f);
  color:#3a2200;
  box-shadow:0 6px 16px rgba(255,215,128,.45);
  
}

/* ===========================
   GOLD TAG
=========================== */
.tag.gold{
  background: none;
  color:#ffd27d;
  border: none;
  font-weight: 700;
  letter-spacing: .4px;
  font-size: 13px;
}

/* ===========================
   PREMIUM EARN TEXT
=========================== */
.premium-earn{
  font-size:15px;
  font-weight:800;
  color:#ffe8b0;
}

/* ===========================
   PREMIUM CTA BUTTON
=========================== */
.premium-btn{
  background:
    linear-gradient(180deg,#ffd27d,#e6a93f);
  color:#3a2200;
  font-weight:900;
  box-shadow:0 18px 40px rgba(255,215,128,.55);
}

.premium-btn:hover{
  filter:brightness(1.05);
}

/* ===========================
   INDUSIND ACCENT
=========================== */
.indusind h3{
  letter-spacing:.3px;
}
/* PhonePe Offer Card */
.offer-card{
  max-width:420px;
  margin:30px auto;
  padding:26px;
  border-radius:22px;
  background:linear-gradient(180deg,#0b121a,#060b11);
  border:1px solid rgba(255,255,255,.08);
  color:#eaf2f8;
  font-family:system-ui, -apple-system, Segoe UI, Roboto;
  box-shadow:0 30px 80px rgba(0,0,0,.6);
}

.offer-badge{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  color:#22c55e;
  margin-bottom:10px;
}

.offer-card h2{
  margin:0;
  font-size:22px;
}

.offer-sub{
  margin:6px 0 16px;
  color:#9aa4af;
  font-size:14px;
}

.offer-steps{
  padding-left:18px;
  margin:0 0 20px;
  color:#cbd5e1;
  line-height:1.6;
}

.offer-steps li{
  margin-bottom:6px;
}

.offer-earn{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}

.offer-earn span{
  font-size:15px;
  color:#94a3b8;
}

.offer-earn strong{
  font-size:28px;
  color:#22c55e;
}

.offer-btn{
  display:block;
  text-align:center;
  padding:16px;
  border-radius:18px;
  background:linear-gradient(180deg,#22c55e,#16a34a);
  color:#052e16;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 16px 40px rgba(34,197,94,.45);
  transition:transform .2s ease, box-shadow .2s ease;
}

.offer-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 60px rgba(34,197,94,.6);
}
/* ================= OFFER CARD CONFIRM BUTTON ================= */

.offer-confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  margin-top: 14px;
  padding: 14px 16px;

  border-radius: 16px;
  text-decoration: none;

  background: linear-gradient(180deg, #2563eb, #1e40af);
  color: #ffffff;

  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.3px;

  box-shadow: 0 14px 38px rgba(37, 99, 235, 0.45);
  cursor: pointer;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(37, 99, 235, 0.65);
}

.offer-confirm-btn:active {
  transform: scale(0.98);
}











