.ben-ff-wrap {
    width: min(100%, 820px);
    margin: 28px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #202020;
}

.ben-ff-stage {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    background: #050505;
    box-shadow: 0 14px 34px rgba(0,0,0,.18);
    aspect-ratio: 16 / 9;
}

.ben-ff-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.ben-ff-bigplay {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: #111;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 8px 26px rgba(0,0,0,.25);
}

.ben-ff-controls {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 999px;
    background: rgba(10,10,10,.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 1;
    transition: opacity .2s ease;
}

.ben-ff-is-playing .ben-ff-controls,
.ben-ff-wrap.is-playing .ben-ff-controls {
    opacity: .26;
}

.ben-ff-stage:hover .ben-ff-controls,
.ben-ff-controls:focus-within,
.ben-ff-wrap.is-playing .ben-ff-stage:active .ben-ff-controls {
    opacity: 1;
}

.ben-ff-controls button {
    min-width: 38px;
    height: 38px;
    padding: 0 9px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
}

.ben-ff-controls button:hover,
.ben-ff-controls button:focus-visible {
    background: rgba(255,255,255,.16);
}

.ben-ff-progress {
    width: 100%;
    accent-color: #fff;
}

.ben-ff-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr)) auto;
    gap: 10px;
    align-items: stretch;
    margin-top: 12px;
    padding: 12px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 12px;
    background: #f5f2eb;
}

.ben-ff-info > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 6px 8px;
}

.ben-ff-info span {
    font-size: 12px;
    color: #6a655c;
}

.ben-ff-info strong {
    margin-top: 2px;
    font-size: 15px;
    color: #25231f;
}

.ben-ff-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 9px;
    background: #2d2d2d;
    color: #fff !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.ben-ff-comment-card {
    position: relative;
    margin-top: 16px;
    padding: 18px;
    border-radius: 14px;
    background: #fffdf8;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
    transition: background .2s ease, color .2s ease;
}

.ben-ff-comment-toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 10px;
}

.ben-ff-comment-toolbar button {
    border: 1px solid rgba(0,0,0,.14);
    border-radius: 999px;
    padding: 5px 10px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 12px;
}

.ben-ff-comment-toolbar button.is-active {
    background: #222;
    color: #fff;
}

.ben-ff-comment-card,
.ben-ff-comment-card textarea,
.ben-ff-comment-card input {
    font-family: "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
}

.ben-ff-comment-card textarea,
.ben-ff-comment-card input[type="text"],
.ben-ff-comment-card input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.25);
    background: transparent;
    color: inherit;
    font-size: 18px;
    line-height: 1.55;
    padding: 10px 4px;
    outline: none;
}

.ben-ff-comment-card textarea {
    min-height: 120px;
    resize: vertical;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 29px,
        rgba(0,0,0,.08) 30px
    );
}

.ben-ff-comment-card label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

.ben-ff-comment-card .form-submit {
    margin-bottom: 0;
}

.ben-ff-comment-card input[type="submit"] {
    border: 0;
    border-radius: 999px;
    padding: 10px 17px;
    background: #262626;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
}

.ben-ff-comments-list {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.ben-ff-comment {
    padding: 12px 14px;
    border-left: 3px solid rgba(0,0,0,.2);
    background: rgba(255,255,255,.45);
}

.ben-ff-comment-meta {
    margin-bottom: 5px;
    font-size: 12px;
    opacity: .7;
}

.ben-ff-comment-text p:last-child {
    margin-bottom: 0;
}

.ben-ff-wrap.ben-ff-dark-paper .ben-ff-comment-card {
    background: #2b2926;
    color: #f3eee4;
}

.ben-ff-wrap.ben-ff-dark-paper .ben-ff-comment-toolbar button.is-active,
.ben-ff-wrap.ben-ff-dark-paper .ben-ff-comment-card input[type="submit"] {
    background: #f1eadf;
    color: #211f1c;
}

.ben-ff-wrap.ben-ff-dark-paper .ben-ff-comment-card textarea {
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 29px,
        rgba(255,255,255,.09) 30px
    );
}

.ben-ff-wrap.ben-ff-dark-paper .ben-ff-comment-card textarea,
.ben-ff-wrap.ben-ff-dark-paper .ben-ff-comment-card input[type="text"],
.ben-ff-wrap.ben-ff-dark-paper .ben-ff-comment-card input[type="email"] {
    border-color: rgba(255,255,255,.25);
}

.ben-ff-stage:fullscreen,
.ben-ff-stage:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    aspect-ratio: auto;
    border-radius: 0;
    background: #000;
}

.ben-ff-stage:fullscreen .ben-ff-video,
.ben-ff-stage:-webkit-full-screen .ben-ff-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 720px) {
    .ben-ff-wrap {
        width: 100%;
        margin: 20px auto;
    }

    .ben-ff-stage {
        border-radius: 10px;
    }

    .ben-ff-info {
        grid-template-columns: 1fr 1fr;
    }

    .ben-ff-download {
        grid-column: 1 / -1;
    }

    .ben-ff-controls {
        left: 7px;
        right: 7px;
        bottom: 7px;
        gap: 5px;
        padding: 6px 7px;
    }

    .ben-ff-controls button {
        min-width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .ben-ff-comment-card {
        padding: 14px;
    }
}
