/* Glowing Boxes */
.glow-red {
    border: 3px solid #ef3340;
    box-shadow: 0 0 15px #ef3340, 0 0 30px #ef3340, 0 0 45px #ef3340;
    animation: glowRed 2s infinite alternate;
}

.glow-green {
    border: 3px solid #78be20;
    box-shadow: 0 0 15px #78be20, 0 0 30px #78be20, 0 0 45px #78be20;
    animation: glowGreen 2s infinite alternate;
}

.glow-blue {
    border: 3px solid #00a1e5;
    box-shadow: 0 0 15px #00a1e5, 0 0 30px #00a1e5, 0 0 45px #00a1e5;
    animation: glowBlue 2s infinite alternate;
}

@keyframes glowRed {
    from { box-shadow: 0 0 15px #ef3340, 0 0 30px #ef3340; }
    to   { box-shadow: 0 0 25px #ff6b78, 0 0 40px #ff6b78; }
}

@keyframes glowGreen {
    from { box-shadow: 0 0 15px #78be20, 0 0 30px #78be20; }
    to   { box-shadow: 0 0 25px #a8e063, 0 0 40px #a8e063; }
}

@keyframes glowBlue {
    from { box-shadow: 0 0 15px #00a1e5, 0 0 30px #00a1e5; }
    to   { box-shadow: 0 0 25px #80dfff, 0 0 40px #80dfff; }
}

/* Team Grid Glow Lines */
.glow-line {
    border-top: 2px solid #ef3340;
    border-bottom: 2px solid #00a1e5;
    padding: 15px 0;
    animation: teamGlow 3s infinite alternate;
}

@keyframes teamGlow {
    0%   { border-color: #ef3340 #00a1e5; }
    50%  { border-color: #78be20 #ff8c00; }
    100% { border-color: #ef3340 #00a1e5; }
}

