/* ============================================
   GSFilms - Landing Page Styles
   ============================================ */

.cta-section {
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229,9,20,0.1) 0%, transparent 50%);
    animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.cta-card h2 {
    position: relative;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-card p {
    position: relative;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.cta-card .btn {
    position: relative;
}

/* Landing animations */
.hero-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.5s; }
.hero-content > *:nth-child(4) { animation-delay: 0.6s; }
.hero-content > *:nth-child(5) { animation-delay: 0.8s; }

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banner styles */
.banner-slider {
    margin: 0 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.banner-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.5;
}

.banner-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 4px;
    opacity: 1;
}

.banner-dot:hover {
    opacity: 0.8;
}

/* Row hover glow effect */
.movie-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(229, 9, 20, 0);
    transition: box-shadow 0.4s;
    pointer-events: none;
}

.movie-card:hover::after {
    box-shadow: 0 8px 40px rgba(229, 9, 20, 0.25);
}

/* Footer hover effect */
.footer-col a {
    position: relative;
    padding-left: 0;
    transition: padding-left 0.2s;
}

.footer-col a:hover {
    padding-left: 6px;
}
