:root{
      /* Cleaner dark base */
      --bg:#05040b;
      --bg2:#090615;

      /* Consistent surfaces */
      --surface: rgba(16, 10, 24, .72);   /* cards */
      --surface2: rgba(0, 0, 0, .28);     /* inner boxes */
      --surface3: rgba(255,255,255,.03);  /* subtle highlight */

      --text: rgba(255,255,255,.92);
      --muted: rgba(255,255,255,.72);
      --muted2: rgba(255,255,255,.52);

      /* Balanced neon (less harsh than before) */
      --accent:#c026d3;     /* fuchsia-600 */
      --accent2:#8b5cf6;    /* violet-500 */

      --line: rgba(255,255,255,.10);
      --shadow: 0 18px 70px rgba(0,0,0,.55);
      --glow: 0 0 0 1px rgba(255,255,255,.08),
              0 0 24px rgba(192,38,211,.22),
              0 0 36px rgba(139,92,246,.16);

      /* semantic colors */
      --good:#34d399;
      --info:#60a5fa;
      --pink:#f472b6;
      --amber1:#fbbf24;
      --amber2:#fb923c;
      --danger:#f87171;

      --radius: 18px;
      --radius2: 26px;
      --max: 1180px;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; width:100%; min-width:100%; overflow-x:clip; }

    html{
      background:
        radial-gradient(900px 420px at 18% 9%, rgba(192,38,211,.16), transparent 55%),
        radial-gradient(700px 360px at 85% 18%, rgba(139,92,246,.14), transparent 58%),
        radial-gradient(900px 520px at 80% 78%, rgba(192,38,211,.10), transparent 60%),
        linear-gradient(180deg, var(--bg2), var(--bg) 35%, #030108 100%);
    }

    body{
      margin:0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--text);
      background: transparent;
      overflow-x:clip;
      width:100%;
      min-width:100vw;
      font-size: 16.5px;
    }

    main, header, footer, section, .wrap{ max-width:100vw; overflow-x:clip; }
    .wrap{ width:min(var(--max), calc(100% - 40px)); margin-inline:auto; }

    /* Orbs */
    .orb{ position:fixed; filter: blur(90px); opacity:.22; z-index:0; pointer-events:none; border-radius:50%; }
    .orb.one{ width:420px; height:420px; left:-140px; top:70px; background:rgba(192,38,211,.60); }
    .orb.two{ width:420px; height:420px; right:-180px; top:240px; background:rgba(139,92,246,.55); }
    .orb.three{ width:520px; height:520px; left:50%; transform:translateX(-50%); bottom:-270px; background:rgba(192,38,211,.30); }

    /* Navbar */
    :root{ --header-h: 72px; }  /* JS isko auto set karega */

header{
  position: fixed; top:0; left:0; right:0;
  width:100%;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(6,1,10,.88), rgba(6,1,10,.58));
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* header ke niche content aaye */
body{ padding-top: var(--header-h); }

/* anchor links/header overlap fix */
html{ scroll-padding-top: var(--header-h); }

    .navWrap{ display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:10px; width:100%; }
    .navbar-collapse{ flex-basis:100%; }
    .brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
    .logo{
      width:30px; height:30px; border-radius:11px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: 0 14px 40px rgba(192,38,211,.16);
      position:relative; flex:0 0 auto;
    }
    .logo:after{ content:""; position:absolute; inset:7px; border-radius:8px; background: rgba(0,0,0,.22); border:1px solid rgba(255,255,255,.18); }
    .brandTitle{ color: rgba(255,255,255,.92); font-weight:900; letter-spacing:.10em; font-size:13px; margin:0; line-height:1.1; }
    .brandSub{ color: rgba(255,255,255,.68); margin:0; font-size:12px; line-height:1.1; }

    .nav-link{
      color: rgba(255,255,255,.72) !important;
      font-weight:700;
      padding: .85rem .9rem !important;
      border-radius: 14px;
      transition: .18s ease;
    }
    .nav-link:hover{ color: rgba(255,255,255,.95) !important; background: rgba(255,255,255,.04); }
    .nav-link.active{ color: rgba(255,255,255,.95) !important; position:relative; }
    .nav-link.active:after{
      content:"";
      position:absolute;
      left: 18%;
      right: 18%;
      bottom: 7px;
      height: 2px;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      box-shadow: 0 0 18px rgba(192,38,211,.25);
    }
    .navbar-toggler{
      border: 1px solid rgba(255,255,255,.18) !important;
      box-shadow: none !important;
      padding: .55rem .7rem;
      border-radius: 14px;
      background: rgba(255,255,255,.03);
    }
    .navbar-toggler:focus{ box-shadow: var(--glow) !important; border-color: rgba(192,38,211,.35) !important; }
    .navbar-toggler-icon{ filter: invert(1) opacity(.9); }

    /* Buttons */
    .xbtn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      border-radius: 16px;
      padding: 12px 18px;
      font-weight: 800;
      font-size: 14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      color: var(--text);
      text-decoration:none;
      transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
      user-select:none;
      white-space:nowrap;
    }
    .xbtn:hover{ transform: translateY(-1px); border-color: rgba(192,38,211,.32); box-shadow: var(--glow); }
    .xbtn.primary{
      border-color: rgba(192,38,211,.45);
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: 0 16px 50px rgba(192,38,211,.14);
    }
    .xbtn.orange{
      border-color: rgba(251,191,36,.40);
      background: linear-gradient(90deg, var(--amber1), var(--amber2));
      box-shadow: 0 18px 60px rgba(251,191,36,.12);
      color: rgba(255,255,255,.95);
    }
    .xbtn.ghost{
      background: rgba(255,255,255,.02);
      border-color: rgba(255,255,255,.10);
      color: rgba(255,255,255,.85);
    }

    /* Main */
    main{ position:relative; z-index:1; padding: 32px 0 72px; }
    main::before{
      content:"";
      position:absolute; inset:0;
      pointer-events:none;
      background:
        radial-gradient(900px 520px at 12% 52%, rgba(192,38,211,.08), transparent 62%),
        radial-gradient(900px 520px at 88% 46%, rgba(139,92,246,.07), transparent 62%),
        linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.20));
      z-index:0;
    }
    main > .wrap{ position:relative; z-index:1; }

    .pageTitle{
      font-size: clamp(34px, 4vw, 52px);
      font-weight: 900;
      letter-spacing: -.02em;
      margin: 6px 0 6px;
      color: rgba(255,255,255,.92);
      text-shadow: 0 0 22px rgba(139,92,246,.16);
    }
    .pageTitle span{
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .pageSub{ margin:0; color: var(--muted); font-size: 15.5px; line-height: 1.75; }

    /* Cards (consistent) */
    .cardX,
    .lockedCard,
    .splitCard,
    .ruleCard,
    .tableShell{
      border-radius: var(--radius2);
      border: 1px solid var(--line);
      background: var(--surface);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
      backdrop-filter: blur(10px);
    }

    .cardX::before{
      content:"";
      position:absolute; inset:0;
      pointer-events:none;
      background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.22));
    }
    .cardX > *{ position:relative; z-index:1; }

    .cardHead{
      padding: 18px 18px 12px;
      border-bottom: 1px solid rgba(255,255,255,.06);
      display:flex; justify-content:space-between; align-items:flex-end; gap:14px;
    }
    .cardHead h3{ margin:0; font-weight: 900; font-size: 15.5px; }
    .cardHead p{ margin:4px 0 0; color: var(--muted2); font-weight: 700; font-size: 13px; }
    .topRightMeta{
      text-align:right;
      color: rgba(255,255,255,.60);
      font-weight: 800;
      font-size: 12px;
    }
    .topRightMeta strong{ display:block; color: rgba(255,255,255,.92); font-weight: 900; font-size: 15px; margin-top: 2px; }

    /* Stat cards */
    .statGrid{ padding: 14px 18px 14px; }
    .stat{
      border-radius: 16px;
      background: var(--surface2);
      border: 1px solid rgba(255,255,255,.10);
      padding: 12px 14px;
      height:100%;
      position:relative;
      overflow:hidden;
    }
    .stat small{ color: rgba(255,255,255,.55); font-weight: 900; font-size: 11px; letter-spacing:.08em; text-transform:uppercase; }
    .stat .val{ margin-top:6px; font-weight: 900; font-size: 20px; line-height: 1.1; }
    .stat .unit{ color: rgba(255,255,255,.55); font-weight: 900; font-size: 11px; margin-left: 4px; }
    .stat::after{
      content:"";
      position:absolute;
      right:12px; bottom:12px;
      width:46px; height:46px;
      border-radius:16px;
      opacity:.30;
      border:1px solid rgba(255,255,255,.14);
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 60%);
      pointer-events:none;
    }
    .stat--green{ border-color: rgba(52,211,153,.25) !important; }
    .stat--green::after{ border-color: rgba(52,211,153,.32); background: radial-gradient(circle at 30% 30%, rgba(52,211,153,.26), transparent 60%); }

    .stat--teal{ border-color: rgba(96,165,250,.22) !important; }
    .stat--teal::after{ border-color: rgba(96,165,250,.30); background: radial-gradient(circle at 30% 30%, rgba(96,165,250,.24), transparent 60%); }

    .stat--purple{ border-color: rgba(139,92,246,.24) !important; }
    .stat--purple::after{ border-color: rgba(139,92,246,.32); background: radial-gradient(circle at 30% 30%, rgba(139,92,246,.26), transparent 60%); }

    .stat--pink{ border-color: rgba(244,114,182,.22) !important; }
    .stat--pink::after{ border-color: rgba(244,114,182,.30); background: radial-gradient(circle at 30% 30%, rgba(244,114,182,.24), transparent 60%); }

    .stat--amber{ border-color: rgba(251,191,36,.22) !important; }
    .stat--amber::after{ border-color: rgba(251,191,36,.30); background: radial-gradient(circle at 30% 30%, rgba(251,191,36,.22), transparent 60%); }

    /* Network rewards list */
    .listLine{
      display:flex; justify-content:space-between; align-items:center;
      padding: 12px 18px;
      border-top: 1px solid rgba(255,255,255,.06);
      color: rgba(255,255,255,.78);
      font-weight: 800;
      font-size: 13px;
    }
    .listLine .v{ color: rgba(255,255,255,.92); font-weight: 900; }
    .listLine.total{
      background: rgba(192,38,211,.06);
    }
    .listLine.total .v{
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      background-clip:text;
      color: transparent;
      font-weight: 900;
    }

    .actionRow{
      padding: 14px 18px 18px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .actionRow .xbtn{ width:100%; justify-content:center; }
    .actionRow .xbtn.ghost{ border-radius: 14px; padding: 14px 18px; }
    .actionRow .xbtn.ghost:hover{ box-shadow: var(--glow); }

    /* Locked card tweaks */
    .lockedCard{
      margin-top: 14px;
      padding: 22px 18px;
      text-align:center;
    }
    .lockedCard::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 280px at 50% 0%, rgba(192,38,211,.10), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.22));
      pointer-events:none;
    }
    .lockedCard > *{ position:relative; z-index:1; }

    .lockIcon{
      width: 54px; height: 54px;
      border-radius: 18px;
      margin: 0 auto 10px;
      display:grid; place-items:center;
      border: 1px solid rgba(248,113,113,.30);
      background: rgba(248,113,113,.10);
      box-shadow: 0 0 26px rgba(248,113,113,.10);
    }
    .lockedCard h4{ margin: 6px 0 4px; font-weight: 900; font-size: 15px; color: rgba(255,255,255,.92); }
    .lockedCard p{ margin: 0 auto 14px; max-width: 640px; color: rgba(255,255,255,.62); font-weight: 700; font-size: 13px; line-height: 1.7; }

    .miniBox{
      max-width: 460px;
      margin: 0 auto 14px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.10);
      background: var(--surface2);
      padding: 14px;
      text-align:left;
    }
    .miniRow{
      display:flex; justify-content:space-between; gap:10px; padding: 8px 0;
      border-top: 1px solid rgba(255,255,255,.06);
      font-weight: 800; font-size: 12.5px;
      color: rgba(255,255,255,.70);
    }
    .miniRow:first-child{ border-top:none; padding-top: 0; }
    .miniRow .v{ color: rgba(255,255,255,.92); font-weight: 900; }
    .miniRow .v.red{ color: rgba(248,113,113,.95); }
    .miniRow .v.purple{
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      background-clip:text;
      color: transparent;
    }

    .hintLine{
      margin-top: 10px;
      color: rgba(255,255,255,.55);
      font-weight: 700;
      font-size: 12px;
    }

    /* Split cards */
    .splitCard{ padding: 16px 18px; height: 100%; }
    .splitCard .k{ color: rgba(255,255,255,.55); font-weight: 900; font-size: 11px; letter-spacing:.08em; text-transform: uppercase; }
    .splitCard .v{ color: rgba(255,255,255,.92); font-weight: 900; font-size: 18px; margin-top: 4px; }
    .splitCard .sub{ color: rgba(255,255,255,.62); font-weight: 700; font-size: 13px; margin-top: 6px; }
    .dotOk{ color: rgba(52,211,153,.95); font-weight: 900; }

    /* Downlines */
    .toolRow{
      display:flex; flex-wrap:wrap; gap:10px;
      padding: 14px 18px;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .inputX{
      flex: 1 1 260px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.10);
      background: var(--surface2);
      color: rgba(255,255,255,.88);
      padding: 12px 14px;
      outline:none;
      font-weight: 700;
      font-size: 14px;
    }
    .inputX::placeholder{ color: rgba(255,255,255,.45); }
    .selectX{
      flex: 0 0 200px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.10);
      background: var(--surface2);
      color: rgba(255,255,255,.88);
      padding: 12px 14px;
      outline:none;
      font-weight: 800;
      font-size: 14px;
    }

    /* Sections heading */
    .secHead{ text-align:center; margin: 32px 0 16px; }
    .secHead h2{
      margin:0;
      font-size: clamp(22px, 2.8vw, 34px);
      font-weight: 900;
      letter-spacing: -.02em;
      color: rgba(255,255,255,.92);
    }
    .secHead h2 span{
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      background-clip:text;
      color: transparent;
    }
    .secHead p{ margin:8px auto 0; color: var(--muted); max-width: 820px; font-size: 14.8px; line-height:1.8; }

    /* Rules cards */
    .ruleCard{ height: 100%; }
    .ruleTop{
      padding: 14px 16px;
      display:flex; gap:12px; align-items:flex-start;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .ruleIcon{
      width: 38px; height: 38px;
      border-radius: 14px;
      display:grid; place-items:center;
      flex:0 0 auto;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.03);
    }
    .ruleIcon.blue{ border-color: rgba(96,165,250,.26); background: rgba(96,165,250,.10); }
    .ruleIcon.pink{ border-color: rgba(244,114,182,.24); background: rgba(244,114,182,.10); }
    .ruleTop h4{ margin:0; font-weight: 900; font-size: 14px; }
    .ruleTop p{ margin:4px 0 0; color: rgba(255,255,255,.62); font-weight: 700; font-size: 12.8px; line-height: 1.6; }
    .ruleBody{ padding: 12px 16px 16px; }
    .ruleBody ul{ margin:0; padding-left: 18px; color: rgba(255,255,255,.70); font-weight: 700; font-size: 12.8px; line-height: 1.85; }

    /* Trigger pills */
    .pillRow{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      padding: 14px 16px 16px;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .pill{
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.10);
      background: var(--surface2);
      padding: 12px 12px;
      text-align:center;
    }
    .pill .t{ font-weight: 900; font-size: 12.5px; color: rgba(255,255,255,.88); }
    .pill .s{ margin-top: 4px; font-weight: 800; font-size: 11px; color: rgba(255,255,255,.55); }

    /* Table */
    .tableShell{ overflow:hidden; }
    .table thead th{
      color: rgba(255,255,255,.92);
      font-weight: 900;
      font-size: 12px;
      letter-spacing:.06em;
      text-transform: uppercase;
      background: rgba(192,38,211,.10);
      border-bottom: 1px solid rgba(255,255,255,.06);
      padding: 14px 16px;
      white-space:nowrap;
    }
    .table tbody td{
      color: rgba(255,255,255,.84);
      font-weight: 800;
      font-size: 13.5px;
      padding: 14px 16px;
      border-top: 1px solid rgba(255,255,255,.06);
      white-space:nowrap;
    }
    .rowTotal{
      background: rgba(192,38,211,.06);
    }
    .rowTotal td:last-child{
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      background-clip:text;
      color: transparent;
      font-weight: 900;
    }

    .emptyState{
      padding: 34px 16px;
      text-align:center;
      color: rgba(255,255,255,.60);
      font-weight: 700;
    }
    .emptyState svg{ opacity:.85; margin-bottom: 10px; }

    /* Level unlock list */
    .unlockItem{
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.10);
      background: var(--surface2);
      padding: 12px 14px;
      display:flex; gap:12px;
      align-items:flex-start;
      margin-top: 10px;
    }
    .unlockItem.green{ border-color: rgba(52,211,153,.18); background: linear-gradient(135deg, rgba(52,211,153,.08), var(--surface2)); }
    .unlockItem.amber{ border-color: rgba(251,191,36,.18); background: linear-gradient(135deg, rgba(251,191,36,.08), var(--surface2)); }
    .unlockItem.orange{ border-color: rgba(251,146,60,.18); background: linear-gradient(135deg, rgba(251,146,60,.08), var(--surface2)); }
    .unlockDot{
      width: 26px; height: 26px;
      border-radius: 10px;
      display:grid; place-items:center;
      flex:0 0 auto;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
      margin-top: 1px;
    }
    .unlockItem .h{ font-weight: 900; font-size: 13px; color: rgba(255,255,255,.88); }
    .unlockItem .d{ margin-top: 2px; font-weight: 700; font-size: 12.5px; color: rgba(255,255,255,.62); line-height: 1.6; }

    /* Onboarding section */
    .infoStrip{
      border-radius: var(--radius2);
      border: 1px solid rgba(52,211,153,.20);
      background: linear-gradient(135deg, rgba(52,211,153,.08), rgba(0,0,0,.22));
      box-shadow: var(--shadow);
      padding: 16px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .infoStrip .ic{
      width: 40px; height: 40px;
      border-radius: 14px;
      display:grid; place-items:center;
      border: 1px solid rgba(52,211,153,.24);
      background: rgba(52,211,153,.10);
      flex:0 0 auto;
    }
    .infoStrip h4{ margin:0; font-weight: 900; font-size: 14px; }
    .infoStrip p{ margin:4px 0 0; color: rgba(255,255,255,.66); font-weight: 700; font-size: 12.8px; line-height: 1.7; }

    .badgeRec{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(52,211,153,.22);
      background: rgba(52,211,153,.10);
      color: rgba(52,211,153,.95);
      font-weight: 900;
      font-size: 11px;
      letter-spacing: .03em;
      text-transform: uppercase;
      margin-left: 8px;
    }

    .mini3{
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.10);
      background: var(--surface2);
      padding: 14px;
      height: 100%;
    }
    .mini3 .top{
      display:flex; gap:10px; align-items:center;
      font-weight: 900; font-size: 13px; color: rgba(255,255,255,.88);
      margin-bottom: 8px;
    }
    .mini3 .mi{
      width: 34px; height: 34px; border-radius: 12px;
      display:grid; place-items:center;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
    }
    .mini3 p{ margin:0; color: rgba(255,255,255,.62); font-weight: 700; font-size: 12.5px; line-height: 1.6; }
    .mini3.green{ border-color: rgba(52,211,153,.18); background: linear-gradient(135deg, rgba(52,211,153,.08), var(--surface2)); }
    .mini3.red{ border-color: rgba(248,113,113,.18); background: linear-gradient(135deg, rgba(248,113,113,.08), var(--surface2)); }
    .mini3.purple{ border-color: rgba(139,92,246,.18); background: linear-gradient(135deg, rgba(139,92,246,.08), var(--surface2)); }

    /* Utility colors (for table values etc.) */
    .c-info{ color: rgba(96,165,250,.95) !important; font-weight:900; }
    .c-good{ color: rgba(52,211,153,.95) !important; font-weight:900; }
    .c-amber{ color: rgba(251,191,36,.95) !important; font-weight:900; }
    .c-orange{ color: rgba(251,146,60,.95) !important; font-weight:900; }

    /* Footer */
    footer{
      position:relative; z-index:1;
      padding: 44px 0 24px;
      border-top: 1px solid rgba(255,255,255,.06);
      background: linear-gradient(180deg, transparent, rgba(0,0,0,.22));
    }
    footer h4{
      margin:0 0 12px;
      font-size: 13px;
      letter-spacing:.10em;
      text-transform:uppercase;
      color: rgba(255,255,255,.78);
      font-weight: 900;
    }
    .footText{ color: var(--muted); font-size: 14px; line-height: 1.7; margin: 12px 0 0; }
    .links a{
      display:block;
      color: var(--muted);
      font-size: 14px;
      padding: 7px 0;
      text-decoration:none;
    }
    .links a:hover{ color: var(--text); }
    .chip{
      border-radius: 14px;
      padding: 10px 14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      color: var(--muted);
      font-size: 14px;
      text-decoration:none;
      display:inline-block;
      margin: 6px 8px 0 0;
    }
    .chip:hover{ color:var(--text); border-color: rgba(192,38,211,.25); box-shadow: var(--glow); }
    .copyright{ margin-top: 18px; text-align:center; color: rgba(255,255,255,.42); font-size: 13px; }

    /* Responsive */
    @media (max-width: 991.98px){
      .navbar-collapse{
        margin-top: 12px;
        padding: 14px 14px 16px;
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,.08);
        background: rgba(0,0,0,.16);
        box-shadow: 0 16px 60px rgba(0,0,0,.45);
        backdrop-filter: blur(10px);
      }
      .navbar-nav{ align-items: stretch !important; }
      .nav-link{ text-align:center; }
      .nav-link.active:after{ left: 30%; right: 30%; }

      .actionRow{ grid-template-columns: 1fr; }
      .pillRow{ grid-template-columns: 1fr; }
    }
    @media (max-width: 575.98px){
      .wrap{ width: calc(100% - 26px); }
      main{ padding-top: 26px; }
      .pageTitle{ font-size: 34px; }
    }
	
	/* ===== FIX: Bootstrap table white background ===== */

/* 1) Table variables ko dark/transparent karo */
.tableShell .table,
.cardX .table,
.table {
  --bs-table-bg: transparent !important;
  --bs-table-striped-bg: rgba(255,255,255,.03) !important;
  --bs-table-active-bg: rgba(255,255,255,.04) !important;
  --bs-table-hover-bg: rgba(255,255,255,.05) !important;
  --bs-table-color: rgba(255,255,255,.86) !important;

  color: var(--bs-table-color) !important;
}

/* 2) Bootstrap cells (td/th) ki white background forcefully remove */
.tableShell .table > :not(caption) > * > *,
.cardX .table > :not(caption) > * > * {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* 3) Hover look */
.tableShell .table tbody tr:hover > *,
.cardX .table tbody tr:hover > * {
  background-color: rgba(255,255,255,.03) !important;
}

/* 4) Row total (purple tint) properly full row me apply ho */
.tableShell .table tbody tr.rowTotal > *,
.cardX .table tbody tr.rowTotal > * {
  background-color: rgba(192,38,211,.08) !important;
}
