* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Cairo', sans-serif;
}

body {
    background-color: #2c2c2c;
    color: white;
}


.hero {
    height: 75vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}

.hero-content {
    padding-top: 200px;
    position: relative;
    z-index: 2;
    text-align: center;
}


.btn {
    padding: 12px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    display: inline-block;
}

.btn-white {
    background: white;
    color: #a32121;
}

.btn-yellow {
    background: #fdd166;
    color: #333;
}


.content {
    padding: 40px 60px;
}

.category-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 0.9rem;
    margin-bottom: 25px;
    border-bottom: 3px solid #a32121;
    display: inline-block;
    padding-bottom: 5px;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.movie-card-link {
    text-decoration: none;
    color: inherit;
}

.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,
.movie-name-ar,
.yellow {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.movie-name {
    font-weight: 600;
}

.movie-name-ar,
.yellow {
    color: #fdd166;
}

.yellow {
    opacity: 0.9;
}

.show-more-container {
    text-align: center;
    margin-top: 25px;
}

.show-more-link {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid #fdd166;
    border-radius: 25px;
    color: #fdd166;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.show-more-link:hover {
    background-color: #fdd166;
    color: #2c2c2c;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(253, 209, 102, 0.3);
}


@media (max-width: 1024px) {

    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .hero {
        height: 280px;
    }
}


@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;
    }
}