/* Virtual 3D Warehouse Title with Halloween Ghost Logo */
#warehouseTitleContainer {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    pointer-events: none !important;
}

/* Halloween Ghost Logo - Corrected Position */
#warehouseLogoWrapper {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: ghostFloat 3s ease-in-out infinite, ghostSpin 8s linear infinite !important;
    position: relative !important;
    flex-shrink: 0 !important;
    margin-top: 0px !important;
}

#warehouseLogo {
    width: 60px !important;
    height: 60px !important;
    filter: drop-shadow(0 0 20px rgba(255, 127, 0, 0.8))
            drop-shadow(0 0 40px rgba(255, 127, 0, 0.5))
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6)) !important;
    transform-style: preserve-3d !important;
}

/* Ghost Floating Animation */
@keyframes ghostFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-15px) scale(1.05);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
    75% {
        transform: translateY(-20px) scale(1.08);
    }
}

/* Ghost Spinning Animation */
@keyframes ghostSpin {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Title Text - CLEAN & SIMPLE STYLE */
#warehouseTitle {
    font-family: 'Impact', 'Arial Black', 'Helvetica Bold', sans-serif !important;
    font-size: 48px !important;
    font-weight: 900 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    letter-spacing: 10px !important;
    word-spacing: 18px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;

    /* Simple, Clean White Text - Highly Visible */
    color: #ffffff !important;

    /* Subtle shadow for depth and readability */
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.6),
        0px 0px 20px rgba(255, 255, 255, 0.3) !important;

    /* Smooth rendering */
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;

    /* No complex transforms - simple and clear */
    /* No animations - stable display */
}

/* Title animations REMOVED to prevent blinking effect */
/* Stable, non-animated title for professional appearance */

/* @keyframes title3DGlow - DISABLED */
/* @keyframes titleFloat - DISABLED */

/* Orange Glow Pulse (matching ghost pumpkin) */
@keyframes orangeGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 127, 0, 0.8))
                drop-shadow(0 0 40px rgba(255, 127, 0, 0.5))
                drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 127, 0, 1))
                drop-shadow(0 0 60px rgba(255, 127, 0, 0.8))
                drop-shadow(0 0 80px rgba(255, 69, 0, 0.5))
                drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6));
    }
}

#warehouseLogo {
    animation: ghostFloat 3s ease-in-out infinite,
               ghostSpin 8s linear infinite,
               orangeGlow 2s ease-in-out infinite !important;
}

/* Responsive Design - Maintains horizontal expansion and spacing */
@media (max-width: 1600px) {
    #warehouseTitle {
        font-size: 42px !important;
        letter-spacing: 9px !important;
        word-spacing: 16px !important;
    }

    #warehouseLogo {
        width: 55px !important;
        height: 55px !important;
    }

    #warehouseTitleContainer {
        gap: 12px !important;
    }
}

@media (max-width: 1200px) {
    #warehouseTitle {
        font-size: 36px !important;
        letter-spacing: 7px !important;
        word-spacing: 14px !important;
    }

    #warehouseLogo {
        width: 50px !important;
        height: 50px !important;
    }

    #warehouseTitleContainer {
        gap: 10px !important;
    }
}

@media (max-width: 800px) {
    #warehouseTitle {
        font-size: 30px !important;
        letter-spacing: 5px !important;
        word-spacing: 10px !important;
    }

    #warehouseLogo {
        width: 40px !important;
        height: 40px !important;
    }

    #warehouseTitleContainer {
        gap: 10px !important;
        top: 15px !important;
    }
}

@media (max-width: 600px) {
    #warehouseTitle {
        font-size: 24px !important;
        letter-spacing: 3px !important;
        word-spacing: 6px !important;
    }

    #warehouseLogo {
        width: 35px !important;
        height: 35px !important;
    }

    #warehouseTitleContainer {
        gap: 8px !important;
        top: 10px !important;
    }
}

/* Special Halloween Effects */
#warehouseLogoWrapper::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 127, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

/* Additional 3D lighting effect for title */
#warehouseTitle::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
