.lmf-player,
.lmf-player * {
    box-sizing: border-box;
}

.lmf-player {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
    overflow: hidden;
    position: relative;
}

.lmf-video-wrap {
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    position: relative;
}

.lmf-video-wrap video {
    background: #000;
    display: block;
    height: 100%;
    object-fit: contain;
    outline: 0;
    width: 100%;
}

.lmf-big-play {
    align-items: center;
    background: linear-gradient(135deg, #18c9f3, #2bf09a);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.46);
    color: #03120e;
    cursor: pointer;
    display: flex;
    height: 68px;
    justify-content: center;
    left: 50%;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 160ms ease, transform 160ms ease;
    width: 68px;
    z-index: 4;
}

.lmf-big-play svg {
    height: 34px;
    margin-left: 3px;
    width: 34px;
}

.lmf-player.is-playing .lmf-big-play {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.84);
}

.lmf-trial-bar {
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(8, 15, 19, 0.84);
    border: 1px solid rgba(43, 240, 154, 0.28);
    border-radius: 999px;
    color: #dfe7e8;
    display: flex;
    font-size: 11px;
    gap: 12px;
    left: 14px;
    padding: 7px 11px;
    position: absolute;
    top: 14px;
    z-index: 7;
}

.lmf-trial-bar strong {
    color: #2bf09a;
}

.lmf-trial-bar [data-lmf-trial-time] {
    color: #fff;
    font-variant-numeric: tabular-nums;
    font-weight: 900;
}

.lmf-player-tools {
    align-items: center;
    background: #111723;
    display: flex;
    justify-content: flex-end;
    padding: 10px 13px;
}

.lmf-player-tools a,
.lmf-player-button,
.lmf-watch-action {
    align-items: center;
    background: linear-gradient(120deg, #18c9f3, #2bf09a);
    border: 0;
    border-radius: 999px;
    color: #04130f !important;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 7px;
    justify-content: center;
    min-height: 40px;
    padding: 9px 15px;
    text-decoration: none;
    white-space: nowrap;
}

.lmf-player-tools svg,
.lmf-watch-action svg {
    height: 19px;
    width: 19px;
}

.lmf-download-action.is-locked {
    background: #1a222c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #eef3f4 !important;
}

.lmf-player-link {
    color: #fff !important;
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-top: 14px;
    text-decoration: underline;
}

.lmf-player-locked,
.lmf-player-empty {
    align-items: center;
    background-color: #090d14;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    min-height: min(50vw, 590px);
    position: relative;
    text-align: center;
}

.lmf-player-locked::before {
    background: rgba(5, 7, 11, 0.86);
    content: '';
    inset: 0;
    position: absolute;
}

.lmf-player-locked > div,
.lmf-player-empty > div {
    max-width: 560px;
    padding: 35px;
    position: relative;
    z-index: 1;
}

.lmf-player-locked .dashicons,
.lmf-player-empty .dashicons {
    color: #2bf09a;
    font-size: 44px;
    height: 50px;
    width: 50px;
}

.lmf-player h2 {
    color: #fff;
    font-size: clamp(24px, 4vw, 38px);
    margin: 8px 0;
}

.lmf-player p {
    color: #b8c0cd;
    margin: 0 0 20px;
}

.lmf-expired-overlay {
    align-items: center;
    background: rgba(5, 7, 11, 0.97);
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: center;
    padding: 30px;
    position: absolute;
    text-align: center;
    z-index: 10;
}

.lmf-expired-overlay[hidden] {
    display: none;
}

.lmf-expired-overlay p {
    max-width: 500px;
}

@media (max-width: 600px) {
    .lmf-player {
        border-radius: 0;
    }

    .lmf-big-play {
        height: 52px;
        width: 52px;
    }

    .lmf-big-play svg {
        height: 27px;
        width: 27px;
    }

    .lmf-trial-bar {
        font-size: 9px;
        gap: 8px;
        left: 8px;
        padding: 5px 8px;
        top: 8px;
    }

    .lmf-player-locked,
    .lmf-player-empty {
        min-height: 58vw;
    }

    .lmf-player-locked > div,
    .lmf-player-empty > div {
        padding: 24px 18px;
    }

    .lmf-player h2 {
        font-size: 23px;
    }

    .lmf-player p {
        font-size: 12px;
    }
}
