:root {
      --orange: #f97316;
      --gold: #facc15;
      --dark1: #111827;
      --dark2: #1a2233;
      --dark3: #1f2937;
      --dark4: #374151;
      --muted: #9ca3af;
      --white: #ffffff;
      --green: #22c55e;
    }

*, *::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;
    }

/* PROGRESS BAR */
    #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%, #1a2233 55%, #111827 100%);
      padding: 5rem 0 4rem;
      position: relative;
      overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 460px; height: 460px;
      background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

.page-hero::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 340px; height: 340px;
      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.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      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: 500px; }

.hero-badges-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.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); }

/* LOGIN CARD */
    .login-card {
      background: var(--dark3);
      border: 1px solid rgba(249,115,22,0.18);
      border-radius: 22px;
      padding: 2.4rem 2.2rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 50px rgba(0,0,0,0.4);
    }

.login-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
    }

.login-card-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
      text-align: center;
      margin-bottom: 0.3rem;
    }

.login-card-sub { font-size: 0.83rem; color: var(--muted); text-align: center; margin-bottom: 1.8rem; }

/* FORM */
    .form-label { font-size: 0.83rem; font-weight: 700; color: #d1d5db; margin-bottom: 0.4rem; }

.form-control, .form-select {
      background: var(--dark2);
      border: 1px solid rgba(255,255,255,0.1);
      color: #e5e7eb;
      border-radius: 11px;
      padding: 0.7rem 1rem;
      font-family: 'Hind Siliguri', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

.form-control:focus, .form-select:focus {
      background: var(--dark2);
      border-color: var(--orange);
      color: #e5e7eb;
      box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
      outline: none;
    }

.form-control::placeholder { color: #6b7280; }

.input-group-text {
      background: var(--dark2);
      border: 1px solid rgba(255,255,255,0.1);
      border-right: none;
      color: var(--muted);
      border-radius: 11px 0 0 11px;
    }

.input-group .form-control { border-left: none; border-radius: 0 11px 11px 0; }

.input-group:focus-within .input-group-text { border-color: var(--orange); }

.input-group .form-control:focus { box-shadow: none; border-color: var(--orange); }

.pass-wrap { position: relative; }

.pass-wrap .form-control { padding-right: 2.8rem; }

.pass-toggle {
      position: absolute; right: 12px; top: 50%;
      transform: translateY(-50%);
      background: none; border: none;
      color: var(--muted); cursor: pointer;
      font-size: 0.85rem; padding: 0; z-index: 5;
    }

.btn-login {
      background: linear-gradient(135deg, var(--orange), #ea580c);
      border: none; color: #fff;
      font-weight: 800; font-size: 1rem;
      padding: 0.9rem;
      border-radius: 12px; width: 100%;
      cursor: pointer; transition: all 0.25s;
      font-family: 'Hind Siliguri', sans-serif;
      box-shadow: 0 4px 20px rgba(249,115,22,0.35);
      display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    }

.btn-login:hover {
      background: linear-gradient(135deg, #fb923c, var(--orange));
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(249,115,22,0.45);
    }

.forgot-link {
      text-align: right; font-size: 0.8rem; margin-bottom: 0.2rem;
    }

.forgot-link a { color: var(--orange); text-decoration: none; font-weight: 600; }

.forgot-link a:hover { text-decoration: underline; }

.divider-or {
      display: flex; align-items: center; gap: 0.75rem;
      margin: 1.3rem 0; color: var(--muted); font-size: 0.78rem;
    }

.divider-or::before, .divider-or::after {
      content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07);
    }

.register-link-row {
      text-align: center; font-size: 0.84rem; color: var(--muted); margin-top: 1rem;
    }

.register-link-row a { color: var(--orange); text-decoration: none; font-weight: 700; }

.register-link-row a:hover { text-decoration: underline; }

.form-check-input:checked { background-color: var(--orange); border-color: var(--orange); }

.form-check-label { font-size: 0.8rem; color: var(--muted); }

/* PROMO STRIP */
    .promo-strip {
      background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(250,204,21,0.07));
      border: 1px solid rgba(250,204,21,0.22);
      border-radius: 14px;
      padding: 1rem 1.2rem;
      margin-bottom: 1.6rem;
      display: flex; align-items: center; gap: 0.9rem;
    }

.promo-strip .promo-icon { font-size: 2rem; flex-shrink: 0; }

.promo-strip .promo-text strong { color: var(--gold); font-size: 0.88rem; display: block; font-weight: 800; }

.promo-strip .promo-text span { font-size: 0.78rem; color: #d1d5db; }

/* SECURITY BADGES */
    .sec-badges {
      display: flex; justify-content: center; flex-wrap: wrap;
      gap: 0.6rem; margin-top: 1.5rem;
    }

.sec-badge {
      display: flex; align-items: center; gap: 0.4rem;
      font-size: 0.75rem; color: #6b7280; font-weight: 600;
    }

.sec-badge i { color: var(--green); font-size: 0.7rem; }

/* SECTIONS */
    .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); }

/* FEAT 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 { font-size: 2.4rem; margin-bottom: 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.7; }

/* STEPS */
    .step-card {
      background: var(--dark3);
      border: 1px solid rgba(249,115,22,0.1);
      border-radius: 16px;
      padding: 2rem 1.5rem; height: 100%;
      transition: border-color 0.25s, transform 0.25s;
    }

.step-card:hover { border-color: rgba(249,115,22,0.35); transform: translateY(-4px); }

.step-num {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; font-weight: 900; color: #fff;
      margin-bottom: 1rem;
      box-shadow: 0 4px 16px rgba(249,115,22,0.3);
    }

.step-card h5 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }

.step-card p { font-size: 0.87rem; color: #9ca3af; margin: 0; line-height: 1.65; }

/* 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; }

/* GAME QUICK LINKS */
    .game-link-grid { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1rem; }

.game-chip {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.08);
      color: #d1d5db; font-size: 0.82rem; font-weight: 600;
      padding: 0.45rem 1rem; border-radius: 50px;
      text-decoration: none; transition: all 0.2s;
      display: flex; align-items: center; gap: 0.4rem;
    }

.game-chip:hover { border-color: var(--orange); color: var(--orange); background: rgba(249,115,22,0.06); }

.game-chip i { color: var(--gold); font-size: 0.75rem; }

/* FAQ */
    .accordion-item {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px !important;
      margin-bottom: 0.6rem; overflow: hidden;
    }

.accordion-button {
      background: var(--dark3); color: #e5e7eb;
      font-weight: 700; font-family: 'Hind Siliguri', sans-serif;
      font-size: 0.92rem; border-radius: 12px !important;
    }

.accordion-button:not(.collapsed) {
      background: rgba(249,115,22,0.08);
      color: var(--orange); box-shadow: none;
    }

.accordion-button::after { filter: invert(60%) sepia(80%) saturate(500%) hue-rotate(10deg); }

.accordion-button:focus { box-shadow: none; }

.accordion-body {
    overflow-x: clip;
    width: 100%; background: var(--dark3); color: #9ca3af; font-size: 0.88rem; line-height: 1.75; }

/* 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; }

.btn-fire {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      color: #fff; font-weight: 800; font-size: 0.95rem;
      padding: 0.85rem 2rem; border-radius: 12px; text-decoration: none;
      box-shadow: 0 4px 20px rgba(249,115,22,0.35); transition: all 0.25s;
      font-family: 'Hind Siliguri', sans-serif;
    }

.btn-fire:hover {
      background: linear-gradient(135deg, #fb923c, var(--orange));
      transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.45); color: #fff;
    }

.btn-outline-o {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: transparent; color: var(--orange); font-weight: 800; font-size: 0.95rem;
      padding: 0.85rem 2rem; border-radius: 12px; text-decoration: none;
      border: 2px solid rgba(249,115,22,0.4); transition: all 0.25s;
      margin-left: 0.75rem; font-family: 'Hind Siliguri', sans-serif;
    }

.btn-outline-o:hover {
      background: rgba(249,115,22,0.08); border-color: var(--orange);
      color: var(--orange); transform: translateY(-2px);
    }

.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: 768px) {
.page-hero { padding: 3rem 0 2.5rem; }

.login-card { padding: 1.6rem 1.1rem; }

.btn-outline-o { margin-left: 0; margin-top: 0.5rem; }
}
