/* Christmas Text Glow Effect - Main Header Only */

/* Main header glow - Red and Green alternating */
#header-title {
    color: #ffffff;
    text-shadow: 
        0 0 5px #ff0000,
        0 0 10px #ff0000,
        0 0 15px #ff0000,
        0 0 20px #ff0000,
        0 0 35px #ff0000,
        0 0 40px #ff0000;
    animation: christmasGlow 2s ease-in-out infinite alternate;
}

@keyframes christmasGlow {
    from {
        text-shadow: 
            0 0 5px #ff0000,
            0 0 10px #ff0000,
            0 0 15px #ff0000,
            0 0 20px #ff0000,
            0 0 35px #ff0000,
            0 0 40px #ff0000;
    }
    to {
        text-shadow: 
            0 0 5px #00ff00,
            0 0 10px #00ff00,
            0 0 15px #00ff00,
            0 0 20px #00ff00,
            0 0 35px #00ff00,
            0 0 40px #00ff00;
    }
}