
    /* Custom Inputs for Dark Theme */
    .custom-input {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: white !important;
        border-radius: 10px;
        padding: 12px;
    }
    .custom-input:focus {
        border-color: #d90429 !important;
        box-shadow: 0 0 10px rgba(217, 4, 41, 0.3);
    }
    .custom-input option {
        background: #1a1a1a;
        color: white;
    }

    /* Map Effects */
    .map-container { position: relative; }
    .map-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        display: flex; align-items: center; justify-content: center;
        background: rgba(217, 4, 41, 0.05);
    }
    .scan-line {
        position: absolute;
        top: 0; width: 100%; height: 2px;
        background: rgba(217, 4, 41, 0.5);
        animation: scan 3s linear infinite;
    }
    @keyframes scan {
        0% { top: 0; }
        100% { top: 100%; }
    }
    .pulse-badge {
        font-size: 0.7rem;
        letter-spacing: 1px;
        box-shadow: 0 0 15px #d90429;
    }
    .tracking-widest { letter-spacing: 4px; }
