body {
    background-color: #000000;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 180, 168, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

.industrial-text {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 0.8;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    font-weight: 900;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 64px 64px;
    z-index: -1;
}

.glow-red {
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.animate-marquee {
    animation: marquee 40s linear infinite;
    white-space: nowrap;
    display: flex;
}

.animate-marquee-reverse {
    animation: marquee-reverse 50s linear infinite;
    white-space: nowrap;
    display: flex;
}

.marquee-item {
    flex-shrink: 0;
    padding-right: 2rem;
}

.text-huge {
    font-size: 22vw;
}

@media (min-width: 1024px) {
    .text-huge {
        font-size: 18vw;
    }
}