    .n-columns-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
        background: #000; /* Latar belakang container hitam */
        border-radius: 15px;
    }

    .n-columns-2 a {
        text-align: center;
        padding: 18px 25px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 800;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 2px;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 2px solid #bf953f; /* Border emas tipis untuk mempertegas */
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        
        /* Warna Dasar Emas */
        background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
        color: #000;
        box-shadow: 0 0 15px rgba(191, 149, 63, 0.3);
    }

    .n-columns-2 a:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 20px rgba(191, 149, 63, 0.6);
        background: #fcf6ba;
    }

    /* === Animasi Cahaya Bergerak CEPAT === */
    .n-columns-2 a::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%; /* Lebar cahaya dibuat lebih ramping agar terlihat cepat */
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent
        );
        animation: fastShine 1.5s infinite; /* Durasi diubah ke 1.5s (lebih cepat) */
    }

    @keyframes fastShine {
        0% { left: -100%; }
        40% { left: 100%; }
        100% { left: 100%; }
    }
