.video-container {
    position: relative;
    max-width: 900px;
    margin: 30px auto 0;
}

video {
    width: 100%;
    border-radius: 10px;
    background: black;
}

/* Center Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}