* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Cairo', sans-serif;
}

body {
    background-color: #2c2c2c;
    color: white;
}


.hero {
    height: 45vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(44,44,44,1));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.content { padding: 40px 60px; }

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.movie-card-link { text-decoration: none; }

.movie-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.movie-card:hover { transform: translateY(-10px); }

.movie-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.movie-info { margin-top: 12px; }

.movie-name {
    display: block;
    font-weight: 600;
    color: white;
}

.yellow {
    color: #fdd166;
    font-size: 0.9rem;
}



@media (max-width: 1024px) {
    .movie-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

@media (max-width: 768px) {
    .movie-grid {
        grid-template-columns: 1fr;
    }

    .movie-card img {
        height: 200px;
    }

}

@media (max-width: 480px) {
    .movie-grid {
        grid-template-columns: 1fr;
    }

    .movie-card img {
        height: 200px;
    }


}