body {
    background-color: #29ADCE; /* Sky blue */
    margin: 0;
    font-family: 'Titillium Web', sans-serif;
}

#gallery_header_container {
    display: flex;
    justify-content: center;
}

#gallery_title {
    color: #FFFFFF;
    font-weight: 800;
    font-size: 50px;
    margin-top: 50px;
    text-transform: uppercase;
    text-shadow: 4px 4px 0px #20150F;
    letter-spacing: 2px;
    text-align: center;
}

#server_trailer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding: 0 20px;
}

#server_trailer iframe {
    width: 100%;
    max-width: 987px;
    height: 450px;
    border: 4px solid #20150F;
    box-shadow: 8px 8px 0px #20150F;
    border-radius: 20px;
}

/* Gallery Images Grid */
.gallery_wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
    max-width: 1000px;
    margin: 30px auto 0 auto;
}

.gallery_wrapper img {
    border: 4px solid #20150F;
    box-shadow: 6px 6px 0px #20150F;
    border-radius: 15px;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    object-fit: cover;
}

.gallery_wrapper img:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px #20150F;
}

/* Back Button */
#gallery_back {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

#gallery_back a {
    text-decoration: none;
    font-weight: 800;
    color: #20150F;
    width: 180px;
    display: flex;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #FFD633;
    height: 55px;
    border: 4px solid #20150F;
    box-shadow: 6px 6px 0px #20150F;
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.2s ease;
}

#gallery_back i {
    margin-right: 8px;
}

#gallery_back a:hover {
    filter: brightness(1.1);
}

#gallery_back a:active {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0px #20150F;
}

/* New Placeholder Styling */
.trailer_placeholder {
    width: 100%;
    max-width: 987px;
    height: 450px;
    border: 4px solid #20150F;
    box-shadow: 8px 8px 0px #20150F;
    border-radius: 20px;
    background-color: #111111; /* Dark background to mimic a video frame */
    display: flex;
    align-items: center;
    justify-content: center;
}

.trailer_placeholder h2 {
    color: #FFD633; /* Matches your back button yellow, or change to #FFFFFF */
    font-size: 50px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 4px 4px 0px #20150F;
    letter-spacing: 2px;
    text-align: center;
}

/* Mobile Responsiveness */
@media(max-width: 850px) {
    .gallery_wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .gallery_wrapper img {
        width: 100%;
        height: auto;
    }
    
    #server_trailer iframe {
        height: 250px;
    }

    #gallery_title {
        font-size: 40px;
    }
}

/* Desktop Fixes */
@media(min-width: 851px) {
    .gallery_wrapper img {
        width: 480px;
        height: 270px;
    }
}