/* Showreels Section */
#official-showreel, #other-showreels {
    padding: 60px 20px;
    text-align: center;
    background-color: #1a1a1a;
}

#official-showreel h2, #other-showreels h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 2rem;
}

#official-showreel {
    margin-top: 60px;
}

/* Stack all other showreels vertically */
.showreel-grid {
    display: flex;
    flex-direction: column; /* vertical stack */
    gap: 40px;              /* space between each video */
    align-items: center;    /* center horizontally */
}

/* Each individual showreel item */
.showreel-item {
    width: 100%;
    max-width: 900px;       /* optional max width */
    text-align: center;
    padding: 20px;
    border-radius: 8px;
}

/* Video styling */
#official-showreel video,
.showreel-item video {
    max-width: 1200px;
    width: 100%;            /* responsive width */
    height: auto;
    border-radius: 8px;
}

/* Description below each video */
.showreel-description {
    color: #fff;
    text-align: left;
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.showreel-item p {
    margin-top: 10px;
    color: #fff;
    text-align: left;
    line-height: 1.4;
}