@charset "utf-8";

html,
body {
    width: 100%;
    margin: 0;
    font-family: Arial;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

* {
    -moz-box-sizing: border-box;
         box-sizing: border-box;
}

h2 {
    color: #000000;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

a {
    text-decoration: none;
    color: rgb(0, 0, 24);
    cursor: pointer;
}

.ad-container {
    text-align: center;
    margin: 12px auto;
}

.gptslot {
    display: grid;
    place-items: center;
    min-height: 250px;
    max-width: 300px;
    margin-inline: auto;
    background-color: #3e3e3e;
}

.top-navigation {
    width: 100%;
    background-color: #111;
}

.navigation-bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    padding: 0 20px;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1000;
}

.nav-section--left,
.nav-section--center,
.nav-section--right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    line-height: 40px;
}

.nav-section--center {
    width: 160px;
}

.nav-element {
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin: 0 20px;
    position: relative;
    padding: 10px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    line-height: 40px;
}

.nav-element:hover {
    -webkit-transform: skewX(-10deg);
            transform: skewX(-10deg);
    background-color: #2ecc71;
}

.nav-element.nav-dropdown {
    position: relative;
}

.nav-link-text {
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.brand-logo,
.footer-logo {
    width: 160px;
    height: 60px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../../images/logo.5fa83ae.png);
}

.all-content-btn {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin: 0 20px;
    padding: 10px 16px;
    position: relative;
    display: inline-block;
    -webkit-transform: skewX(10deg);
            transform: skewX(10deg);
    background-color: #27ae60;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.all-content-btn span {
    display: inline-block;
    -webkit-transform: skewX(-10deg);
            transform: skewX(-10deg);
}

.all-content-btn:hover {
    background-color: #147e41;
}

.search-area {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.search-trigger {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    margin: 10px 0;
    width: 40px;
    aspect-ratio: 1;
    position: relative;
    display: inline-block;
    cursor: pointer;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    background-image: url(../../images/search.e135023.png);
}

.search-panel {
    position: absolute;
    top: 100%;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    background-color: #111;
    -webkit-transform: skewX(-10deg);
            transform: skewX(-10deg);
    -webkit-transform-origin: top right;
            transform-origin: top right;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 4px;
    overflow: hidden;
}

.search-panel.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: skewX(-10deg) translateX(0);
            transform: skewX(-10deg) translateX(0);
}

.search-action {
    padding: 8px 12px;
    background-color: #2ecc71;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    -webkit-transform: skewX(0deg) translateX(0);
            transform: skewX(0deg) translateX(0);
    white-space: nowrap;
    border-right: 1px solid #111;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}

.search-action:hover {
    background-color: #27ae60;
    -webkit-transform: skewX(10deg) scale(1.05);
            transform: skewX(10deg) scale(1.05);
}

.search-field {
    padding: 8px 16px;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
    -webkit-transform: skewX(10deg);
            transform: skewX(10deg);
    width: 200px;
}

.search-field::-webkit-input-placeholder {
    color: #aaa;
}

.search-field::-moz-placeholder {
    color: #aaa;
}

.search-field::placeholder {
    color: #aaa;
}

.nav-element.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #111;
    min-width: 150%;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1001;
    -webkit-transform-origin: top left;
            transform-origin: top left;
}

.nav-element.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu .category-item {
    height: 30px;
    line-height: 30px;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    display: block;
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
    position: relative;
    z-index: 1;
    font-size: 12px;
}

.dropdown-menu .category-item:hover {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
    background-color: #2ecc71;
}

.footer-container {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px;
}

.random-video-btn-container {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
            align-items: flex-end;
}

.random-video-btn {
    background: none;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.random-video-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-divider {
    border: none;
    border-top: 1px solid #6f706d;
    margin: 30px 0;
}

.more-sharing-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    gap: 30px;
    position: relative;
}

.sharing-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    gap: 40px;
}

.sharing-column {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
    min-width: 200px;
}

.sharing-column p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    word-break: break-word;
}

.footer-nav-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
            justify-content: flex-end;
    gap: 30px;
    margin-top: 20px;
    white-space: nowrap;
}

.footer-link {
    color: blue;
    text-decoration: none;
    font-size: 16px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #cccccc;
}

.copyright-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
            justify-content: flex-end;
    gap: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: #999;
}

.copyright-info a {
    color: blue;
}

.copyright-info span {
    white-space: nowrap;
}

.main-container {
    min-height: -webkit-calc(100vh - 100px);
    min-height: calc(100vh - 100px);
}

.content-wrapper {
    min-height: -webkit-calc(100vh - 100px);
    min-height: calc(100vh - 100px);
}

.video-common-oct2card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    color: #fff;
    padding-bottom: 20px;
}

.video-common-oct2card .media-frame,
.video-common-oct2card .media-poster {
    width: 100%;
    height: 100%;
    aspect-ratio: 1.5;
}

.video-common-oct2card .publish-date {
    color: #979797;
    font-size: 12px;
    padding: 10px;
}

.video-common-oct2card .media-title-section {
    -webkit-line-clamp: 2;
    white-space: wrap;
    line-height: 13px;
    height: 26px;
}

.video-common-oct2card .media-title-section p {
    margin: 0;
    padding: 0 10px;
}

.video-common-oct2card .detail-arrow {
    display: none;
}

.more-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    gap: 10px;
    padding: 10px 0 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #000;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.more-container p {
    font-size: 12px;
    margin: 0 10px;
}

.more-container .trigger-button {
    width: 12px;
    aspect-ratio: 1;
    background-image: url(../../images/enter.4ccb28b.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.more-container:hover .trigger-button {
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
}

.section-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    border-bottom: 1px solid #c9c8c8;
    padding-top: 40px;
}

.title-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}

.media-title-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    gap: 10px;
    font-weight: 600;
}

.media-title-section p {
    max-height: 36px;
    overflow: hidden;
    margin: 0;
    padding: 0 10px;
}

.detail-arrow {
    min-width: 40px;
    aspect-ratio: 1;
    background-image: url(../../images/go.e8c69c6.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

@media screen and (max-width:900px) {
    .navbar {
        padding: 0 15px;
    }

    .search-input {
        width: 150px;
    }

    .more-sharing-section {
        position: static;
    }

    .random-video-btn-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
        gap: 10px;
    }

    .sharing-columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
        gap: 20px;
    }

    .footer-nav-links {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
                justify-content: center;
        -webkit-flex-wrap: wrap;
                flex-wrap: wrap;
    }

    .copyright-info {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
                justify-content: center;
        -webkit-flex-wrap: wrap;
                flex-wrap: wrap;
    }

    .nav-section--left {
        display: none;
    }

    .title-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
           -moz-box-align: start;
                align-items: flex-start;
        gap: 10px;
    }
}

@media screen and (max-width:480px) {
    .search-input {
        width: 120px;
    }

    .video-common-oct2card {
        height: 187px;
    }

    h2 {
        font-size: 36px;
        text-align: center;
    }

    .title-container {
        width: 100%;
    }
}
.high-view-container {
    /* background-color: #eae8e4; */
}

.carousel-container-item {
    /* background-color: #efefef; */
}

.like-container {
    background-color: #000;
    padding: 20px;
}

.latest-container {
    background-color: #191919;
    padding: 20px;
}

.wrapper-container {
    padding: 50px 0;
    background-image: url(../../images/combine-color.8792559.png);
    background-size: 100% 100%;
    background-position: center;
}

.trending-content-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    border-radius: 15px;
    margin-top: 10px;
    padding: 0 10px;
}

.video-high-view-oct2card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    position: relative;
}

.media-serial {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 800;
    font-size: 46px;
    color: #d8d5d5;
    z-index: 1;
}

.video-high-view-oct2card .media-frame {
    aspect-ratio: 0.8;
    width: 100%;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.video-high-view-oct2card:nth-child(2n) .media-frame {
    margin-top: 80px;
}

.video-high-view-oct2card:nth-child(2n) .media-serial {
    top: 40px;
}

.video-high-view-oct2card .play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 80px;
    aspect-ratio: 1;
    background-image: url(../../images/play.ca99313.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.video-high-view-oct2card .media-poster {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: inherit inherit 0 0;
    z-index: 2;
}

.media-category-tag {
    margin: 10px 0;
}

.carousel-box {
    position: relative;
}

.carousel-container-item .title-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    height: 110px;
}

.carousel-container-item .section-header {
    border: none;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.3;
    -webkit-transition: background-image 1s ease-in-out;
    transition: background-image 1s ease-in-out;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    -webkit-perspective: 1500px;
            perspective: 1500px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    cursor: pointer;
    -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transform-origin: center;
            transform-origin: center;
    overflow: hidden;
    border: 3px solid #fff;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.carousel-item.center {
    -webkit-transform: translate(-50%, -50%) translateX(0) scale(1) translateZ(200px);
            transform: translate(-50%, -50%) translateX(0) scale(1) translateZ(200px);
    z-index: 100;
    opacity: 1;
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
}

.carousel-item.left,
.carousel-item.right {
    width: 280px;
    height: 380px;
    border-radius: 14px;
}

.carousel-item.left {
    -webkit-transform: translate(-50%, -50%) translateX(-220px) scale(0.85) translateZ(50px);
            transform: translate(-50%, -50%) translateX(-220px) scale(0.85) translateZ(50px);
    z-index: 99;
    opacity: 0.9;
}

.carousel-item.right {
    -webkit-transform: translate(-50%, -50%) translateX(220px) scale(0.85) translateZ(50px);
            transform: translate(-50%, -50%) translateX(220px) scale(0.85) translateZ(50px);
    z-index: 99;
    opacity: 0.9;
}

.carousel-item.left-far,
.carousel-item.right-far {
    width: 240px;
    height: 340px;
    border-radius: 12px;
}

.carousel-item.left-far {
    -webkit-transform: translate(-50%, -50%) translateX(-380px) scale(0.7) translateZ(20px);
            transform: translate(-50%, -50%) translateX(-380px) scale(0.7) translateZ(20px);
    z-index: 98;
    opacity: 0.7;
}

.carousel-item.right-far {
    -webkit-transform: translate(-50%, -50%) translateX(380px) scale(0.7) translateZ(20px);
            transform: translate(-50%, -50%) translateX(380px) scale(0.7) translateZ(20px);
    z-index: 98;
    opacity: 0.7;
}

.carousel-item:not(.center):not(.left):not(.right):not(.left-far):not(.right-far) {
    width: 200px;
    height: 300px;
    border-radius: 10px;
    -webkit-transform: translate(-50%, -50%) translateX(var(--x-offset)) scale(0.55) translateZ(10px);
            transform: translate(-50%, -50%) translateX(var(--x-offset)) scale(0.55) translateZ(10px);
    z-index: 97;
    opacity: 0.5;
}

.must-watch-list-container {
    padding: 20px 0;
    position: relative;
}

.must-watch-list-container .section-header {
    padding: 0 20px;
    width: 100%;
    background-color: transparent;
    border: none;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
}

.must-watch-carousel-section {
    position: relative;
    width: 100%;
    padding: 20px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    background-color: transparent;
}

.must-watch-carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
}

.must-watch-carousel-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.must-watch-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.must-watch-carousel-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
    -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 0;
}

.must-watch-carousel-item.center {
    width: 600px;
    height: 300px;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    z-index: 100;
    opacity: 1;
    border: none;
    border-radius: 0;
}

.must-watch-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #2ecc71;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 3;
}

.must-watch-nav-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    z-index: 500;
    opacity: 0.8;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.must-watch-prev {
    left: 20px;
    background-image: url(../../images/left_0.bbc93af.png);
}

.must-watch-next {
    right: 20px;
    background-image: url(../../images/right_0.962e325.png);
}

.must-watch-nav-arrow:hover {
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1.1);
            transform: translateY(-50%) scale(1.1);
}

.must-watch-info-section {
    position: relative;
    padding: 20px 0;
    margin-top: 20px;
}

.must-watch-title-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.must-watch-main-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    height: 64px;
    line-height: 32px;
}

.must-watch-description {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    height: 26px;
    line-height: 13px;
    overflow: hidden;
    background-color: white;
}

.must-watch-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
}

.carousel-item:hover {
    -webkit-filter: brightness(1.2) contrast(1.1);
            filter: brightness(1.2) contrast(1.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.carousel-item.center:hover {
    -webkit-transform: translate(-50%, -50%) translateX(0) scale(1.05) translateZ(220px);
            transform: translate(-50%, -50%) translateX(0) scale(1.05) translateZ(220px);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.7),
        0 12px 30px rgba(0, 0, 0, 0.5),
        0 0 0 8px rgba(255, 255, 255, 0.3),
        inset 0 0 45px rgba(255, 255, 255, 0.2);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 60px;
    aspect-ratio: 1;
    color: white;
    font-size: 28px;
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 500;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.carousel-controls:hover {
    -webkit-transform: translateY(-50%) scale(1.1);
            transform: translateY(-50%) scale(1.1);
}

.left-control {
    left: 20px;
    background-image: url(../../images/left_1.3add815.png);
}

.right-control {
    right: 20px;
    background-image: url(../../images/right_1.8d0f9c1.png);
}

.like-container .section-header,
.latest-container .section-header {
    background-color: transparent;
    border: none;
}

.like-container .section-header h2,
.latest-container .section-header h2 {
    color: #fff;
}

.video-most-like-oct2card {
    aspect-ratio: 0.5;
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
}

.video-most-like-oct2card .media-frame {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-most-like-oct2card .media-poster {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-most-like-oct2card .media-title-section {
    position: absolute;
    color: #fff;
    top: 10px;
    left: 10px;
    right: 10px;
    font-size: 12px;
}

.video-most-like-oct2card .media-title-section p {
    text-align: center;
    -webkit-line-clamp: 2;
    white-space: wrap;
    line-height: 13px;
    max-height: -webkit-calc(13px * 2);
    max-height: calc(13px * 2);
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
}

.video-most-like-oct2card .media-title-section .detail-arrow {
    display: none;
}

.latest-container-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}

.latest-container-item .section-header {
    min-width: 30%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    gap: 10px;
}

.latest-container-item .section-header h2 {
    font-size: 36px;
}

.latest-container-item .section-header .trigger-button {
    padding: 10px 20px;
    background-color: #4aa75e;
    display: inline-block;
    border-radius: 20px;
    font-weight: 600;
}

.popular-favorites-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    border-radius: 15px;
    margin-top: 10px;
    padding: 20px;
}

.recent-updates-primary,
.recent-updates-secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    border-radius: 15px;
    margin-top: 10px;
    padding: 20px;
}

@media screen and (max-width: 900px) {
    .section-header h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 480px) {

    .must-watch-carousel-item.center {
        width: -webkit-calc(100% - 150px);
        width: calc(100% - 150px);
    }

    .latest-container-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
    }

    .video-high-view-oct2card {
        height: 455px;
    }

    .video-most-like-oct2card {
        height: 240px;
        aspect-ratio: auto;
    }

    .trending-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .popular-favorites-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
