    /* Gunakan font sistem agar tidak perlu koneksi internet */
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    }

    .card-body {
      animation: fadeIn 0.8s ease;
    }

    /* Fade-in Animation */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(15px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Garis pemisah */
    .divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, #bbb, transparent);
      margin: 8px 0 18px 0;
    }

    /* Efek glow ringan dan warna oranye tema */
    #top-title {
      color: #ff6600;
      font-weight: 500;
      text-shadow: 0 0 6px rgba(255, 102, 0, 0.7);
      margin-bottom: 4px;
      font-size: 1.75rem;
      text-align: center;
    }

    #subtitle {
      color: #ff6600cc;
      font-weight: 400;
      font-size: 0.9rem;
      margin-top: 0;
      margin-bottom: 15px;
      text-align: center;
      text-shadow: 0 0 3px rgba(255, 102, 0, 0.4);
    }

    #bottom-title {
      font-weight: 700;
      font-size: 20px;
      color: #555;
      margin-top: 8px;
      text-align: center;
      text-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    }

    .logo {
      filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.25));
      display: block;
      margin-left: auto;
      margin-right: auto;
    }