body {
    margin: 0;
    padding: 0;

    background: #1b1b1b;
    color: #e0e0e0;

    font-family: Arial, sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin-top: 20px;
    margin-bottom: 30px;

    font-size: 2rem;
    color: #ffffff;
}

.player-wrapper {
    width: 90%;
    max-width: 1200px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-js {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

#video-title {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #cccccc;
}

@media (max-width: 768px) {

    h1 {
        font-size: 1.4rem;
        text-align: center;
    }

    .player-wrapper {
        width: 100%;
    }

    .video-js {
        border-radius: 0;
    }
}

