:root {
      --orange: #f97316;
      --gold: #facc15;
      --dark1: #111827;
      --dark2: #1a2233;
      --dark3: #1f2937;
      --dark4: #374151;
      --muted: #9ca3af;
      --white: #ffffff;
      --green: #22c55e;
      --blue: #3b82f6;
    }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    overflow-x: clip;
    width: 100%;
      font-family: 'Hind Siliguri', sans-serif;
      background: var(--dark1);
      color: #e5e7eb;
      font-size: 1rem;
      line-height: 1.75;
      overflow-x: hidden;
    }

/* READING PROGRESS */
    #readingProgress {
      position: fixed; top: 0; left: 0;
      height: 3px; width: 0%;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      z-index: 9999; transition: width 0.1s linear;
    }

.nav-cta {
      background: linear-gradient(135deg, var(--orange), #ea580c) !important;
      color: #fff !important; padding: 0.45rem 1.1rem !important;
      border-radius: 8px; font-weight: 700;
    }

.nav-cta:hover {
      background: linear-gradient(135deg, #fb923c, var(--orange)) !important;
      color: #fff !important;
    }

.nav-login-outline {
      border: 2px solid rgba(249,115,22,0.45);
      color: var(--orange) !important;
      padding: 0.4rem 1rem !important;
      border-radius: 8px; font-weight: 700; font-size: 0.82rem;
    }

.nav-login-outline:hover {
      background: rgba(249,115,22,0.08) !important;
      border-color: var(--orange);
    }

/* BREADCRUMB */
    .breadcrumb-bar {
      background: var(--dark2);
      border-bottom: 1px solid rgba(249,115,22,0.1);
      padding: 0.65rem 0;
    }

.breadcrumb { margin: 0; background: none; padding: 0; }

.breadcrumb-item a { color: var(--orange); text-decoration: none; font-size: 0.82rem; }

.breadcrumb-item.active { color: var(--muted); font-size: 0.82rem; }

.breadcrumb-item + .breadcrumb-item::before { color: var(--muted); content: "›"; }

/* HERO */
    .page-hero {
      background: linear-gradient(135deg, #0f172a 0%, #1a1500 50%, #111827 100%);
      padding: 5rem 0 4rem;
      position: relative; overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 550px; height: 550px;
      background: radial-gradient(circle, rgba(249,115,22,0.09) 0%, transparent 70%);
      border-radius: 50%; pointer-events: none;
    }

.page-hero::after {
      content: '';
      position: absolute; bottom: -80px; left: -80px;
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(250,204,21,0.06) 0%, transparent 70%);
      border-radius: 50%; pointer-events: none;
    }

.hero-badge {
      display: inline-flex; align-items: center;
      background: rgba(249,115,22,0.12);
      border: 1px solid rgba(249,115,22,0.3);
      color: var(--orange); font-size: 0.78rem; font-weight: 700;
      padding: 0.35rem 1rem; border-radius: 50px;
      margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 0.05em;
    }

.page-hero h1 {
      font-size: clamp(1.9rem, 4vw, 2.9rem);
      font-weight: 800; color: #fff; line-height: 1.22; 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 .lead { color: #9ca3af; font-size: 1rem; margin-bottom: 2rem; max-width: 540px; }

.hero-badges-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }

.hbadge {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: #d1d5db; font-size: 0.78rem; font-weight: 600;
      padding: 0.3rem 0.8rem; border-radius: 50px;
      display: flex; align-items: center; gap: 0.35rem;
    }

.hbadge i { color: var(--gold); }

/* FLOATING GAME CARDS HERO VISUAL */
    .hero-visual {
      position: relative; display: flex; align-items: center; justify-content: center;
      height: 340px;
    }

.float-card {
      position: absolute;
      background: var(--dark3);
      border: 1px solid rgba(249,115,22,0.2);
      border-radius: 16px;
      padding: 1rem 1.2rem;
      display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
      animation: floatCard 3s ease-in-out infinite;
    }

.float-card .fc-icon { font-size: 2rem; }

.float-card .fc-name { font-size: 0.7rem; font-weight: 800; color: #d1d5db; white-space: nowrap; }

.float-card .fc-tag { font-size: 0.6rem; color: var(--gold); font-weight: 700; background: rgba(250,204,21,0.1); padding: 0.1rem 0.4rem; border-radius: 4px; }

.fc1 { top: 10px; left: 20px; animation-delay: 0s; }

.fc2 { top: 10px; right: 20px; animation-delay: 0.5s; }

.fc3 { bottom: 10px; left: 20px; animation-delay: 1s; }

.fc4 { bottom: 10px; right: 20px; animation-delay: 1.5s; }

.fc5 { top: 50%; left: 50%; transform: translate(-50%, -50%);
      background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(250,204,21,0.08));
      border-color: rgba(249,115,22,0.4); z-index: 2;
      animation-delay: 0.75s; padding: 1.4rem 1.8rem;
    }

.fc5 .fc-icon { font-size: 2.6rem; }

.fc5 .fc-name { font-size: 0.85rem; color: #fff; }

@keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

.fc5 { animation: floatCard5 3s ease-in-out infinite; }

@keyframes floatCard5 {
      0%, 100% { transform: translate(-50%, -50%) translateY(0); }
      50% { transform: translate(-50%, -50%) translateY(-8px); }
    }

/* BUTTONS */
    .btn-primary-app {
      display: inline-flex; align-items: center; gap: 0.55rem;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      color: #fff; font-weight: 800; font-size: 0.95rem;
      padding: 0.85rem 1.8rem; border-radius: 12px; text-decoration: none;
      box-shadow: 0 6px 20px rgba(249,115,22,0.35); transition: all 0.25s;
      font-family: 'Hind Siliguri', sans-serif; border: none; cursor: pointer;
    }

.btn-primary-app:hover {
      background: linear-gradient(135deg, #fb923c, var(--orange));
      transform: translateY(-2px); box-shadow: 0 10px 28px rgba(249,115,22,0.45); color: #fff;
    }

.btn-outline-app {
      display: inline-flex; align-items: center; gap: 0.55rem;
      background: transparent; color: var(--orange); font-weight: 800; font-size: 0.95rem;
      padding: 0.83rem 1.8rem; border-radius: 12px; text-decoration: none;
      border: 2px solid rgba(249,115,22,0.4); transition: all 0.25s;
      font-family: 'Hind Siliguri', sans-serif;
    }

.btn-outline-app:hover {
      background: rgba(249,115,22,0.08); border-color: var(--orange);
      color: var(--orange); transform: translateY(-2px);
    }

/* STATS */
    .stats-strip {
      background: var(--dark2);
      border-top: 1px solid rgba(249,115,22,0.1);
      border-bottom: 1px solid rgba(249,115,22,0.1);
      padding: 1.8rem 0;
    }

.stat-item { text-align: center; padding: 0.5rem; }

.stat-num {
      font-size: 1.9rem; font-weight: 900;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      line-height: 1.1;
    }

.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 600; margin-top: 0.25rem; }

/* SECTION */
    .section-pad { padding: 5rem 0; }

.section-title {
      font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff;
    }

.section-title .hl {
      background: linear-gradient(90deg, var(--orange), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

.divider-line {
      width: 50px; height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      border-radius: 3px; margin-bottom: 1rem;
    }

.bg-dark2 { background: var(--dark2); }

/* GAME CATEGORY TABS */
    .cat-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }

.cat-tab {
      background: var(--dark3); border: 1px solid rgba(255,255,255,0.08);
      color: #9ca3af; font-size: 0.82rem; font-weight: 700;
      padding: 0.45rem 1rem; border-radius: 50px; cursor: pointer;
      transition: all 0.2s; display: flex; align-items: center; gap: 0.4rem;
      font-family: 'Hind Siliguri', sans-serif;
    }

.cat-tab:hover, .cat-tab.active {
      background: rgba(249,115,22,0.12); border-color: rgba(249,115,22,0.35);
      color: var(--orange);
    }

/* GAME CARDS */
    .game-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 18px; overflow: hidden;
      transition: all 0.28s; position: relative; height: 100%;
    }

.game-card:hover {
      border-color: rgba(249,115,22,0.3);
      transform: translateY(-5px);
      box-shadow: 0 14px 42px rgba(0,0,0,0.4);
    }

.game-card-thumb {
      height: 170px;
      display: flex; align-items: center; justify-content: center;
      font-size: 4rem; position: relative; overflow: hidden;
    }

.gc-live { background: linear-gradient(135deg, #0d1b2a, #1a2d1a); }

.gc-crash { background: linear-gradient(135deg, #1a0a0a, #2d1010); }

.gc-wheel { background: linear-gradient(135deg, #12001a, #200030); }

.gc-poker { background: linear-gradient(135deg, #0a1020, #0a2040); }

.gc-slot1 { background: linear-gradient(135deg, #1a1000, #2d2000); }

.gc-slot2 { background: linear-gradient(135deg, #001a1a, #002d2d); }

.gc-slot3 { background: linear-gradient(135deg, #1a001a, #2d002d); }

.game-badge {
      position: absolute; top: 10px; left: 10px;
      font-size: 0.65rem; font-weight: 800; padding: 0.2rem 0.55rem;
      border-radius: 6px; text-transform: uppercase; letter-spacing: 0.04em;
    }

.badge-live { background: rgba(34,197,94,0.2); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }

.badge-hot { background: rgba(249,115,22,0.2); color: var(--orange); border: 1px solid rgba(249,115,22,0.3); }

.badge-new { background: rgba(59,130,246,0.2); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }

.badge-popular { background: rgba(250,204,21,0.15); color: var(--gold); border: 1px solid rgba(250,204,21,0.25); }

.live-dot {
      position: absolute; top: 10px; right: 10px;
      width: 8px; height: 8px; border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
      animation: livePulse 1.4s ease-in-out infinite;
    }

@keyframes livePulse {
      0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
      50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); }
    }

.game-card-body {
    overflow-x: clip;
    width: 100%; padding: 1.1rem 1.2rem 1.3rem; }

.game-title { font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 0.3rem; }

.game-desc { font-size: 0.78rem; color: #6b7280; line-height: 1.6; margin-bottom: 0.8rem; }

.game-meta { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 0.9rem; }

.game-meta-chip {
      font-size: 0.68rem; font-weight: 700; color: #9ca3af;
      background: rgba(255,255,255,0.04); padding: 0.18rem 0.5rem;
      border-radius: 5px; display: flex; align-items: center; gap: 0.25rem;
    }

.game-meta-chip i { color: var(--gold); }

.btn-play {
      display: flex; align-items: center; justify-content: center; gap: 0.4rem;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      color: #fff; font-weight: 800; font-size: 0.82rem;
      padding: 0.55rem; border-radius: 10px; text-decoration: none;
      transition: all 0.2s; font-family: 'Hind Siliguri', sans-serif;
      width: 100%;
    }

.btn-play:hover {
      background: linear-gradient(135deg, #fb923c, var(--orange));
      color: #fff; transform: translateY(-1px);
    }

/* FEATURE CARDS */
    .feat-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 18px; padding: 2rem 1.6rem; height: 100%;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }

.feat-card:hover {
      border-color: rgba(249,115,22,0.3);
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(249,115,22,0.08);
    }

.feat-icon-wrap {
      width: 56px; height: 56px;
      background: rgba(249,115,22,0.1);
      border-radius: 14px; display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin-bottom: 1.1rem;
    }

.feat-title { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 0.55rem; }

.feat-text { font-size: 0.87rem; color: #9ca3af; line-height: 1.75; }

/* PROMO BANNER */
    .promo-banner {
      background: linear-gradient(135deg, rgba(249,115,22,0.15) 0%, rgba(250,204,21,0.08) 100%);
      border: 1px solid rgba(249,115,22,0.25);
      border-radius: 20px; padding: 2rem 2.5rem;
      position: relative; overflow: hidden;
    }

.promo-banner::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(249,115,22,0.15), transparent 70%);
      pointer-events: none;
    }

.promo-label {
      font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--gold);
      background: rgba(250,204,21,0.1); padding: 0.25rem 0.65rem;
      border-radius: 6px; display: inline-block; margin-bottom: 0.8rem;
    }

.promo-banner h4 { font-size: 1.35rem; font-weight: 900; color: #fff; margin-bottom: 0.5rem; }

.promo-banner p { color: #9ca3af; font-size: 0.88rem; margin: 0; }

/* PROSE */
    .prose-wrap { max-width: 820px; margin: 0 auto; }

.prose-wrap h2 {
      font-size: 1.45rem; font-weight: 800; color: #fff;
      margin-top: 2.5rem; margin-bottom: 1rem;
      display: flex; align-items: center; gap: 0.6rem;
    }

.prose-wrap h2 .h2-icon {
      width: 36px; height: 36px;
      background: rgba(249,115,22,0.12); border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--orange); font-size: 0.9rem; flex-shrink: 0;
    }

.prose-wrap p { font-size: 0.95rem; color: #9ca3af; margin-bottom: 1rem; line-height: 1.85; }

.prose-wrap ul { padding-left: 1.2rem; margin-bottom: 1rem; }

.prose-wrap ul li { font-size: 0.9rem; color: #9ca3af; margin-bottom: 0.5rem; line-height: 1.7; }

.prose-wrap strong { color: #e5e7eb; }

.prose-wrap a { color: var(--orange); text-decoration: none; }

.prose-wrap a:hover { text-decoration: underline; }

.info-strip {
      background: rgba(249,115,22,0.07);
      border-left: 3px solid var(--orange);
      border-radius: 0 10px 10px 0;
      padding: 1rem 1.2rem; margin: 1.5rem 0;
    }

.info-strip p { margin: 0; font-size: 0.88rem; color: #d1d5db; }

.tip-strip {
      background: rgba(34,197,94,0.06);
      border-left: 3px solid var(--green);
      border-radius: 0 10px 10px 0;
      padding: 1rem 1.2rem; margin: 1.5rem 0;
    }

.tip-strip p { margin: 0; font-size: 0.88rem; color: #d1d5db; }

/* COMPARE TABLE */
    .compare-table { width: 100%; border-collapse: collapse; }

.compare-table th {
      background: rgba(249,115,22,0.1); color: var(--orange);
      font-size: 0.82rem; font-weight: 800; padding: 0.75rem 1rem;
      text-align: left; border-bottom: 1px solid rgba(249,115,22,0.15);
    }

.compare-table td {
      padding: 0.75rem 1rem; font-size: 0.84rem; color: #9ca3af;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:hover td { background: rgba(255,255,255,0.02); color: #d1d5db; }

.compare-table td.yes { color: #22c55e; font-weight: 700; }

.compare-table td.game-name { color: #fff; font-weight: 700; }

/* CTA */
    .cta-strip {
      background: linear-gradient(135deg, #1a1000 0%, #2d1200 50%, #1a0a00 100%);
      border-top: 1px solid rgba(249,115,22,0.2);
      border-bottom: 1px solid rgba(249,115,22,0.2);
      padding: 4.5rem 0; position: relative; overflow: hidden;
    }

.cta-strip::before {
      content: ''; position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(249,115,22,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

.cta-inner { text-align: center; position: relative; z-index: 1; }

.cta-inner h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: #fff; margin-bottom: 0.8rem; }

.cta-inner h3 span {
      background: linear-gradient(90deg, var(--orange), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

.cta-inner p { color: #9ca3af; font-size: 0.95rem; max-width: 520px; margin: 0 auto 2rem; }

.cta-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; margin-top: 1.8rem; }

.cta-trust span { color: #9ca3af; font-size: 0.8rem; display: flex; align-items: center; gap: 0.35rem; }

.cta-trust span i { color: var(--green); }

/* RESPONSIVE */
    @media (max-width: 767px) {
.page-hero { padding: 3rem 0 2.5rem; }

.hero-visual { height: 220px; }

.float-card { padding: 0.6rem 0.8rem; }

.float-card .fc-icon { font-size: 1.4rem; }

.float-card .fc-name { font-size: 0.6rem; }

.section-pad { padding: 3rem 0; }

.promo-banner { padding: 1.5rem; }
}
