h1 {
    text-align: center;
    font-size: 4rem;
    padding-top: 10vh;

}

#latest_embed {
    max-width: 800px;
    margin: 2rem auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10vh;
}

#latest_embed iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    border-radius: 12px;
    background: #000;
}

/* Responsive styles for mobile */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
        padding-top: 4vh;
    }

    #latest_embed {
        max-width: 95vw;
        width: 100vw;
        aspect-ratio: 16 / 9;
        border-radius: 0;
        box-shadow: none;
        margin: 1rem auto;   /* <-- Center horizontally */
        padding-bottom: 4vh;
    }

    #latest_embed iframe {
        border-radius: 0;
    }
}