body {
    background-color: #f8fafc;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    background-attachment: fixed;
    min-height: 100vh;
    color: #000;
    font-family: 'Poppins', sans-serif !important;
}

/* Hilangkan efek neon glow yang mirip game */
.glow-text {
    text-shadow: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9; 
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}
