/* Episode-specific iframe styles */
#iphone-screen {
    min-width: 400px;
    max-width: 400px;
    min-height: 800px;
    max-height: 800px;
    border-radius: 40px;
    box-shadow: 5px 5px 15px #8c8c8c, -5px -5px 15px #b8b8b8;
    border: none;
}

@media(max-width: 800px) {
    #iphone-screen {
        min-width: 100%;
        max-width: 100%;
    }
}

@media(max-width: 500px) {
    #iphone-screen {
        min-width: 100%;
        max-width: 100%;
        min-height: 800px;
        max-height: 800px;
        border-radius: 0px;
    }
}

@media(max-height: 900px) {
    #iphone-screen {
        min-height: 650px;
        height: calc(100vh - 80px);
        max-height: calc(100vh - 80px);
    }
}