/* landing page styles */
body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(to bottom, #070B34, #141852, #2B2F77, #483475, #6B4984, #855988);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 85vh;
    padding: 2rem 1.5rem;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    letter-spacing: 0.05em;
    color: #E8EAF0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    margin: 0;
}

.hero-tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 1.5rem 0 2.5rem;
}

.cta-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    border-radius: 3rem;
    text-decoration: none;
    transition: background 150ms ease, color 150ms ease;
}

.cta-btn:hover {
    background: #ffffff;
    color: #070b34;
}

.marquee {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0 3rem;
}

.marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: marquee-scroll 70s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-poster {
    height: 220px;
    width: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .cta-btn {
        font-size: 1.1rem;
        padding: 0.85rem 2rem;
    }

    .marquee-poster {
        height: 140px;
    }
}
