.watch-upload-cta {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    margin-left: 22px;
    padding: 9px 15px 9px 9px;
    border: 1px solid #dce3ef;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff, #f4f7ff);
    box-shadow: 0 8px 24px rgba(37, 99, 235, .10);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.watch-upload-cta:hover {
    transform: translateY(-2px);
    border-color: #b8c7e5;
    box-shadow: 0 12px 28px rgba(37, 99, 235, .16);
}

.watch-upload-cta > span:last-child {
    display: grid;
    line-height: 1.2;
}

.watch-upload-cta strong {
    font-size: 13px;
}

.watch-upload-cta small {
    margin-top: 3px;
    color: #667085;
    font-size: 10px;
}

.watch-upload-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient(135deg, #7137e8, #2563eb 58%, #089ec1);
    color: #fff;
}

.watch-upload-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 800px) {
    .watch-upload-cta {
        width: max-content;
        margin: 16px 0 0;
    }
}

.video-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 2px 18px;
}

.video-title-row h1 {
    margin: 0;
    font-size: clamp(25px, 4vw, 38px);
    letter-spacing: -.8px;
}

.video-title-row p {
    margin: 5px 0 0;
    color: #667085;
}

.video-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid #e4e7ec;
    border-bottom: 1px solid #e4e7ec;
}

.uploader-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.uploader-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #7137e8, #2563eb 58%, #089ec1);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 7px 18px rgba(37, 99, 235, .18);
}

.uploader-profile > div {
    display: grid;
    min-width: 0;
}

.uploader-profile strong {
    font-size: 15px;
}

.uploader-profile > div > span {
    margin-top: 3px;
    color: #667085;
    font-size: 12px;
}

.video-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.media-action {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 15px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: transform .16s ease, filter .16s ease;
}

.media-action:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.media-action.download {
    background: #101828;
}

.media-action.share {
    background: linear-gradient(135deg, #7137e8, #2563eb);
}

.media-action.report {
    background: #667085;
}

.embed-panel {
    margin-top: 22px;
}

.report-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    padding: 20px;
    background: rgba(10, 18, 35, .62);
    backdrop-filter: blur(5px);
}

.report-modal:not([hidden]) {
    display: grid;
    place-items: center;
}

.report-dialog {
    width: min(470px, 100%);
    padding: 25px;
    border: 1px solid #e4e7ec;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.report-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.report-head h2 {
    margin: 0;
}

.report-head > button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #f2f4f7;
    color: #344054;
    font-size: 21px;
    cursor: pointer;
}

@media (max-width: 760px) {
    .video-title-row,
    .video-action-bar {
        display: grid;
    }

    .video-actions {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .media-action {
        padding: 10px 8px;
        font-size: 12px;
    }
}
