#fake-console {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255,20,147,0.3); }
    to { box-shadow: 0 0 30px rgba(255,20,147,0.6), 0 0 40px rgba(255,20,147,0.3); }
}

#console-input::placeholder { color: rgba(255,20,147,0.5); }

#fake-console::-webkit-scrollbar { width: 8px; }

#fake-console::-webkit-scrollbar-track { background: rgba(255,20,147,0.1); }

#fake-console::-webkit-scrollbar-thumb { background: #ff1493; border-radius: 4px; }

#fake-console::-webkit-scrollbar-thumb:hover { background: #ff69b4; }
