: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); }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

/* 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 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(250,204,21,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.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.5);
  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 ROW */
.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); }

/* GAME TYPE CARDS */
.game-type-card {
  background: var(--dark3);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(249,115,22,0.18);
  transition: all 0.3s;
  height: 100%;
}

.game-type-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(249,115,22,0.22);
}

.game-type-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.gtc-body {
    overflow-x: clip;
    width: 100%; padding: 1.2rem; }

.gtc-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }

.gtc-text { font-size: 0.87rem; color: var(--muted); margin-bottom: 0.9rem; }

.gtc-badge {
  display: inline-block;
  background: rgba(249,115,22,0.15);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(249,115,22,0.3);
}

/* FEATURE 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; }

/* HOW TO PLAY */
.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; }

/* 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; }

/* IMG WRAPPER */
.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;
}

@media (max-width: 768px) {
.page-hero h1 { font-size: 1.7rem; }

.section-title { font-size: 1.5rem; }
}
