/* Kustomisasi Scrollbar agar terlihat Premium */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FDFBF7; /* Warna brand-light */
}

::-webkit-scrollbar-thumb {
    background: #D4AF37; /* Warna brand-gold */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b5952f;
}

/* Kustomisasi warna seleksi teks saat di-block/copy */
::selection {
    background-color: #D4AF37;
    color: #2A1B14;
}

/* Memastikan html scroll smooth */
html {
    scroll-behavior: smooth;
}