
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: #EEF1F7;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* ── NAVBAR ── */
    .navbar {
      width: 100%;
      background: #1B2D4F;
      padding: 22px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }
    .navbar::before {
      content: '';
      position: absolute;
      right: 18%; top: -60px;
      width: 260px; height: 260px;
      border-radius: 50%;
      background: #E05030;
      opacity: 0.11;
      pointer-events: none;
    }
    .navbar::after {
      content: '';
      position: absolute;
      right: 28%; top: 10px;
      width: 110px; height: 110px;
      border-radius: 50%;
      background: #E05030;
      opacity: 0.08;
      pointer-events: none;
    }

    .nav-left { position: relative; z-index: 1; }
    .nav-badge {
      display: inline-block;
      background: #E05030;
      color: #fff;
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 4px;
      margin-bottom: 8px;
    }
    .nav-title {
      font-family: 'Sora', sans-serif;
      font-size: 26px;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 5px;
    }

    .nav-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.08);
      border: 0.5px solid rgba(255,255,255,0.18);
      border-radius: 20px;
      padding: 8px 16px;
      position: relative;
      z-index: 1;
    }
    .nav-pill .live {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #4CAF50;
      flex-shrink: 0;
    }
    .nav-pill span {
      font-size: 11.5px;
      color: rgba(255,255,255,0.6);
      white-space: nowrap;
    }

    /* ── PAGE BODY ── */
    .page-body {
      flex: 1;
      padding: 40px 48px 56px;
    }

    /* ── GRID ── */
    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    /* ── CARD ── */
    .card {
      background: #fff;
      border-radius: 16px;
      border: 1.5px solid #E2E8F0;
      padding: 24px 22px 22px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      text-decoration: none;
      transition: border-color 0.18s, transform 0.15s, box-shadow 0.18s;
      position: relative;
    }
    .card:hover {
      border-color: #1B2D4F;
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(27,45,79,0.10);
    }

    .card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .icon-box {
      width: 48px; height: 48px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .icon-box svg { width: 22px; height: 22px; }

    .card-name {
      font-family: 'Sora', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #1B2D4F;
      line-height: 1.3;
    }
    .card-desc {
      font-size: 13.5px;
      color: #64748B;
      line-height: 1.6;
      flex: 1;
    }
    .card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 4px;
      gap: 8px;
    }
    .tag {
      display: inline-block;
      font-size: 11.5px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      white-space: nowrap;
    }
    .card-arrow {
      font-size: 18px;
      color: #C0CCDC;
      transition: color 0.18s, transform 0.18s;
    }
    .card:hover .card-arrow {
      color: #E05030;
      transform: translateX(3px);
    }

    /* Footer */
    .page-footer {
      margin-top: 36px;
      display: flex;
      align-items: center;
      gap: 9px;
    }
    .f-dot { width: 7px; height: 7px; border-radius: 50%; background: #E05030; flex-shrink: 0; }
    .page-footer span { font-size: 13px; color: #94A3B8; }

    /* Color schemes */
    .ia { background: #FCCFBF; } .ia svg { fill: #B83018; } .ta { background: #FCCFBF; color: #8C2210; }
    .ib { background: #FDE7B0; } .ib svg { fill: #A86000; } .tb { background: #FDE7B0; color: #7A4600; }
    .ic { background: #B8E8D4; } .ic svg { fill: #0A5C45; } .tc { background: #B8E8D4; color: #073D2E; }
    .id { background: #CEC8F0; } .id svg { fill: #2E277A; } .td { background: #CEC8F0; color: #1E1A58; }
    .ie { background: #B8D4F5; } .ie svg { fill: #083472; } .te { background: #B8D4F5; color: #052558; }

    @media (max-width: 1180px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px)  { .grid-4 { grid-template-columns: 1fr; } .page-body { padding: 24px 20px 40px; } .navbar { padding: 20px 24px; } }
