:root {
  --orange: #f97316;
  --gold: #facc15;
  --dark: #111827;
  --dark2: #1f2937;
  --dark3: #374151;
  --muted: #9ca3af;
  --red: #ef4444;
  --green: #22c55e;
}

* { 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); }

/* 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 30s linear infinite;
}

.ticker-item { font-size: 0.82rem; color: #d1d5db; }

.ticker-item span { color: var(--gold); font-weight: 700; }

.ticker-item .mult { color: var(--orange); }

@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* HERO */
.page-hero {
  background: linear-gradient(135deg, #0d1117 0%, #1a0500 35%, #2a0a00 65%, #0d1117 100%);
  padding: 70px 0 55px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; top: -20%; right: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute; bottom: -15%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(250,204,21,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated multiplier display */
.hero-mult-display {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  pointer-events: none;
}

.mult-number {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  animation: multPulse 2s ease-in-out infinite;
  opacity: 0.18;
}

.mult-label {
  font-size: 1rem;
  color: var(--orange);
  font-weight: 700;
  opacity: 0.15;
  letter-spacing: 2px;
}

@keyframes multPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Crash graph line decoration */
.crash-deco {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.06;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--red), #b91c1c);
  color: #fff;
  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; }

/* STAT */
.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); }

/* LIVE MULT BAR */
.live-mult-bar {
  background: var(--dark2);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 14px; padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.live-mult-bar h6 { color: var(--gold); font-weight: 700; margin-bottom: 1rem; font-size: 0.9rem; }

.mult-pill {
  display: inline-block;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.82rem; font-weight: 700;
  margin: 3px;
}

.mult-low  { background: rgba(34,197,94,0.15);  color: #22c55e;  border: 1px solid rgba(34,197,94,0.3); }

.mult-mid  { background: rgba(249,115,22,0.15); color: var(--orange); border: 1px solid rgba(249,115,22,0.3); }

.mult-high { background: rgba(250,204,21,0.15); color: var(--gold);   border: 1px solid rgba(250,204,21,0.3); }

.mult-crash{ background: rgba(239,68,68,0.15);  color: #ef4444;  border: 1px solid rgba(239,68,68,0.3); }

/* 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;
}

/* STRATEGY CARDS */
.strategy-card {
  background: var(--dark3); border-radius: 12px;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(249,115,22,0.15);
  height: 100%; transition: all 0.3s;
  position: relative; overflow: hidden;
}

.strategy-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--orange), var(--gold));
}

.strategy-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(249,115,22,0.2);
}

.strategy-icon {
  font-size: 2rem; margin-bottom: 0.8rem; display: block;
}

.strategy-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }

.strategy-text  { font-size: 0.87rem; color: var(--muted); }

.strategy-tag {
  display: inline-block; margin-top: 0.8rem;
  padding: 3px 10px; border-radius: 12px; font-size: 0.75rem; font-weight: 700;
}

.tag-safe    { background: rgba(34,197,94,0.15);  color: #22c55e; }

.tag-medium  { background: rgba(249,115,22,0.15); color: var(--orange); }

.tag-risky   { background: rgba(239,68,68,0.15);  color: #ef4444; }

/* CONTENT BLOCK */
.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; }

/* 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; }

/* WARN BOX */
.warn-box {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 12px; padding: 1.4rem; margin: 1.2rem 0;
}

.warn-box h6 { color: #ef4444; font-weight: 700; margin-bottom: 0.5rem; }

.warn-box p  { color: #d1d5db; font-size: 0.88rem; margin: 0; }

/* FEAT CARD */
.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); }

/* 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; }

/* 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; }

/* PROGRESS BAR styled */
.risk-bar-wrap { margin-bottom: 1.2rem; }

.risk-bar-label {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: #d1d5db; margin-bottom: 0.35rem;
}

.risk-bar-bg {
  background: var(--dark3); border-radius: 20px;
  height: 10px; overflow: hidden;
}

.risk-bar-fill {
  height: 100%; border-radius: 20px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transition: width 1s ease;
}

/* COUNTER animation */
.counter-num {
  font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
.page-hero h1 { font-size: 1.7rem; }

.section-title { font-size: 1.5rem; }

.hero-mult-display { display: none; }

.mult-number { font-size: 3.5rem; }
}
