:root {
  --orange: #f97316;
  --gold: #facc15;
  --dark: #111827;
  --dark2: #1f2937;
  --dark3: #374151;
  --muted: #9ca3af;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    overflow-x: clip;
    width: 100%;
  font-family: 'Hind Siliguri', sans-serif;
  background-color: var(--dark);
  color: #e5e7eb;
  line-height: 1.8;
}

a { color: var(--orange); text-decoration: none; }

a:hover { color: var(--gold); }

/* BREADCRUMB */
.breadcrumb-bar {
  background: var(--dark2);
  border-bottom: 1px solid rgba(249,115,22,0.15);
  padding: 0.65rem 0;
}

.breadcrumb-bar .breadcrumb {
  margin: 0;
  background: transparent;
  padding: 0;
  font-size: 0.88rem;
}

.breadcrumb-item a { color: var(--orange); }

.breadcrumb-item.active { color: var(--muted); }

.breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }

/* HERO */
.page-hero {
  background: linear-gradient(135deg, #0d1117 0%, #1a0800 40%, #2d1200 70%, #0d1117 100%);
  padding: 70px 0 55px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(250,204,21,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Spinning wheel decoration */
.wheel-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  opacity: 0.08;
  border-radius: 50%;
  border: 30px solid var(--orange);
  border-top-color: var(--gold);
  border-right-color: var(--orange);
  border-bottom-color: var(--gold);
  animation: spinDeco 12s linear infinite;
  pointer-events: none;
}

@keyframes spinDeco {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  color: #111;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.page-hero h1 span {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p.lead {
  color: #d1d5db;
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.btn-primary-orange {
  background: linear-gradient(135deg, var(--orange), #ea6c00);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.55);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline-gold:hover { background: var(--gold); color: #111; }

/* SECTION */
.section-pad { padding: 65px 0; }

.bg-dark2 { background: var(--dark2); }

.bg-dark  { background: var(--dark); }

.section-title { font-size: 1.85rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }

.section-title span { color: var(--orange); }

.section-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 2rem; }

.divider-line {
  width: 55px; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
  margin: 0.5rem 0 1rem;
}

/* STATS */
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--dark3);
  border-radius: 10px;
  border: 1px solid rgba(249,115,22,0.2);
}

.stat-num {
  font-size: 2rem; font-weight: 700;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-lbl { font-size: 0.82rem; color: var(--muted); }

/* WHEEL SEGMENTS DISPLAY */
.wheel-segments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.seg-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--dark3);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(249,115,22,0.15);
  transition: all 0.25s;
}

.seg-item:hover { border-color: var(--orange); background: rgba(249,115,22,0.08); }

.seg-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.seg-label { font-size: 0.85rem; color: #d1d5db; font-weight: 500; }

.seg-mult  { font-size: 0.8rem; color: var(--gold); font-weight: 700; margin-left: auto; }

/* PRIZE CARDS */
.prize-card {
  background: var(--dark3);
  border-radius: 14px;
  padding: 1.8rem 1.4rem;
  border: 1px solid rgba(249,115,22,0.15);
  text-align: center;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.prize-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.prize-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(249,115,22,0.22);
}

.prize-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(250,204,21,0.08), rgba(249,115,22,0.08));
}

.prize-card.featured:hover { box-shadow: 0 12px 35px rgba(250,204,21,0.3); }

.prize-icon { font-size: 2.8rem; margin-bottom: 0.9rem; display: block; }

.prize-name { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }

.prize-mult {
  font-size: 1.9rem; font-weight: 800;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.prize-desc { font-size: 0.82rem; color: var(--muted); }

.badge-hot {
  position: absolute;
  top: 12px; right: 12px;
  background: #ef4444;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.badge-top {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  color: #111;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}

/* FEAT CARDS */
.feat-card {
  background: var(--dark2);
  border-radius: 12px;
  padding: 1.8rem 1.4rem;
  border: 1px solid rgba(249,115,22,0.15);
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.feat-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(249,115,22,0.18);
  transform: translateY(-4px);
}

.feat-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.5rem; color: #111;
}

.feat-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.45rem; }

.feat-text  { font-size: 0.86rem; color: var(--muted); }

/* CONTENT BLOCKS */
.content-block {
  background: var(--dark2);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--orange);
  margin-bottom: 1.5rem;
}

.content-block h3 { color: var(--orange); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.8rem; }

.content-block p  { color: #d1d5db; font-size: 0.95rem; margin-bottom: 0.6rem; }

.content-block p:last-child { margin-bottom: 0; }

/* STEP */
.step-item { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 1.5rem; }

.step-num {
  min-width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: #111;
  flex-shrink: 0;
}

.step-content h5 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }

.step-content p  { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* TABLE */
.custom-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 10px; overflow: hidden; }

.custom-table thead th { background: linear-gradient(135deg, var(--orange), #ea6c00); color: #fff; padding: 0.9rem 1.2rem; font-size: 0.9rem; font-weight: 700; }

.custom-table tbody td { padding: 0.85rem 1.2rem; font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.05); color: #d1d5db; }

.custom-table tbody tr:nth-child(odd) td  { background: rgba(255,255,255,0.03); }

.custom-table tbody tr:nth-child(even) td { background: rgba(0,0,0,0.12); }

.custom-table tbody tr:last-child td { border-bottom: none; }

.custom-table td:first-child { color: var(--gold); font-weight: 600; }

/* INFO BOX */
.info-box {
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(250,204,21,0.06));
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 12px;
  padding: 1.6rem;
  margin: 1.5rem 0;
}

.info-box h5 { color: var(--gold); font-weight: 700; margin-bottom: 0.7rem; }

.info-box p, .info-box li { color: #d1d5db; font-size: 0.9rem; }

.info-box ul { padding-left: 1.2rem; }

.info-box li  { margin-bottom: 0.35rem; }

/* IMG WRAP */
.img-wrap { display: flex; justify-content: center; margin: 2rem 0; }

.img-wrap img {
  width: 100%; max-width: 820px; height: auto;
  border-radius: 12px;
  border: 2px solid rgba(249,115,22,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  display: block;
}

/* CTA STRIP */
.cta-strip { background: linear-gradient(90deg, var(--orange), #ea6c00, var(--orange)); padding: 2.5rem 0; text-align: center; }

.cta-strip h3 { color: #fff; font-weight: 700; font-size: 1.6rem; margin-bottom: 0.5rem; }

.cta-strip p  { color: rgba(255,255,255,0.85); margin-bottom: 1.2rem; }

.btn-cta-white {
  background: #fff; color: var(--orange);
  font-weight: 700; padding: 0.7rem 2rem;
  border-radius: 8px; font-size: 1rem;
  display: inline-block; transition: all 0.3s;
}

.btn-cta-white:hover { background: var(--gold); color: #111; }

/* TICKER */
.win-ticker { background: var(--dark3); border-top: 1px solid rgba(249,115,22,0.2); border-bottom: 1px solid rgba(249,115,22,0.2); padding: 0.6rem 0; overflow: hidden; }

.ticker-inner { display: flex; gap: 3rem; white-space: nowrap; animation: tickerMove 28s linear infinite; }

.ticker-item { font-size: 0.82rem; color: #d1d5db; }

.ticker-item span { color: var(--gold); font-weight: 700; }

@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 768px) {
.page-hero h1 { font-size: 1.7rem; }

.section-title { font-size: 1.5rem; }

.wheel-deco { display: none; }

.wheel-segments { grid-template-columns: 1fr; }
}
