.lr-video-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
    position: relative;
    background-color: #000;
}
.lr-lazy-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    background-color: #000;
}
.lr-lazy-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 10;
}
.lr-iframe-active {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.lr-iframe-active iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.lr-lazy-player .vjs-big-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 2;
}
.lr-video-downloads-section {
    margin-top: 5px;
    margin-bottom: 30px;
    width: 100%;
}
.lr-downloads-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.lr-download-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: #111;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    overflow: hidden;
}
.lr-download-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: radial-gradient(circle, #d80413 0%, rgb(0 0 0) 100%);
}
.lr-download-icon {
    margin-right: 10px;
    fill: #fff;
    flex-shrink: 0;
}
.lr-download-name {
    font-size: 16px;
}
.lr-download-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(216, 4, 19, 0.2);
    text-decoration: none !important;
}