
    /* ---------- Global ---------- */
    body {
      margin: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: radial-gradient(circle at 20% 30%, #001233, #000814);
      font-family: 'Poppins', sans-serif;
      color: #fff;
      overflow: hidden;
      position: relative;
    }

    /* ---------- Animated Gradient Background ---------- */
    .animated-bg {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(45deg, #00b4d8, #ff4d6d, #4361ee, #48cae4);
      background-size: 300% 300%;
      animation: bgShift 12s ease-in-out infinite;
      opacity: 0.15;
      z-index: 0;
    }

    @keyframes bgShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* ---------- Title ---------- */
    .title {
      z-index: 2;
      text-align: center;
      margin-bottom: 50px;
    }

    .title h3 {
      font-weight: 700;
      font-size: 2.0rem;
      letter-spacing: 1px;
      -webkit-background-clip: text;
	  color: #ee8432 !important;
    }

    .title p {
      color: #ccc;
      letter-spacing: 0.5px;
      margin-top: 8px;
      font-size: 1rem;
    }

    /* ---------- Circle Card Wrapper ---------- */
    .card-wrapper {
      display: flex;
      gap: 60px;
      justify-content: center;
      flex-wrap: wrap;
      z-index: 2;
    }

    /* ---------- Circle Cards ---------- */
    .circle-card {
      position: relative;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(14px);
      border: 2px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
      transition: all 0.5s ease;
      overflow: hidden;
    }

    .circle-card:hover {
      transform: translateY(-10px) scale(1.05);
    }

    .circle-card i {
      font-size: 3.8rem;
      margin-bottom: 12px;
      z-index: 2;
    }

    .circle-card h3 {
      font-weight: 600;
      font-size: 1.3rem;
      z-index: 2;
    }

    .circle-card p {
      font-size: 0.9rem;
      color: #ccc;
      margin-bottom: 10px;
      z-index: 2;
    }

    .btn-login {
      background: #fff;
      color: #000;
      border-radius: 25px;
      padding: 6px 20px;
      font-weight: 600;
      font-size: 0.9rem;
      z-index: 2;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .btn-login:hover {
      background: #000;
      color: #fff;
    }

    /* ---------- Glowing Rings ---------- */
    .ring {
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, var(--color1), var(--color2), var(--color1));
      animation: spin 4s linear infinite;
      filter: blur(10px);
      opacity: 0.8;
      z-index: 0;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .circle-card::after {
      content: "";
      position: absolute;
      inset: 3px;
      border-radius: 50%;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(10px);
      z-index: 1;
    }

    /* ---------- Color Themes ---------- */
    .admin-card {
      --color1: #ff4d6d;
      --color2: #ff99ac;
    }

    .user-card {
      --color1: #00b4d8;
      --color2: #48cae4;
    }

    /* ---------- Hover Glow ---------- */
    .admin-card:hover {
      box-shadow: 0 0 40px rgba(255, 77, 109, 0.6);
    }

    .user-card:hover {
      box-shadow: 0 0 40px rgba(0, 180, 216, 0.6);
    }

    @media (max-width: 768px) {
      .circle-card {
        width: 210px;
        height: 210px;
      }
      .title h1 {
        font-size: 1.9rem;
      }
    }
  