html { 
    scroll-behavior: smooth; 
}

.hero-bg {
    background-image: linear-gradient(rgba(11, 19, 43, 0.85), rgba(11, 19, 43, 0.85)), 
                      url('https://images.alphacoders.com/134/1340156.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

section { 
    scroll-margin-top: 80px; 
}

/* Utility untuk Text Stroke dan Shadow */
.discord-shadow {
    text-shadow: 0 0 4px rgba(88, 101, 242, 0.6);
}

.fa-spin-slow {
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}