.r2-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 20px 0;
    background: #000;
}

.video-js.vjs-16-9 {
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.r2-video-info {
    padding: 15px 20px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border: 1px solid #eee;
    border-top: none;
}

.r2-video-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.r2-video-duration {
    font-size: 0.9rem;
    color: #666;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Customizing VideoJS Player */
.video-js .vjs-big-play-button {
    background-color: rgba(34, 113, 177, 0.8);
    border: none;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
}

.video-js:hover .vjs-big-play-button {
    background-color: #2271b1;
}

.video-js .vjs-control-bar {
    background-color: rgba(0, 0, 0, 0.7);
}