/* Background effects */
body {
    background-color: #000000;
    overflow-x: hidden;
    position: relative;
}

.background-text {
    position: fixed;
    color: rgba(255, 0, 0, 0.1);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    pointer-events: none;
    z-index: -1;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    animation: float 20s linear infinite;
    white-space: nowrap;
    user-select: none;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}
