*{
  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;
}

/* LATEST WINNER */
.latest-winner-banner{
  max-width:860px;
  margin:22px auto 0;
  background:linear-gradient(135deg,#E53E00,#FF6B00);
  color:#fff;
  border-radius:20px;
  padding:20px;
  box-shadow:0 10px 30px rgba(229,62,0,.25);
  display:none;
}

.latest-winner-banner h3{
  margin:0 0 8px;
  font-size:18px;
  color:#fff;
}

.latest-winner-banner p{
  margin:4px 0;
  font-weight:800;
  font-size:13px;
  color:rgba(255,255,255,.92);
}

/* SECTIONS */
.plans,
.winners,
.reviews{
  padding:55px 5%;
  background:#FFFBF5;
}

.plans:nth-of-type(even),
.winners:nth-of-type(even){
  background:#FFF5EE;
}

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

.plans h2,
.winners h2,
.reviews h2,
.faq-section h2{
  text-align:center;
  font-size:26px;
  margin-bottom:28px;
  color:#1A1A1A;
  font-weight:900;
}

.plans-grid,
.winner-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  max-width:1100px;
  margin:auto;
}

/* 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;
}

.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;
}

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

/* WINNER SLIDER */
.winner-slider{
  overflow:hidden;
  width:100%;
  margin-top:18px;
  padding:12px 0;
}

.winner-track{
  display:flex;
  gap:14px;
  width:max-content;
  animation:slideWinners 55s linear infinite;
  padding-left:14px;
}

.winner-track:hover{
  animation-play-state:paused;
}

.winner-track .winner-card{
  min-width:240px;
  max-width:240px;
  min-height:120px;
  border-radius:16px;
  padding:18px 14px;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
  text-align:center;
  transition:.25s;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.winner-track .winner-card:nth-child(3n+1){
  background:linear-gradient(135deg,#FFF9E6,#FEF3C7);
  border:2px solid #F59E0B;
}

.winner-track .winner-card:nth-child(3n+2){
  background:linear-gradient(135deg,#FFF5EE,#FFEDD5);
  border:2px solid #FF6B00;
}

.winner-track .winner-card:nth-child(3n+3){
  background:linear-gradient(135deg,#FFF0F0,#FFE4E1);
  border:2px solid #E53E00;
}

.winner-track .winner-card h3{
  color:#1A1A1A;
  margin:0 0 7px;
  font-weight:900;
  font-size:14px;
}

.winner-track .winner-card p{
  margin:3px 0;
  font-weight:800;
  color:#4B5563;
  font-size:13px;
}

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

/* WHY CHOOSE */
.winner-grid .winner-card{
  background:#fff;
  border:2px solid #FFD0B0;
  border-radius:16px;
  padding:22px;
  text-align:center;
  font-weight:700;
  transition:.25s;
  color:#1A1A1A;
  box-shadow:0 5px 16px rgba(229,62,0,.07);
}

.winner-grid .winner-card strong{
  display:block;
  color:#E53E00;
  font-size:15px;
  margin-bottom:8px;
}

.winner-grid .winner-card span{
  color:#6B7280;
  font-size:13px;
  line-height:1.6;
}

.winner-grid .winner-card .primary-btn{
  margin-top:14px;
  width:100%;
}

/* 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;
}

#winnerPopup{
  display:none!important;
}

/* 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;
}

.winner-box{
  background:#FFF5EE;
  border-radius:14px;
  padding:16px;
  margin-top:12px;
}

.winner-box h3{
  margin-bottom:7px;
  color:#E53E00;
}

.winner-box div{
  font-size:18px;
  font-weight:800;
  color:#1A1A1A;
}

.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){
  .plans-grid,
  .winner-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* 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;
  }

  .latest-winner-banner{
    margin-top:12px;
    padding:10px;
    border-radius:14px;
  }

  .latest-winner-banner h3{
    font-size:14px;
    margin-bottom:6px;
  }

  .latest-winner-banner p{
    font-size:10.5px;
    line-height:1.35;
    margin:3px 0;
  }

  .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,
  .winners,
  .reviews,
  .faq-section{
    padding:22px 10px;
  }

  .plans h2,
  .winners h2,
  .reviews h2,
  .faq-section h2{
    font-size:20px;
    margin-bottom:12px;
    line-height:1.2;
  }

  .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;
  }

  .winner-slider{
    margin-top:8px;
    padding:8px 0;
  }

  .winner-track{
    gap:9px;
    padding-left:8px;
  }

  .winner-track .winner-card{
    min-width:190px;
    max-width:190px;
    min-height:92px;
    padding:10px 8px;
    border-radius:13px;
  }

  .winner-track .winner-card h3{
    font-size:11.5px;
    margin-bottom:4px;
  }

  .winner-track .winner-card p{
    font-size:10.5px;
    margin:2px 0;
  }

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

  .winner-grid .winner-card{
    padding:12px 7px;
    border-radius:13px;
    font-size:11px;
  }

  .winner-grid .winner-card strong{
    font-size:12px;
    margin-bottom:5px;
  }

  .winner-grid .winner-card span{
    font-size:10.5px;
    line-height:1.35;
  }

  .winner-grid .winner-card .primary-btn{
    padding:8px 5px;
    font-size:10.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;
  }

  #winnerPopup,
  #liveBooking{
    display:none!important;
  }

  .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}
.kuber-winner-badge{display:inline-block;background:linear-gradient(135deg,#F59E0B,#FDE68A);color:#78350F;border-radius:999px;padding:8px 12px;font-weight:1000;box-shadow:0 8px 20px rgba(245,158,11,.25)}
