/* ========================================
   STYLE.CSS
   Berisi style umum/global website.
   Catatan: Style untuk "Frame Box" (.glass-panel) 
   ada di dalam index.html sesuai permintaan.
   ========================================
*/

/* Pengaturan Dasar */
body {
    background-color: #000814;
    color: #f3f4f6;
    overflow-x: hidden;
}

/* Efek Teks Neon */
.neon-text {
    text-shadow: 0 0 10px rgba(255, 195, 0, 0.5);
}

/* Background Grid Halus */
.grid-bg {
    background-size: 40px 40px;
    opacity: 0.1;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Helper untuk Font Script */
.title-script {
    font-family: 'Kaushan Script', cursive;
    transform: rotate(-3deg);
    display: inline-block;
}