.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

body {
    background-color: #000;
    background-image: radial-gradient(circle at 50% 100%, rgb(255 255 255 / 13%) 0%, rgba(19, 19, 19, 0) 60%);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    min-height: max(884px, 100dvh);
}

.hero-video-gradient {
    background: linear-gradient(0deg, rgba(19, 19, 19, 1) 0%, rgba(19, 19, 19, 0.4) 50%, rgba(19, 19, 19, 0.8) 100%);
}

.text-impact {
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

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

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 40s linear infinite;
}