/* --- CORE STYLES --- */
body { 
    font-family: 'Outfit', sans-serif; 
    -webkit-tap-highlight-color: transparent;
}

/* Grid Overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(220, 38, 38, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

/* Glass Panel */
.glass-panel {
    background: rgba(15, 23, 42, 0.85); /* Sedikit lebih gelap agar teks lebih terbaca */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

/* Forms */
.form-group label {
    display: block;
    font-size: 11px; /* Ukuran font label mobile friendly */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 8px;
    margin-left: 2px;
}

.form-input {
    width: 100%;
    background-color: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px; /* Padding lebih besar untuk touch target */
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none; /* Hilangkan default style iOS */
}

.form-input:focus {
    border-color: #ef4444;
    background-color: rgba(30, 41, 59, 0.9);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.form-input::placeholder {
    color: #475569;
}

/* Input Type Number Arrows Remove */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

/* Responsive Fixes */
@media (max-width: 640px) {
    .glass-panel {
        padding: 24px 20px !important; /* Padding lebih kecil di mobile */
    }
    .form-group {
        margin-bottom: 4px;
    }
    h1 {
        font-size: 1.5rem !important; /* Judul lebih kecil di HP */
    }
}

/* Glitch Effect Text */
.glitch-text {
    position: relative;
    color: white;
}
/* ... (Animation glitch sama seperti sebelumnya) ... */

/* Log Terminal Scrollbar */
#processLogs::-webkit-scrollbar { width: 4px; }
#processLogs::-webkit-scrollbar-track { background: transparent; }
#processLogs::-webkit-scrollbar-thumb { background: #7f1d1d; border-radius: 4px; }

/* Blinking Cursor */
@keyframes blink { 50% { opacity: 0; } }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }