/* Blinking text effects */
.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Rainbow Effects */
.rainbow {
    animation: rainbow 3s linear infinite;
}

@keyframes rainbow {
    0% { color: red; }
    14% { color: orange; }
    28% { color: yellow; }
    42% { color: green; }
    57% { color: blue; }
    71% { color: indigo; }
    85% { color: violet; }
    100% { color: red; }
}

/* Retro marquee effect */
.marquee-container {
    background: linear-gradient(45deg, var(--marquee-bg-1), var(--marquee-bg-2), var(--marquee-bg-3));
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
}

.marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Marquee text styling */
.marquee-text {
    color: #ffff00;
    font-weight: bold;
    margin: 0 10px;
}

/* Under construction styling */
.under-construction {
    background-color: var(--construction-bg);
    color: var(--construction-text);
    padding: 10px;
    margin: 15px 0;
    border: 2px solid var(--border-color);
    font-family: 'dot-matrix', monospace;
    font-weight: bold;
    text-align: center;
    transform: rotate(-2deg);
}

.slow-float {
    position: relative;
    transform: perspective(1000px) rotateY(0deg);
    transition: all 0.6s ease;
    animation: slow-float 4s ease-in-out infinite;
}

@keyframes slow-float {
    0%, 100% { transform: perspective(1000px) rotateY(0deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(0deg) translateY(-10px); }
}

/* Neon glow effect */
.neon-glow {
    color: var(--neon-color);
    text-shadow:
        0 0 5px var(--neon-color),
        0 0 10px var(--neon-color),
        0 0 20px var(--neon-color),
        0 0 40px var(--neon-color);
    animation: neonPulse 2s infinite;
}