*, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .bg-spinner {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 600px;
      height: auto;
      pointer-events: none;
      z-index: 0;
      opacity: 0.06;
      filter: brightness(0) invert(1);
      animation: spin 20s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    body {
      font-family: 'Inter', 'Noto Sans Bengali', -apple-system, BlinkMacSystemFont, sans-serif;
      min-height: 100vh;
      background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
      color: #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1.5rem;
    }

    .container {
      position: relative;
      z-index: 1;
      max-width: 900px;
      width: 100%;
      text-align: center;
    }

    .logo {
      font-size: 2.25rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 0.75rem;
    }

    .logo span {
      color: #f59e0b;
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(34, 197, 94, 0.15);
      border: 1px solid rgba(34, 197, 94, 0.3);
      border-radius: 999px;
      padding: 0.4rem 1rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: #86efac;
      margin-bottom: 1.5rem;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #22c55e;
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    h1 {
      font-size: 2.75rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 0.75rem;
      color: #f1f5f9;
    }

    .subtitle {
      font-size: 1.1rem;
      color: #94a3b8;
      line-height: 1.6;
      max-width: 540px;
      margin: 0 auto 2.5rem;
    }

    .divider {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #f59e0b, #d946ef);
      border-radius: 2px;
      margin: 0 auto 2.5rem;
    }

    .partners-label {
      font-size: 1.05rem;
      font-weight: 700;
      color: #f1f5f9;
      letter-spacing: 0.01em;
      margin-bottom: 1.5rem;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-bottom: 3rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .org-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.65rem;
      text-decoration: none;
      color: inherit;
      padding: 1.25rem 0.75rem;
      border-radius: 1rem;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(8px);
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    .org-card:hover {
      transform: translateY(-6px) scale(1.03);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 12px 40px rgba(245, 158, 11, 0.12);
    }

    .org-avatar {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .org-card:hover .org-avatar {
      transform: scale(1.08);
    }

    .org-name {
      font-size: 0.85rem;
      font-weight: 600;
      color: #cbd5e1;
      text-align: center;
      line-height: 1.3;
    }

    .footer {
      font-size: 0.8rem;
      color: #475569;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 1.5rem;
    }

    /* Avatar colors */
    .avatar-1 { background: linear-gradient(135deg, #4285f4, #34a853); }
    .avatar-2 { background: linear-gradient(135deg, #333, #6e5494); }
    .avatar-3 { background: linear-gradient(135deg, #635bff, #00d4ff); }
    .avatar-4 { background: linear-gradient(135deg, #f24e1e, #ff7262); }
    .avatar-5 { background: linear-gradient(135deg, #000, #888); }

    @media (max-width: 768px) {
      body { padding: 1.5rem 1rem; }
      .logo { font-size: 1.75rem; }
      h1 { font-size: 2rem; }
      .subtitle { font-size: 1rem; }
      .grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
      .org-avatar { width: 52px; height: 52px; font-size: 1.25rem; }
      .org-name { font-size: 0.78rem; }
      .bg-spinner {
        width: 400px;
        }
    }

    @media (max-width: 480px) {
      .grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
      .org-card { padding: 1rem 0.5rem; }
      .org-avatar { width: 48px; height: 48px; font-size: 1.1rem; }
      h1 { font-size: 1.65rem; }
      .partners-label { font-size: 0.8rem; }
    }

    @media (max-width: 360px) {
      .grid { grid-template-columns: 1fr; }
    }