body {
    margin: 0;
    background-color: #f8f8f8;
    color: #000;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
#playerWrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    border-radius: 8px;
}
#videoPlayer {
    width: 100%;
    height: auto;
}
#logo {
    position: absolute;
    top: 10px;
    left: 10px;
    max-width: 100px;
}
#logo img {
    width: 100%;
}
@media only screen and (max-width: 600px) {
    #logo {
        max-width: 50px;
    }
}
