*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Segoe UI",Arial,sans-serif;
}

html{
  background:#FFFBF5;
}

body{
  background:#FFFBF5;
  color:#1A1A1A;
  overflow-x:hidden;
  overscroll-behavior-y:none;
}

/* TICKER */
#ticker{
  background:linear-gradient(90deg,#E53E00,#FF6B00,#E53E00);
  color:#fff;
  padding:8px 12px;
  text-align:center;
  font-weight:800;
  font-size:13px;
  position:sticky;
  top:0;
  z-index:999;
  line-height:1.45;
}

/* HEADER */
.header{
  background:#fff;
  padding:10px 5% 12px;
  text-align:center;
  box-shadow:0 2px 12px rgba(229,62,0,.10);
  position:sticky;
  top:35px;
  z-index:998;
  border-bottom:3px solid #FF6B00;
}

.header h1{
  font-size:20px;
  font-weight:900;
  color:#E53E00;
  margin-bottom:10px;
}

.nav-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  flex-wrap:nowrap;
}

button{
  cursor:pointer;
  font-weight:800;
  transition:.22s;
  border:none;
}

.primary-btn{
  background:linear-gradient(135deg,#E53E00,#FF6B00);
  color:#fff;
  padding:10px 22px;
  border-radius:12px;
  font-size:14px;
  box-shadow:0 4px 14px rgba(229,62,0,.30);
}

.secondary-btn{
  background:#FFF5EE;
  color:#E53E00;
  border:1.5px solid #FFCCAA;
  padding:9px 16px;
  border-radius:999px;
  font-size:13px;
}

.primary-btn:hover,
.secondary-btn:hover{
  transform:translateY(-2px);
}

/* HERO */
.hero{
  padding:36px 20px 48px;
  text-align:center;
  background:linear-gradient(160deg,#FFF5EE 0%,#FFFBF5 60%,#FFF0E5 100%);
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  top:-60px;
  right:-80px;
  width:340px;
  height:340px;
  background:radial-gradient(circle,rgba(255,107,0,.12),transparent 70%);
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  bottom:-40px;
  left:-60px;
  width:260px;
  height:260px;
  background:radial-gradient(circle,rgba(229,62,0,.08),transparent 70%);
  pointer-events:none;
}

.badge{
  display:inline-block;
  padding:7px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,#FF6B00,#E53E00);
  color:#fff;
  font-weight:800;
  margin-bottom:16px;
  font-size:13px;
  box-shadow:0 4px 12px rgba(229,62,0,.25);
}

.hero h1{
  font-size:34px;
  font-weight:900;
  line-height:1.18;
  margin-bottom:14px;
  color:#1A1A1A;
}

.hero h1 span{
  color:#E53E00;
}

.hero p{
  max-width:640px;
  margin:auto;
  font-size:15px;
  line-height:1.75;
  color:#6B7280;
}

.hero-buttons{
  margin-top:24px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* COUNTDOWN */
.countdown-box{
  background:#fff;
  border:2px solid #FFD0B0;
  padding:22px 28px;
  border-radius:22px;
  width:max-content;
  max-width:100%;
  margin:26px auto;
  text-align:center;
  box-shadow:0 8px 28px rgba(229,62,0,.10);
  font-weight:800;
  font-size:15px;
  color:#1A1A1A;
}

#countdown{
  font-size:46px;
  font-weight:900;
  color:#E53E00;
  margin-top:8px;
  letter-spacing:2px;
}

.live-users{
  margin-top:14px;
  font-weight:800;
  color:#E53E00;
  font-size:15px;
}

/* TRUST + STATS */
.trust-strip{
  max-width:860px;
  margin:22px auto 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}

.trust-item{
  background:#fff;
  border:1.5px solid #FFD0B0;
  border-radius:14px;
  padding:11px 8px;
  font-weight:800;
  color:#1A1A1A;
  font-size:12px;
  text-align:center;
  box-shadow:0 3px 10px rgba(229,62,0,.07);
}

.live-stats-box{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  max-width:640px;
  margin:20px auto 0;
}

.live-stat-card{
  background:#fff;
  border:1.5px solid #FFD0B0;
  border-radius:14px;
  padding:12px 14px;
  font-size:14px;
  font-weight:800;
  color:#1A1A1A;
  box-shadow:0 3px 10px rgba(229,62,0,.07);
}

.live-stat-card span{
  color:#E53E00;
}








/* SECTIONS */




.faq-section{
  padding:55px 5%;
  max-width:1000px;
  margin:auto;
  background:#FFFBF5;
}





/* PLAN CARDS */
.plan-card{
  background:#fff;
  border:2px solid #FFD0B0;
  border-radius:20px;
  padding:24px 20px;
  text-align:center;
  transition:.25s;
  box-shadow:0 6px 20px rgba(229,62,0,.08);
}

.plan-card:hover{
  transform:translateY(-5px);
  border-color:#FF6B00;
  box-shadow:0 14px 35px rgba(229,62,0,.15);
}

.plan-card h3{
  font-size:36px;
  margin-bottom:10px;
  color:#E53E00;
  font-weight:900;
}

.plan-card p{
  margin-bottom:12px;
  color:#6B7280;
  font-size:13px;
}

.plan-card button{
  padding:11px 22px;
  border-radius:999px;
  background:linear-gradient(135deg,#E53E00,#FF6B00);
  color:#fff;
  font-weight:800;
  font-size:14px;
  box-shadow:0 5px 15px rgba(229,62,0,.30);
}

.plan-live-badge{
  display:inline-block;
  padding:5px 13px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  margin-bottom:10px;
  background:#ECFDF5;
  color:#16A34A;
  border:1.5px solid #86EFAC;
}


.sell-fast-badge{
  display:inline-block;
  padding:5px 13px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  margin:6px 0 10px;
  background:linear-gradient(135deg,#EF4444,#F97316);
  color:#fff!important;
  border:none!important;
  box-shadow:0 8px 18px rgba(239,68,68,.22);
}
.booked-reserved-line{
  font-weight:900!important;
  color:#E53E00!important;
  margin:8px 0!important;
  white-space:nowrap;
  font-variant-numeric:tabular-nums;
}
.limited-text-line{
  display:inline-block;
  font-weight:900!important;
  color:#16A34A!important;
  margin:8px 0!important;
  padding:5px 12px;
  border-radius:999px;
  background:#ECFDF5;
}

.completed-badge{
  display:inline-block;
  padding:5px 13px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  margin-bottom:10px;
  background:#FFF7ED;
  color:#C2410C;
  border:1.5px solid #FDBA74;
}

.completed-card{
  border-color:#FDBA74!important;
  background:linear-gradient(135deg,#FFFBF5,#FFF5EE)!important;
}

/* Smaller past result cards */
.completed-card{
  padding:19px 16px!important;
}
.completed-card .completed-badge{
  font-size:11px;
  padding:4px 11px;
}
.completed-card h3{
  font-size:16px!important;
  line-height:1.25;
  margin:6px 0!important;
}
.completed-card p{
  font-size:12px!important;
  margin:6px 0!important;
}
.completed-card button{
  padding:9px 16px!important;
  font-size:12px!important;
}
.completed-card div[style*="font-size:32px"]{
  font-size:27px!important;
  margin:6px 0!important;
}
@media(max-width:480px){
  .sell-fast-badge{font-size:9.5px;padding:5px 9px;margin:5px 0 7px;}
  .booked-reserved-line{font-size:10.5px!important;line-height:1.25;}
  .limited-text-line{font-size:10.5px!important;padding:4px 9px;margin:5px 0!important;}
  .completed-card{padding:10px 7px!important;border-radius:14px!important;}
  .completed-card .completed-badge{font-size:8.5px!important;padding:4px 7px!important;margin-bottom:5px!important;}
  .completed-card h3{font-size:14px!important;line-height:1.18;margin:5px 0!important;}
  .completed-card p{font-size:10px!important;margin:4px 0!important;line-height:1.2;}
  .completed-card button{font-size:9.5px!important;padding:7px 5px!important;}
  .completed-card div[style*="font-size:32px"]{font-size:24px!important;margin:5px 0!important;}
}


.left-badge{
  display:inline-block;
  background:#E53E00;
  color:#fff;
  padding:4px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  margin:7px 0;
}




















@keyframes slideWinners{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* WHY CHOOSE */








/* FAQ */
.faq-item{
  background:#fff;
  border:1.5px solid #FFD0B0;
  border-radius:14px;
  padding:18px 20px;
  margin-bottom:10px;
  box-shadow:0 3px 10px rgba(229,62,0,.06);
}

.faq-item h3{
  margin-bottom:7px;
  color:#E53E00;
  font-size:15px;
  font-weight:800;
}

.faq-item p{
  color:#6B7280;
  font-size:13px;
  line-height:1.65;
}

/* FOOTER */
footer{
  background:#fff;
  padding:24px 20px calc(24px + env(safe-area-inset-bottom));
  text-align:center;
  border-top:3px solid #FFD0B0;
  margin-top:0;
}

footer p{
  color:#6B7280;
  font-size:12px;
  margin-bottom:7px;
}

footer a{
  color:#E53E00;
  text-decoration:none;
  font-size:12px;
}

/* FLOATING */
.floating-whatsapp{
  position:fixed;
  bottom:22px;
  right:20px;
  width:56px;
  height:56px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:25px;
  text-decoration:none;
  color:#fff;
  z-index:1000;
  box-shadow:0 0 18px rgba(37,211,102,.5);
}

#liveBooking{
  display:block;
  position:fixed;
  left:12px;
  bottom:15px;
  max-width:300px;
  background:#fff;
  border-left:4px solid #16A34A;
  color:#1A1A1A;
  padding:10px 13px;
  border-radius:13px;
  box-shadow:0 6px 20px rgba(0,0,0,.12);
  font-size:13px;
  font-weight:700;
  z-index:99999;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}



/* SHARED PAGE ELEMENTS */
.ticket-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:13px;
  margin:16px 0;
}

.stat-card{
  background:#fff;
  border:1.5px solid #FFD0B0;
  border-radius:14px;
  padding:16px;
  text-align:center;
}

.progress-box{
  height:9px;
  background:#FFE8D8;
  border-radius:20px;
  overflow:hidden;
  margin:16px 0;
}

.progress-bar{
  height:100%;
  width:35%;
  background:linear-gradient(90deg,#E53E00,#FF6B00);
  border-radius:20px;
}

.upi-box{
  margin:16px 0;
  background:#FFF5EE;
  border:1.5px solid #FFD0B0;
  border-radius:14px;
  padding:16px;
  text-align:center;
}

.upi-label{
  font-size:12px;
  color:#6B7280;
  font-weight:700;
  margin-bottom:5px;
}

.upi-id{
  font-size:17px;
  color:#1A1A1A;
  font-weight:900;
  word-break:break-all;
  margin-bottom:10px;
}

.copy-upi-btn{
  background:#E53E00;
  color:#fff;
  border:none;
  padding:10px 20px;
  border-radius:11px;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
  width:100%;
  max-width:200px;
}

.back-btn{
  display:inline-block;
  margin-bottom:18px;
  padding:10px 18px;
  background:#E53E00;
  color:#fff;
  text-decoration:none;
  border-radius:11px;
  font-weight:700;
}

.card{
  background:#fff;
  border:2px solid #FFD0B0;
  max-width:680px;
  margin:28px auto;
  padding:30px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 8px 28px rgba(229,62,0,.10);
}

.card h1{
  color:#E53E00;
  margin-bottom:10px;
}

#planTitle{
  font-size:26px;
  color:#1A1A1A;
  margin:12px 0;
}

#resultDate{
  color:#6B7280;
  font-weight:600;
}







.ticket{
  background:#fff;
  border:1.5px solid #FFD0B0;
  border-radius:14px;
  padding:13px;
  text-align:center;
  transition:.25s;
}

.ticket:hover{
  transform:translateY(-3px);
  border-color:#FF6B00;
}

.ticket-id{
  color:#E53E00;
  font-weight:900;
}

.modal-content{
  background:#fff;
  padding:22px;
  border-radius:16px;
  text-align:center;
  color:#1A1A1A;
}

#waBtn{
  background:#25D366;
  color:#fff;
  padding:10px 18px;
  border-radius:11px;
  display:inline-block;
  text-decoration:none;
  font-weight:800;
}

/* TABLET */
@media(max-width:900px){
  
}

/* MOBILE */
@media(max-width:768px){
  #ticker{
    font-size:11px;
    padding:6px 8px;
    line-height:1.35;
  }

  .header{
    position:static;
    top:auto;
    padding:8px 8px 9px;
  }

  .header h1{
    font-size:18px;
    line-height:1.1;
    margin-bottom:7px;
  }

  .nav-buttons{
    display:grid;
    grid-template-columns:1.25fr 1fr 1fr 1fr;
    gap:5px;
    max-width:100%;
  }

  .nav-buttons button,
  .nav-buttons .primary-btn,
  .nav-buttons .secondary-btn{
    width:100%;
    padding:8px 4px;
    min-height:34px;
    font-size:10.5px;
    border-radius:10px;
    white-space:nowrap;
  }

  .hero{
    padding:14px 10px 20px;
  }

  .countdown-box{
    width:100%;
    max-width:300px;
    margin:10px auto 12px;
    padding:11px 12px;
    border-radius:16px;
    font-size:12px;
  }

  #countdown{
    font-size:28px;
    margin-top:4px;
    letter-spacing:1px;
  }

  .live-users{
    font-size:11px;
    margin-top:7px;
  }

  .badge{
    font-size:10.5px;
    padding:5px 10px;
    margin-bottom:10px;
  }

  .hero h1{
    font-size:23px;
    line-height:1.15;
    margin-bottom:8px;
  }

  .hero p{
    font-size:12px;
    line-height:1.45;
    max-width:320px;
  }

  .hero-buttons{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    max-width:300px;
    margin:14px auto 0;
  }

  .hero-buttons .primary-btn,
  .hero-buttons .secondary-btn{
    height:38px;
    font-size:12px;
    border-radius:11px;
  }

  .trust-strip{
    grid-template-columns:repeat(4,1fr);
    gap:5px;
    margin-top:12px;
    padding:0;
  }

  .trust-item{
    font-size:9.5px;
    padding:7px 3px;
    border-radius:9px;
  }

  

  

  

  .live-stats-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:7px;
    margin-top:12px;
    padding:0;
  }

  .live-stat-card{
    font-size:10.5px;
    padding:8px 5px;
    border-radius:10px;
  }

  

  

  .plans-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:9px;
  }

  .plan-card{
    padding:13px 7px;
    border-radius:15px;
    min-height:auto;
  }

  .plan-live-badge,
  .completed-badge{
    font-size:9.5px;
    padding:4px 8px;
    margin-bottom:6px;
  }

  .plan-card h3{
    font-size:24px;
    margin:6px 0;
  }

  .left-badge{
    font-size:9.5px;
    padding:4px 8px;
    margin:5px 0;
  }

  .plan-card p{
    font-size:10.5px;
    line-height:1.25;
    margin:5px 0;
  }

  .plan-card button{
    width:100%;
    font-size:10.5px;
    padding:8px 5px;
    margin-top:5px;
  }

  

  

  

  

  

  

  

  

  

  

  .faq-section{
    padding-top:18px;
  }

  .faq-item{
    padding:12px 12px;
    margin-bottom:8px;
    border-radius:12px;
  }

  .faq-item h3{
    font-size:13px;
    margin-bottom:4px;
  }

  .faq-item p{
    font-size:11.5px;
    line-height:1.45;
  }

  

  .floating-whatsapp{
    width:46px;
    height:46px;
    right:12px;
    bottom:14px;
    font-size:19px;
  }

  footer{
    padding:16px 10px 18px;
  }

  footer p,
  footer a{
    font-size:10.5px;
  }

  .ticket-stats{
    grid-template-columns:1fr;
  }
}

@media(max-width:360px){
  .nav-buttons button,
  .nav-buttons .primary-btn,
  .nav-buttons .secondary-btn{
    font-size:9.5px;
    padding:7px 2px;
  }

  .plan-card h3{
    font-size:21px;
  }

  .plan-card p{
    font-size:9.5px;
  }
}

/* FINAL IOS/ANDROID SAFE END */
html{
  background:#FFFBF5;
}

body{
  background:#FFFBF5;
  overflow-x:hidden;
  overscroll-behavior-y:none;
}

footer{
  margin-bottom:0;
}

@supports (-webkit-touch-callout:none){
  html,
  body{
    background:#FFFBF5;
  }
}


/* ===== Kuber UX Enhancements: skeleton, countdown, badges ===== */
.kuber-skeleton-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px;width:100%}
.kuber-skeleton-card{background:#fff;border:2px solid #FFD0B0;border-radius:26px;padding:22px;box-shadow:0 14px 34px rgba(229,62,0,.10);overflow:hidden;position:relative}
.kuber-skeleton-card:before{content:"";position:absolute;inset:0;transform:translateX(-100%);background:linear-gradient(90deg,transparent,rgba(255,107,0,.13),transparent);animation:kuberShimmer 1.2s infinite}
.kuber-skel{height:14px;background:#FFE7D6;border-radius:999px;margin:12px 0}.kuber-skel.big{height:42px;width:46%}.kuber-skel.mid{width:75%}.kuber-skel.small{width:38%}
@keyframes kuberShimmer{100%{transform:translateX(100%)}}
.kuber-countdown{margin-top:12px;background:#FFF7ED;border:1px solid #FFD0B0;color:#9A3412;border-radius:14px;padding:10px;font-weight:900;text-align:center}

