ul {
    list-style: none;
}

.video-content {
    width: 100%;
    height: 100%;
    margin: 10px auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    align-items: start;
    padding: 15px;
    box-sizing: border-box;
}

/* Video playlist */
.video-playlist {
    overflow: hidden;
    width: 100%;
    max-height: 522px;
    background-color: var(--color-white);
    box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    transition: max-height 0.4s ease-in-out, padding 0.3s ease-in-out;
}

.video-playlist .header {
    position: sticky;
    top: 0;
    background-color: var(--color-white);
    z-index: 10;
    padding: 15px 12px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 90px;
    border: none;
    margin-top: 5px;
    transition: padding 0.3s ease;
}

.video-playlist .header .toggle-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.2s ease;
    color: #606060;
}

.video-playlist .header .toggle-btn:hover {
    background-color: #f2f2f2;
    color: #000;
    box-shadow: none;
    transform: scale(1.05);
}

.video-playlist h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    transform-origin: left center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-playlist.is-collapsed h2,
.video-playlist-container .mix-subtitle {
    transform: scale(0.75);
    opacity: 0.8;
}

.video-playlist .author {
    font-size: 10px;
    font-weight: 400;
}

.video-playlist-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.playlist-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.playlist-item:hover {
    background-color: #f9f9f9;
}

.playlist-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.playlist-thumb {
    width: 130px;
}

.no-photo,
.playlist-thumb img {
    width: 160px !important;
    height: 90px !important;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
    margin-top: 5px;
}

.video-playlist-container .mix-subtitle {
    font-size: 10px;
    font-weight: 400;
    color: #595959;
}

.playlist-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 27px;
    margin-left: 10px;
}

.playlist-info h4 {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    display: inline-block;
    padding-top: 2px;
    padding-bottom: 2px;
    color: inherit;
    text-decoration: none;
}

.playlist-info .playlist-author {
    font-size: 11px;
    font-weight: 400;
    color: var(--color-black);
}

.playlist-item {
    display: flex;
    align-items: center;
    padding: 2px 4px;
    transition: background-color 0.3s;
}

.playlist-item .active-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #595959;
    visibility: hidden;
}

.playlist-item.active .active-icon {
    visibility: visible;
}

.playlist-item.active {
    background-color: #F5F6F8;
}


.playlist-link.active .active-icon {
    display: inline-block;
}

.playlist-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-playlist.collapsed {
    max-height: 60px;
    padding-bottom: 0;
}

.video-playlist.collapsed .header {
    padding: 5px 12px;
}

.video-playlist.collapsed .playlist-scroll {
    max-height: 0;
    overflow: hidden;
}

.video-playlist .playlist-scroll {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
    max-height: calc(1000px - 60px);
    overflow-y: auto;
    transition: max-height 0.3s ease;
}

.video-playlist.collapsed .playlist-scroll {
    opacity: 0;
    visibility: hidden;
}

.video-playlist .playlist-scroll {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #999 transparent;
}

.video-playlist .playlist-scroll::-webkit-scrollbar {
    width: 6px;
}

.video-playlist .playlist-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.video-playlist .playlist-scroll::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 3px;
}

.video-playlist .playlist-scroll::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.video-content__main .video-title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--color-white);
    border-radius: 5px;
    /* box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.08); */
    padding: 15px;
}


.video-content__main .video-title-container .video-bread-crumb {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0px;
}

.video-content__main .video-title-container .title {
    font-size: 25px;
    font-weight: 700;
}

.video-content__main .video-title-container .video-bread-crumb span a {
    font-size: 12px;
    font-weight: 400;
    color: #B6B6B6;
}

.video-content__main .video-title-container .date-publish {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.video-content__main .video-title-container .date-publish .user-reaction {
    display: flex;
    align-items: center;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 400;
    margin-top: 20px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}

.video-title-container .video-author {
    width: 100%;
}

.video-title-container .video-author .border {
    border: 1px solid #EBEBEB;
}

.playlist-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.playlist-tabs .tab-btn {
    flex: 1;
    padding: 8px;
    border: none;
    background: #f1f1f1;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.playlist-tabs .tab-btn.active {
    background: #0073e6;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Kingtube tabs */
.playlist-tab-content {
    display: none;
    max-height: 780px;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-right: 5px;
    position: relative;
    margin-top: 20px;
}

.playlist-tab-content.active {
    display: block;
}

/* Spinner always visible at bottom */
.loading-spinner {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    z-index: 5;
    display: flex;
    justify-content: center;
    padding: 14px 0;
}

/* Spinner animation */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--primary-color, #007bff);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Optional: nice scrollbar */
.playlist-tab-content::-webkit-scrollbar {
    width: 6px;
}

.playlist-tab-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.playlist-tab-content::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
}


.kt-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    margin-left: 12px;
}

.kt-tabs button {
    padding: 6px 14px;
    border-radius: 12px;
    background-color: var(--color-white);
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    border: 2px solid transparent;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.kt-tabs button:hover {
    background-color: #f5f5f5;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transform: scale(1.03);
}

.kt-tabs button.active {
    color: var(--color-primary);
    border-color: #1A75BB33;
    transform: scale(1.03);
}


.video-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 0;
}

.video-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 6px 8px;
    border-radius: 8px;
}

.video-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.playlist-thumb {
    flex-shrink: 0;
    position: relative;
    width: 160px;
    height: 85px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #eee;
    display: block;
}

.video-play-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 27px;
    height: 27px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.playlist-thumb:hover .video-play-circle {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.video-play-circle i {
    color: #fff;
    font-size: 12px;
    pointer-events: none;
}


.playlist-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    object-position: center;
    margin: 0;
}

.video-item:hover .playlist-thumb img {
    transform: scale(1.05);
}

.playlist-meta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* or a fixed value like 120px */
}

/* Title */
.playlist-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 5px;
}

.playlist-title a {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    display: inline-block;
    padding-top: 2px;
    padding-bottom: 2px;
    color: inherit;
    text-decoration: none;
}

.playlist-title a:hover {
    color: #065fd4;
}

.playlist-channel {
    font-size: 11px;
    font-weight: 400;
    margin-bottom: -2px;
}

.playlist-stats {
    display: flex;
    flex-direction: column;
    align-items: start;
    font-size: 10px;
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    color: #606060;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.video-content__main {
    width: 100%;
    box-sizing: border-box;
}

.end-text {
    text-align: center;
    padding: 12px;
    color: #777;
}

/* Video's Description */
.video-description {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    overflow: hidden;
    transition: all 0.3s ease;
}

.show-more-btn {
    background: none;
    border: none;
    color: var(--color-black);
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    padding: 4px 0;
    transition: color 0.3s ease;
    display: block;
}

.show-more-btn:hover {
    color: var(--color-primary);
}

.video-tags {
    margin-bottom: 10px;
}

.tag-link {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 3px 0;
}

.video-tags .tag-link:hover {
    border-color: var(--color-primary);
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(1.03);
}

.default-tag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    cursor: default;
    transition: all 0.3s ease;
    border: 1px solid #D9D9D9;
    background-color: #fff;
}

.default-tag i {
    font-size: 16px;
}

.video-bread-crumb a {
    color: #B6B6B6;
    text-decoration: none;
    position: relative;
    padding-right: 8px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}

.video-bread-crumb a:hover {
    text-decoration: underline;
}

.video-bread-crumb a:not(:last-child)::after {
    content: "/";
    color: #B6B6B6;
    position: absolute;
    right: 0;
}

/* Video comments */
.video-comments {
    margin: 15px 0;
    /* box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.08); */
    border-radius: 5px;
}

.comment-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.comment-avatar .avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #00b0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.comment {
    padding-left: 29px;
    padding-bottom: 12px;
}

.comment-box {
    flex: 1;
    position: relative;
}

.comment-box textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    resize: none;
    background: transparent;
    height: auto;
}

.comment-box textarea:focus {
    border-color: var(--color-black);
}

.comment-actions {
    display: none;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 8px;
}

.comment-actions .cancel-btn {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.comment-actions .cancel-btn:hover {
    color: var(--color-white);
    background-color: var(--color-red);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


.comment-actions .submit-btn {
    background-color: #ddd;
    border: none;
    color: #000;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn.active {
    color: var(--color-white);
    background-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.count-comment {
    font-size: 25px;
    font-weight: 700;
    margin-left: 13px;
}

/* Single Image template */
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.wrapper i.button {
    position: absolute;
    width: 36px;
    height: 36px;
    background-color: rgba(225, 225, 225, 0.25);
    border-radius: 50%;
    color: #fff;
    align-items: center;
    line-height: 36px;
    cursor: pointer;
    font-size: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s linear;
    z-index: 100;
    text-align: center;
}

.wrapper i.button:active {
    transform: scale(0.94) translateY(-50%);
}

i#prev {
    left: 25px;
}

i#next {
    right: 25px;
}

.image-container {
    max-width: 924px;
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
    background-color: #353535;
}

.image-container .image-carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}

.image-container .image-carousel img {
    width: 100%;
    min-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.slide-counter {
    text-align: center;
    margin-top: 6px;
    display: inline-block;
    padding: 3px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #007bff, #00b4d8);
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.toggle-fullscreen {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    background-color: rgba(225, 225, 225, 0.8);
    z-index: 200;
    cursor: pointer;
}

.toggle-fullscreen:hover {
    background-color: rgba(225, 225, 225, 1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.fullscreen-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    z-index: 300;
    backdrop-filter: blur(6px);
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.fullscreen-controls i {
    cursor: pointer;
    transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.fullscreen-controls i:hover {
    transform: scale(1.25);
    color: #00b4d8;
    opacity: 0.9;
}

.fullscreen-controls i:active {
    transform: scale(0.9);
    opacity: 0.7;
}

.fullscreen-controls .fs-counter {
    font-weight: 600;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fullscreen-controls:hover .fs-counter {
    opacity: 1;
    transform: scale(1.05);
}

.document {
    width: 100%;
    background-color: #353535;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid #404040;
    margin: 20px 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Extra large screens (≥1920px or 2560px) */
@media (min-width: 1920px) {

    .video-bread-crumb a,
    .playlist-channel,
    .content-11-post-views,
    .content-11-user {
        font-size: 15px;
    }

    .video-playlist-container .mix-subtitle {
        font-size: 14px;
        line-height: 25px;
    }

    .header h2 {
        font-size: 20px;
    }
    .post-meta span {
        font-size: 1.2rem;
    }
    .video-description {
        font-size: 1.1rem;
    }
    .kt-tabs button {
        font-size: 1rem;
    }
}

@media all and (max-width: 1200px) {
    .video-content {
        grid-template-columns: 2fr 1fr;
        padding: 15px;
    }
}

@media all and (max-width: 1024px) {
    .video-content {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .comment-wrapper {
        flex-direction: column !important;
        align-items: stretch !important;
    }
}

@media all and (max-width: 769px) {
    .video-content {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}

@media all and (max-width: 575px) {
    .comment-wrapper {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .playlist-info h4 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: calc(2em * 2);
    }

    .playlist-info {
        gap: 5px;
    }

    .video-item {
        gap: 10px;
    }

    .playlist-title a {
        padding: 2px 3px;
        width: 87%;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: calc(2em * 2);
    }

    .playlist-tab-content {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .video-playlist {
        border-radius: 0;
    }

    .video-content__main .video-title-container {
        width: 380px;
        gap: 10px;
        padding-bottom: 0px;
    }

    .video-playlist-container {
        width: 62.5%;
        transform: translateX(-17px);
    }

    .video-content__main .video-title-container .date-publish {
        flex-direction: column;
        gap: 15px;
    }

    .entry-header .entry-title {
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
    }

    .post-meta {
        margin-top: 0;
    }

    .video-bread-crumb a {
        font-size: 8px;
    }

    .post-meta span {
        margin: 0;
        font-size: 12px;
    }

    .single-boxes {
        margin-left: -7px;
        font-size: 10px;
    }

    .king-reactions-icon {
        font-size: 12px;
        padding: 4px 8px;
    }

    .video-tags {
        margin: 0;
        align-items: center;
        display: flex;
        justify-content: center;
        gap: 5px;
    }

    .tag-link {
        font-size: 10px;
        padding: 3px 10px;
        margin: 2px 0;
    }

    .default-tag i {
        font-size: 10px;
    }

    .default-tag {
        width: 30px;
        height: 30px;
    }

    .count-comment {
        font-size: 12px;
        margin-left: 5px;
    }

    #comment::placeholder {
        font-size: 10px;
    }

    .playlist-channel,
    .playlist-info .playlist-author {
        font-size: 12px;
    }

    .kt-tabs button {
        font-size: 14px;
        padding: 4px 12px;
    }

    .video-list {
        padding: 0;
        width: 395px;
    }

    .image-container {
        max-width: 613px;
    }

    .image-container .image-carousel img {
        width: 100%;
    }

    .wrapper.fullscreen-active {
        position: fixed;
        inset: 0;
        background: #000;
        z-index: 9999;
    }

    .wrapper.fullscreen-active .image-container {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vh;
        height: 100vw;
        transform: translate(-50%, -50%) rotate(90deg);
        transform-origin: center;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .wrapper.fullscreen-active .image-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    /* .wrapper.fullscreen-active .image-container {
        transform: rotate(90deg);
        transform-origin: center center;
        width: 100vh;
        height: 100vw;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .wrapper.fullscreen-active .image-container img {
        transform: rotate(90deg);
        width: 100vh;
        height: 100vw;
        object-fit: contain;
    } */
}

@media all and (max-width: 479px) {
    .king-share-dropdown {
        padding: 0 5px;
        font-size: 12px;
    }

    .video-content {
        grid-template-columns: 1fr;
        padding: 0px;
        gap: 15px;
        margin: 0px auto;
    }

    .video-content__main {
        width: 100%;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
        border-radius: 0px;
    }

    .video-content__main .video-title-container {
        width: 100%;
        gap: 10px;
        padding-bottom: 0px;
    }

    .video-content__main .video-title {
        padding: 10px;
    }

    .video-playlist-container {
        width: 100%;
        overflow-x: hidden;
        transform: translateX(0);
    }

    .video-playlist h2 {
        font-size: 13px;
    }

    .submit-btn.active,
    .comment-actions .cancel-btn {
        font-size: 12px;
    }

    .entry-header .entry-title {
        margin-bottom: 10px;
    }
}

@media all and (max-width: 330px) {
    .video-content {
        grid-template-columns: 1fr;
        transform: translateX(0);
        padding: 5px;
        gap: 10px;
        margin: 0 auto;
    }

    .video-content__main {
        width: 100% !important;
        padding: 5px !important;
        overflow-x: hidden;
    }

    .video-title-container {
        font-size: 14px;
    }

    .title h1 {
        font-size: 18px;
        line-height: 1.3;
    }

    .user-reaction {
        flex-wrap: wrap;
        gap: 5px;
    }

    .video-content__main iframe,
    .video-content__main video {
        width: 100% !important;
        height: auto !important;
    }
}