@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
}

.red-glow {
    box-shadow: 0 0 50px -12px rgba(220, 38, 38, 0.5);
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 2rem;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.dropdown-menu a {
    display: block;
    width: calc(100% + 1.5rem);
    margin: 0 -0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0;
    text-align: center;
}

.dropdown-menu a:hover {
    color: #ff3b3b;
    background-color: rgba(255, 59, 59, 0.14);
}

.mobile-nav-menu details > summary::-webkit-details-marker {
    display: none;
}

.mobile-nav-menu details[open] > summary i {
    transform: rotate(180deg);
}

.mobile-nav-menu .mobile-nav-link {
    width: calc(100% + 2rem);
    margin: 0 -1rem;
    border-radius: 0;
}

.mobile-nav-menu .mobile-nav-link:hover {
    color: #ff3b3b;
    background-color: rgba(255, 59, 59, 0.14);
}

.no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.hover-lift {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 20px 45px -22px rgba(0, 0, 0, 0.7);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 0.4s ease both;
}

@media (prefers-reduced-motion: reduce) {
    .hover-lift {
        transition: none;
    }

    .hover-lift:hover {
        transform: none;
    }

    .fade-in-up {
        animation: none;
    }
}
