/* Reddish Header Text with Heartbeat */
.whiter-neon-text {
    color: #ffdddd;
    text-shadow: 
        0 0 6px #ffcccc,
        0 0 12px #ffaaaa,
        0 0 18px #ff8888,
        0 0 24px #ff6666,
        0 0 30px #ff4444;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
        text-shadow: 
            0 0 6px #ffcccc,
            0 0 12px #ffaaaa,
            0 0 18px #ff8888,
            0 0 24px #ff6666,
            0 0 30px #ff4444;
    }
    10% {
        transform: scale(1.05);
        text-shadow: 
            0 0 8px #ffcccc,
            0 0 16px #ffaaaa,
            0 0 24px #ff8888,
            0 0 32px #ff6666,
            0 0 40px #ff4444;
    }
    20% {
        transform: scale(1);
        text-shadow: 
            0 0 6px #ffcccc,
            0 0 12px #ffaaaa,
            0 0 18px #ff8888,
            0 0 24px #ff6666,
            0 0 30px #ff4444;
    }
    30% {
        transform: scale(1.08);
        text-shadow: 
            0 0 10px #ffcccc,
            0 0 20px #ffaaaa,
            0 0 30px #ff8888,
            0 0 40px #ff6666,
            0 0 50px #ff4444;
    }
    40% {
        transform: scale(1);
        text-shadow: 
            0 0 6px #ffcccc,
            0 0 12px #ffaaaa,
            0 0 18px #ff8888,
            0 0 24px #ff6666,
            0 0 30px #ff4444;
    }
    100% {
        transform: scale(1);
        text-shadow: 
            0 0 6px #ffcccc,
            0 0 12px #ffaaaa,
            0 0 18px #ff8888,
            0 0 24px #ff6666,
            0 0 30px #ff4444;
    }
}