body {
    font-family: 'Rajdhani', sans-serif;
	background-color: #0b0e19;
}

.font-futuristic {
    font-family: 'Orbitron', sans-serif;
}

/* Efek Glow Merah ala Cyberpunk */
.glow-text-red {
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.6), 0 0 15px rgba(239, 68, 68, 0.4);
}

.glow-border-red {
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.25), inset 0 0 12px rgba(239, 68, 68, 0.15);
}
.glow-btn-red {
	box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
        }
.glow-btn-red:hover {
	box-shadow: 0 0 25px rgba(239, 68, 68, 0.8);
        }
/* Animasi Background Berdinamis */
.animated-bg-grid {
    background-image: linear-gradient(rgba(239, 68, 68, 0.07) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(239, 68, 68, 0.07) 1px, transparent 1px);
    background-size: 35px 35px;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

.scanline {
    animation: scanline 7s linear infinite;
    background: linear-gradient(to bottom, transparent, rgba(239, 68, 68, 0.15), transparent);
}

/* --- ATURAN BARU (TAMBAHAN UNTUK FORM & SCROLLBAR) --- */

/* Gaya Input Form */
.gform-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #374151;
    padding: 8px 0;
    outline: none;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.gform-input:focus {
    border-bottom: 2px solid #ef4444;
    box-shadow: 0 4px 6px -6px rgba(239, 68, 68, 0.5);
}

/* Membalikkan warna ikon kalender pada input type="date" agar kontras (Putih) */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Kustomisasi Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #ef4444;
    border-radius: 2px;
}