/* Enhanced Fire Fighting Preloader Styles - Only Flame Icon, White Background */
#preloader-fire {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s;
}
.preloader-flame {
    position: relative;
    width: 120px;
    height: 120px;
    margin: auto;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-flame::before {
    content: '';
    display: block;
    width: 60px;
    height: 90px;
    background: radial-gradient(circle at 30px 30px, #f1c40f 60%, #e74c3c 100%);
    border-radius: 30px 30px 30px 30px/60px 60px 30px 30px;
    box-shadow: 0 0 40px 10px #e74c3c88;
    animation: flame-flicker 0.7s infinite alternate;
}
@keyframes flame-flicker {
    0% { transform: scaleY(1) scaleX(1); opacity: 1; }
    100% { transform: scaleY(1.1) scaleX(0.95); opacity: 0.85; }
}
.preloader-text {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    text-align: center;
    color: #e74c3c;
    font-family: 'Montserrat', 'Roboto Condensed', Arial, sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #e74c3c33, 0 0 2px #f1c40f;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}
.preloader-text .mission-icon {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.5em;
    color: #f1c40f;
    vertical-align: middle;
    animation: pulse 1.2s infinite alternate;
}
@keyframes pulse {
    0% { transform: scale(1); color: #f1c40f; }
    100% { transform: scale(1.2); color: #e74c3c; }
}