*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    line-height: inherit;
    box-sizing: inherit;
}
a {
    text-decoration: none;
}
* {
    box-sizing: border-box; /* Đảm bảo các phần tử không vượt qua kích thước màn hình */
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Ngăn lướt ngang */
}

body {
    background-color: #4d586b;
}
/* Cha cần position: relative để con định vị */
.menu-item.drop,
.menu-item2.drop,
.menu-item3.drop {
    position: relative;
}

/* Ẩn tất cả menu con ban đầu */
.sub-menu,
.sub-menu2,
.sub-menu3 {
    display: none;
    position: absolute;
    background: #222;
    color: white;
    min-width: 200px;
    z-index: 999;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Cấp 1 hiển thị xuống dưới */
.sub-menu {
    top: 100%;
    left: 0;
}

/* Cấp 2 hiển thị sang phải */
.sub-menu2 {
    top: 0;
    left: 100%;
}

/* Cấp 3 cũng hiển thị sang phải từ cấp 2 */
.sub-menu3 {
    top: 0;
    left: 100%;
}

/* Style các item con */
.sub-menu li,
.sub-menu2 li,
.sub-menu3 li {
    padding: 8px 15px;
}

.sub-menu li a,
.sub-menu2 li a,
.sub-menu3 li a {
    color: white;
    text-decoration: none;
    display: block;
}

.sub-menu li:hover,
.sub-menu2 li:hover,
.sub-menu3 li:hover {
    background-color: #333;
}
.header__nav-close {
    display: none; /* Mặc định ẩn */
}

/* Hiện button khi màn hình nhỏ hơn hoặc bằng 768px (mobile/tablet) */
@media (max-width: 768px) {
    .header__nav-close {
        display: block;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1000;
        color: #fff;
    }
}

.breadcrumb {
    color: #fff;
    font-size: 18px;
    margin: 10px 0;
}

.breadcrumb a {
    color: orange;
    text-decoration: none;
    margin-right: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    margin-right: 3px;
}

.breadcrumb span {
    color: #fff;
}

:root {
    --bg-panel: rgba(0, 0, 0, 0.8);
    --bg-btn: rgba(0, 0, 0, 0.8);
    --clr-yellow: #ffd700;
    --clr-white: #ffffff;
}

/* Panel chứa view+user */
.status-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    background: var(--bg-panel);
    padding: 8px 12px;
    border-radius: 8px;
    font-family: sans-serif;
    font-size: 0.9rem;
    z-index: 1000;
}
.status-item {
    display: flex;
    align-items: center;
    gap: 4px;
}
.status-item.view svg,
.status-item.view .count {
    color: var(--clr-yellow);
}
.status-item.user svg,
.status-item.user .count {
    color: var(--clr-white);
}
.status-item svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* --- Scroll-Top Button --- */
.scroll-top {
    position: fixed;
    bottom: 80px; /* Positioned above the status-panel */
    right: 20px;
    width: 50px; /* Set width to 50px */
    height: 50px; /* Set height to 50px */
    background: var(--bg-btn);
    border: none;
    border-radius: 6px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001; /* Ensure it is above the status-panel */
}
.scroll-top svg {
    width: 20px; /* Adjusted for better fit */
    height: 20px;
    fill: var(--clr-white);
    color: white;
}
.scroll-top.show {
    display: flex;
}

/* --- Mobile nhỏ hơn nữa --- */
@media (max-width: 400px) {
    .status-panel {
        bottom: 12px;
        right: 12px;
        padding: 3px 6px;
        font-size: 0.7rem;
    }
    .status-item svg {
        width: 12px;
        height: 12px;
    }
    .scroll-top {
        bottom: 60px;
        right: 12px;
        width: 28px;
        height: 28px;
    }
    .scroll-top svg {
        width: 10px;
        height: 10px;
    }
}
:root {
    --color-accent: #fffff;
    --backgroundcolor: #26282c;
    --shadow-dark: #18191b;
    --shadow-light: #34373d;
    --blue: rgba(0, 146, 172, 1);
    --card-transition: 0.3s ease;
    --slider-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --card-tilt-max: 25deg;
}

/* Modal */
.story-modal {
    position: fixed;
    top: 80px;
    right: 60px;
    bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
    z-index: 999;
    transition: opacity 0.3s ease-in-out;
    width: 400px;
    max-height: 70vh;
}

.story-modal__content {
    background: #4d586b;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.story-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
}

.results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.library-card {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.library-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.library-card__info {
    flex-grow: 1;
}

.library-card__info h3 {
    font-size: 14px;
    margin: 0;
    font-weight: bold;
    color: #333;
}

.library-card__meta {
    font-size: 12px;
    color: #777;
}

.view-all {
    margin-top: 10px;
    text-align: center;
}

.view-all a {
    color: blue;
    text-decoration: underline;
    font-size: 14px;
}

/* Animation Effects */
.hidden {
    display: none;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 8px;
    text-decoration: none;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.2);
    transition: background 0.3s, transform 0.2s;
}

.search-result-item:hover {
    background: #2c0000;
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
}

.search-result-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(80%) contrast(1.2);
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.search-result-info {
    flex: 1;
    color: #eee;
}

.search-result-info h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #ff4444;
    text-shadow: 0 0 4px #000;
}

.search-result-meta {
    font-size: 12px;
    color: #aaa;
    margin-top: 4px;
    font-style: italic;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .search-result-item img {
        width: 50px;
        height: 50px;
    }

    .search-result-info h4 {
        font-size: 13px;
    }

    .search-result-meta {
        font-size: 11px;
    }
}
@media (max-width: 768px) {
    .story-modal {
        position: fixed;
        /* top: 150px; */
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    .story-modal__content {
        /* width: 90%; */
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 10px;
        padding: 16px;
        position: relative;
        margin-bottom: 180px;
    }

    .story-modal__close {
        position: absolute;
        top: 10px;
        right: 16px;
        font-size: 24px;
        cursor: pointer;
        color: #333;
    }

    .story-modal__results {
        margin-top: 40px;
        font-size: 16px;
    }

    .story-modal__view-all {
        text-align: center;
        margin-top: 20px;
    }

    .story-modal__view-all a {
        color: #007bff;
        text-decoration: underline;
        font-weight: bold;
    }

    .hidden {
        display: none;
    }
}
.snake-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    box-shadow: rgba(200, 161, 37) 0px 0 20px -2px,
        rgba(200, 161, 37, 0.2) 0px 3px 13px -3px;
    overflow: hidden;
    border-radius: 20px;
}
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    align-self: center;
    justify-self: center;
    width: 90%;
    perspective: 1000px;
}
.carousel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 613px;
}
.carousel .card {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease, z-index 0.3s;
    cursor: pointer;
    transform-style: preserve-3d;
}
.carousel .card .front,
.carousel .card .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}
.carousel .card .back {
    transform: rotateY(180deg);
}
@media (max-width: 480px) {
    .carousel {
        height: 152px;
    }

    .carousel .card {
        height: 152px;
        width: 400px;
    }

    .carousel .card .front,
    .carousel .card .back {
        height: 100%;
        width: 100%;
    }
}

.flipped {
    transform: rotateY(180deg);
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00000000;
    border: none;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    padding: 5px;
    user-select: none;
    z-index: 100;
    color: white;
}
.arrow-left {
    left: -45px;
}
.arrow-right {
    right: -45px;
}
.carousel-indicator {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}
.indicator {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}
.active {
    opacity: 1;
}

.snake-search {
    width: 150px;
    height: 45px;
    background-color: #1e272e;
    /* margin: 6vh auto; */
    right: 0;
    /* position: absolute; */
    /* transform: translate(-50%, -50%); */
    border-radius: 4rem;
    /* padding: 10px; */
}
.snake-right {
    /* position: relative; */
    width: 20%;
}
.search__box {
    float: left;
    width: 0;
    height: 4rem;
    display: inline;
    background: none;
    color: #f7f7f7;
    font-size: 15px;
    border-radius: 2rem;
    outline: none;
    border: none;
    position: relative;
    opacity: 1;
    transition: all 0.75s ease-in;
    cursor: pointer;
    /* border: 2px solid tomato; */
    /*   margin-top: 5px; */
    margin-top: -10px;
}

.search__icon {
    box-sizing: border-box;
    float: right;
    font-size: 1.5rem;
    display: inline-block;
    justify-content: center;
    align-items: center;
    margin-left: 0.8rem;
    margin-top: 0;
    cursor: pointer;
    position: absolute;
    color: #fa983a;
    transition: all 0.25s ease-in;
    padding: 0.7rem;
    border-radius: 50%;
}

.snake-search:hover > .search__box {
    width: 75%;
    padding: 0 1rem;
}

.snake-search:hover > .search__icon {
    background-color: #eee;
}

.show {
    width: 85%;
    border: 1px solid red;
}

/* Mặc định, các phần tử sẽ bị ẩn */
.animation-content {
    opacity: 0;
    transform: translateX(-50px); /* Di chuyển từ dưới lên */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Mượt mà khi thay đổi */
}

/* Định nghĩa keyframes cho hiệu ứng fadeIn */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50px); /* Bắt đầu từ dưới */
    }
    100% {
        opacity: 1;
        transform: translateX(0); /* Di chuyển về vị trí ban đầu */
    }
}
/* Định nghĩa keyframes cho hiệu ứng fadeIn */
@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateX(0); /* Bắt đầu từ dưới */
    }
    100% {
        opacity: 0;
        transform: translateX(-50px); /* Di chuyển về vị trí ban đầu */
    }
}

/* Class để áp dụng hiệu ứng fadeIn */
.animated.fadeIn {
    animation: fadeIn 1s forwards;
}
/* Class để áp dụng hiệu ứng fadeIn */
.animated.fadeOut {
    animation: fadeout 1s forwards;
}

.snake-top-view {
    padding: 15px 0 15px 0;
    display: flex;
    justify-content: space-around;
    background-color: #000;
    align-items: center;
}
@media (min-width: 480px) and (max-width: 767px) {
    .snake-top-view {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding: 12px 16px;
    }
}

@media (min-width: 768px) {
    .snake-top-view {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 24px;
        padding: 15px 32px;
    }
}
.snake-top-view .logo img {
    max-height: 76px;
}
.snake-topview-banner img {
    border: 2px solid #ffc20e;
    box-sizing: border-box;
    width: 100%;
}
.snake-navigation {
    /* margin-top: 15px; */
}
.fixed-menu {
    position: fixed;
    top: 0; /* Hoặc bạn có thể thay đổi khoảng cách từ trên cùng */
    left: 0;
    margin-top: 0 !important;
    z-index: 10000;
}

.wrap-nav {
    max-width: 100% !important;
    width: 100%;
}
.main-menu {
    /* background: #0e0d0f; */
    /* border-bottom: 3px solid #ffc20e; */
    width: 100% !important;
}
.snake-menu {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.snake-menu .menu-item {
    list-style: none;
    position: relative;
}
.snake-menu .menu-item a:hover {
    color: #ffc20e !important;
    background: black;
}
.snake-menu .menu-item2 {
    list-style: none;
    position: relative;
}
.snake-menu .menu-item3 {
    list-style: none;
    position: relative;
}
.snake-menu .menu-item2 a:hover {
    color: #ffc20e !important;
    background: black;
}
.snake-menu .menu-item3 a:hover {
    color: #ffc20e !important;
    background: black;
}
.snake-menu .active a {
    color: #ffc20e !important;
    background: black;
}
.snake-menu .menu-item a {
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    -webkit-transition: all 0.4s;
    font-weight: 600;
}
.snake-menu .menu-item a i {
    font-size: 25px;
}
/* Đặt style mặc định cho menu con (ẩn menu) */
.sub-menu {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #0e0d0f;
    border-bottom: 3px solid #ffc20e;
    padding: 10px;
    z-index: 10;
    width: 250px;
}
.sub-menu2 {
    display: none;
    position: absolute;
    left: 100%;
    width: 100%;
    top: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #0e0d0f;
    border-bottom: 3px solid #ffc20e;
    /* margin: 10px; */
    z-index: 10;
    width: 250px;
}
.sub-menu3 {
    display: none;
    position: absolute;
    left: 100%;
    width: 100%;
    top: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #0e0d0f;
    border-bottom: 3px solid #ffc20e;
    /* margin: 10px; */
    z-index: 10;
    width: 250px;
}

/* Style cho li cha có dropdown */
.menu-item.drop {
    position: relative;
}
.menu-item2.drop {
    position: relative;
}
.menu-item3.drop {
    position: relative;
}

/* Style cho các mục trong menu con */
.sub-menu li a {
    display: block;
    padding: 8px 12px;
    color: black;
    text-decoration: none;
}
.sub-menu2 li a {
    display: block;
    padding: 8px 12px;
    color: black;
    text-decoration: none;
}
.sub-menu3 li a {
    display: block;
    padding: 8px 12px;
    color: black;
    text-decoration: none;
}

.snake-slider {
    margin-top: 20px;
    padding: 45px 0px 45px 0;
}
.custom-control {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.custom-prev-icon,
.custom-next-icon {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.custom-prev-icon {
    transform: translateX(-2px);
}

.custom-next-icon {
    transform: translateX(2px);
}

.snake-content {
    display: flex;
    flex-direction: column;
}
.block-title {
    position: relative;
    margin-top: 20px;
    /* margin-bottom: 7px; */
    /* border-bottom: 3px solid #ffc20e; */
    /* padding-bottom: 8px; */
}
.block-title a {
    text-decoration: none;
    color: #fff;
}
.block-title span {
    z-index: 4;
    /* margin-left: 80px; */
    position: relative;
    padding: 8px 20px;
    color: #ffc20e;
    /* font-size: 20px !important; */
    /* font-weight: 300 !important; */
    /* background: #0e0d0f; */
    text-transform: uppercase;
    font-size: 23px;
    /* border-radius: 15px 15px 0 0; */
    font-weight: 800;
    /* padding: 9px; */
}
.box-content {
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.box-image {
    overflow: hidden;
    margin-bottom: 0;
    display: block;
}
.box-image img {
    transform: scale(1);
    width: 100%;
    max-height: 150px;
    transition: all 0.38s;
    -webkit-transition: all 0.38s linear;
}
.box2-image:hover img {
    transform: scale(1.1);
}

.box2-text {
    color: #000;
    border: 1px solid #00000026;
    border-radius: 0 0 10px 10px;
    padding: 0 10px 10px;
    height: 150px;
    font-size: 1em;
    line-height: 22px;
}
.box-content-title {
    padding-top: 10px;
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
    overflow: hidden;
    line-height: 25px;
}
.box-content-title a {
    color: #666;
    transition: all 1s linear;
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    -ms-transition: all 1s linear;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
}
.box-content .meta-item {
    margin-bottom: 5px;
}
.gia span {
    font-size: 1.3em;
    color: #b21117;
    font-weight: bold;
}
.meta-item.vi-tri {
    overflow: hidden;
    line-height: 20px;
}
.sidebar {
    margin-top: -5px;
}
.sidebar .block-content {
    border: 1px solid #ececec;
    border-radius: 4px;
    background: #fff;
    padding: 10px;
    line-height: 25px;
}
.home-content-3 {
    margin: 30px auto;
    background: #fff;
}
.home-content-3 ul {
    display: flex;
}
marquee li {
    float: left;
    list-style: none;
}

#footer-3 {
    background: black;
    color: #ffffff;
    padding: 20px 0;
    font-size: 13px;
    line-height: 25px;
    background: -webkit-radial-gradient(
        bottom center,
        circle farthest-side,
        #565653 0%,
        #0e0d0f 100%
    );
}

.footer .footer-inner-wrap {
    display: flex;
}
.footer-col {
    box-sizing: border-box;
    float: left;
}
@media only screen and (min-width: 1200px) {
    .snake-search-mobile {
        display: none;
    }
    .logo-mobile {
        display: none;
    }
    .v-col-lg-3 {
        width: 25%;
    }
}
.footer .footer-item {
    padding: 8px 15px;
    padding-bottom: 20px;
}
.v-form-item {
    margin-bottom: 10px;
}
.block-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    /* margin-bottom: 15px; */
    /* padding-left: 13px; */
    color: #ffffff;
    background: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Dưới 480px (mobile nhỏ) */
@media (max-width: 479px) {
    .block-title span {
        font-size: 16px;
    }
}

/* Từ 480px đến 768px (tablet và mobile lớn) */
@media (min-width: 480px) and (max-width: 768px) {
    .block-title span {
        font-size: 20px;
        padding: 7px 18px;
    }
}
@media (max-width: 480px) {
    .block-title {
        font-size: 14px; /* Giảm font nhỏ nữa cho điện thoại bé */
    }

    .slider-wrapper {
        margin: 0 10px !important;
        padding: 0;
    }
    .nav-btn {
        width: 0 !important;
    }
    .prev-btn {
        left: 0 !important;
    }
    .next-btn {
        right: 0 !important;
    }
}

.block-title .block-title-inner {
    position: relative;
}
input.v-form-field-type-text {
    border: 1px solid rgba(187, 187, 187, 0.5) !important;
    background: #fff;
    background-size: 15px;
    border-radius: 5px;
    padding: 9px 10px;
    font-size: 12px;
    font-family: tahoma;
    width: 100%;
    box-sizing: border-box;
}
.v-form-item.v-form-item-submit input {
    font-family: "Open Sans", arial;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    padding: 8px 25px;
    font-size: 12px;
    display: inline-block;
    width: 100%;
    background: #f78e05;
    border: 0;
    padding: 10px 50px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    margin: auto;
    display: block;
    border-radius: 3px;
    background: #ffc20e !important;
    /* color: #0e0d0f !important; */
    border: 2px solid;
    background: #ffc20e !important;
    /* color: #0e0d0f !important; */
    border: 2px solid;
}
.block-content ul li {
    color: #fff;
    text-decoration: none;
    transition: all 0.35s;
    -webkit-transition: all 0.35s;
    position: relative;
    padding-left: 15px;
    line-height: 25px;
    list-style: none;
}
#footer-3 a {
    text-decoration: none;
    color: #ffffff;
}

.hidden {
    display: none;
}

.btn-menu {
    position: absolute;
    cursor: pointer;
    width: 1.5em;
    height: 2em;
    background: transparent;
    top: 3px;
    left: 1em;
    outline: none;
    color: #fff;
}

.btn-menu::before,
.btn-menu::after {
    content: "";
    position: absolute;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-menu::before {
    width: 100%;
    height: 2px;
    top: 48%;
    -webkit-box-shadow: inset 0 0 0 1em, 0 -5px, 0 5px;
    box-shadow: inset 0 0 0 1em, 0 -5px, 0 5px;
}

.blog-title {
    margin: 0;
    font-size: 1.25em;
    text-align: center;
    font-weight: 400;
}

.menu-container {
    background: #353434;
    position: absolute;
    left: 0;
    right: 0;
    overflow: auto;
    max-height: 80vh;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    display: block;
    padding: 8px 12px;
    color: #fff;
    text-decoration: none;
}
#checkbox-menu:checked ~ .btn-menu::before {
    -webkit-box-shadow: inset 0 0 0 1em;
    box-shadow: inset 0 0 0 1em;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#checkbox-menu:checked ~ .btn-menu::after {
    width: 100%;
    height: 2px;
    top: 48%;
    -webkit-box-shadow: inset 0 0 0 1em;
    box-shadow: inset 0 0 0 1em;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#checkbox-menu:checked ~ .menu-container {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.v-toggle-menu {
    background: #ffc20e;
    border: 2px solid black;
    display: none;
}
.ListNews5-right-item-inner {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted silver;
}
.ListNews5-right-item-image {
    width: 30%;
}
.ListNews5-right-item-image img {
    width: 100%;
}
img.scale-05:hover {
    -ms-transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}
.ListNews5-right-item-text a {
    text-decoration: none;
    color: black;
    text-align: justify;
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: bold;
    /* font-family: "Open Sans", arial; */
    display: block;
    text-align: justify;
}
.ListNews5-right-item-text a:hover {
    color: #3f403e !important;
}
.ListNews5-right-item-text {
    width: 65%;
    margin-left: 2%;
}
.ListNews5-right-item-text-des {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Số dòng muốn hiển thị */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media only screen and (max-width: 1200px) {
    .v-toggle-menu {
        display: block;
        width: 55px;
        /* height: 40px; */
        border-radius: 2px;
        text-align: center;
        line-height: 40px;
        color: #fff;
        font-size: 23px;
        cursor: pointer;
        background-color: #ffc107;
        z-index: 100;
        box-sizing: border-box;
        position: static;
        margin-left: auto;

        /* Cố định kích thước */
        flex-shrink: 0;
        flex-grow: 0;
        border-radius: 20px;
        margin: 0;
    }
    .snake-search-desktop {
        display: none;
    }
    .logo-mobile {
        display: flex;
        padding: 5px;
        text-align: center;
        align-items: center;
        justify-content: space-between;
    }

    .logo-box img {
        height: 40px;
    }

    .search-box {
        display: flex;
        align-items: center;
        background: #222;
        border-radius: 20px;
        padding: 5px 10px;
        flex-grow: 1;
    }

    .search-box input {
        background: transparent;
        border: none;
        color: white;
        width: 100%;
    }

    .search-box i {
        color: orange;
        margin-left: 5px;
    }
    .snake-top-view .logo img {
        max-height: 50px;
    }
    .snake-search {
        height: 40px;
        padding: 0 8px;
    }

    .snake-search input.search__box {
        font-size: 12px;
    }

    .snake-search i.search__icon {
        font-size: 16px;
        margin-left: 5px;
    }
    .snake-menu {
        display: none;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        left: 0;
        position: fixed;
        z-index: 100;
        background: #0e0d0f;
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        height: 100vh;
        top: 0;
    }

    .show {
        display: block;
        opacity: 1;

        transform: translateY(0);
    }

    .snake-topview-banner img {
        display: none;
    }
    .content-left-item-content {
        height: fit-content;
    }
    .footer .footer-inner-wrap {
        flex-direction: column;
    }
}
.carousel-item {
    margin: 0;
}
.content-left-item {
    margin-top: 25px;
    background: #272525;
    box-shadow: rgba(200, 161, 37) 0px 0 20px -2px,
        rgba(200, 161, 37, 0.2) 0px 3px 13px -3px;
    border-radius: 20px;
    width: 100%;
}

@property --card-rotate-x {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --card-rotate-y {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.slider-container {
    position: relative;
    width: 100%;
    /* max-width: 1200px; */
    /* margin: 80px; */
    /* padding: 20px 0; */
}

.slider-wrapper {
    touch-action: pan-y;
    overflow: hidden;
    margin: 0 80px;
    padding: 30px 0;
}

.slider {
    display: flex;
    transition: transform var(--slider-transition);
}

.slide-group {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Tablet */
@media (max-width: 1024px) {
    .slide-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .post .content-left-item-content {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Small Tablet / Large Mobile */
@media (max-width: 768px) {
    .slide-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .slide-group {
        gap: 10px;
    }
    .slider .card img {
        height: auto !important;
    }
}

.slider .card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(var(--card-rotate-x))
        rotateY(var(--card-rotate-y));
    transition: all var(--card-transition);
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 1;
}

@media (max-width: 768px) {
    .slider .card {
        padding: 12px;
        font-size: 14px;
        transform: none; /* Loại bỏ hiệu ứng 3D để tránh giật lag hoặc lỗi cảm ứng */
        backdrop-filter: blur(5px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        height: 380.17px;
    }
}
.slider .card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.slide-group:hover .slider .card:not(:hover) {
    opacity: 0.5;
}

.slider .card img {
    width: 100%;
    height: 297px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .slider .card img {
        height: auto;
        border-radius: 6px;
        margin-bottom: 10px;
    }
}

.slider .card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}
/* Mobile nhỏ (dưới 480px) */
@media (max-width: 479px) {
    .slider .card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Tablet (480px - 768px) */
@media (min-width: 480px) and (max-width: 768px) {
    .slider .card h3 {
        font-size: 1.3rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.slider .card p {
    color: #ffc20e;
    /* font-size: 1.1rem; */
    line-height: 1.4;
}
.slider .card p i {
    margin-right: 10px;
}

.nav-btn {
    position: absolute;
    top: calc(50% - 25px);
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-50%) scale(1.5);
}

.prev-btn {
    left: 40px;
}
.next-btn {
    right: 40px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.5);
}

#bokeh-background {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bokeh {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(10px);
    box-shadow: 0 0 30px 15px rgba(255, 69, 0, 0.15);
    animation: float 15s infinite;
}

.bokeh::before,
.bokeh::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: inherit;
    filter: blur(30px);
    z-index: -1;
}

.bokeh::before {
    transform: rotate(45deg);
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-100px) scale(1.5);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}
.text_container {
    font-family: "Martian Mono", monospace;
    /* transform: rotate(-7deg) translate(-50%, -100%); */
    height: 1em;
    text-wrap: nowrap;
    letter-spacing: 0;
    overflow-y: hidden;
    color: whitesmoke;
    margin-right: 80px;
}

.text_container p {
    transition: transform 0.6s ease;
    margin: 0;
}

.text_container p:nth-child(2) {
    color: #ffc20e;
}

.text_container:hover p {
    transform: translateY(-100%);
}

.post .content-left-item-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 80px 80px 80px;
}
@media (max-width: 480px) {
    .post .content-left-item-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 10px;
    }
}

.post .card {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: width 1s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: none;
}

.post .card-body {
    background: #cbcbcb;
    display: flex;
    justify-content: space-between;
    height: 100%;
    margin-top: -15px;
    z-index: 2;
    padding-top: 30px;
    transition: width 0.6s ease-in-out;
    width: 120%;
}

/* Dưới 480px (mobile nhỏ) */
@media (max-width: 479px) {
    .post .card-body {
        flex-direction: column;
        width: 100% !important;
        padding-top: 20px;
        gap: 10px;
        transition: none !important;
    }
}

/* Từ 480px đến 768px (tablet và mobile lớn) - TẮT ANIMATION */
@media (min-width: 480px) and (max-width: 768px) {
    .post .card {
        transition: none !important;
    }
    
    .post .card-body {
        width: 100% !important;
        padding-top: 25px;
        transition: none !important;
        margin-top: -10px;
    }
    
    .post .card:hover .card-body {
        width: 100% !important;
        transform: none !important;
    }
}

.post .card img {
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
    z-index: 5;
}

/* Dưới 480px (mobile nhỏ) */
@media (max-width: 479px) {
    .post .card img {
        height: 140px;
        border-radius: 6px;
    }
}

/* Từ 480px đến 768px (tablet và mobile lớn) */
@media (min-width: 480px) and (max-width: 768px) {
    .post .card img {
        height: 160px;
        border-radius: 8px;
    }
}

.vertical-button {
    transition: transform 0.6s ease;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 10px;
    font-size: 16px;
    background-color: #ffc20e;
    color: black;
    border: none;
    cursor: pointer;
    height: 150px;
}

/* Responsive cho màn hình nhỏ dưới 480px */
@media (max-width: 479px) {
    .vertical-button {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        font-size: 14px;
        padding: 8px 12px;
        transition: none !important;
        margin-top: -115px;
    }
}

/* Từ 480px đến 768px - TẮT ANIMATION CHO BUTTON */
@media (min-width: 480px) and (max-width: 768px) {
  .vertical-button {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        font-size: 14px;
        padding: 8px 12px;
        height: auto !important;
        transition: none !important;
        align-self: flex-start !important;
        margin-top: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .post .card:hover .vertical-button {
        transform: none !important;
    }
}

/* Hover effects chỉ áp dụng cho desktop (trên 768px) */
@media (min-width: 769px) {
    .post .card:hover .card-body {
        width: 80%;
    }
    
    .post .card:hover .vertical-button {
        transform: translateX(100%);
    }
}

.post h3 {
    color: white;
    text-align: center;
}

/* Dưới 480px (mobile nhỏ) */
@media (max-width: 479px) {
    .post h3 {
        font-size: 1.1rem;
    }
}

/* Từ 480px đến 768px (tablet và mobile lớn) */
@media (min-width: 480px) and (max-width: 768px) {
    .post h3 {
        font-size: 1.3rem;
    }
}

.card-text {
    margin-right: 30px !important;
    display: -webkit-box;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive cho card-text */
@media (max-width: 479px) {
    .card-text {
        margin-right: 10px !important;
        -webkit-line-clamp: 3;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    .card-text {
        margin-right: 15px !important;
        -webkit-line-clamp: 3;
    }
    .card-title {
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-bottom: 10px !important;
    }
}
figure.snip1156 {
    font-family: "Raleway", Arial, sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #000000;
    text-align: center;
}
figure.snip1156 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
figure.snip1156 img {
    opacity: 1;
    width: 100%;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}
figure.snip1156 figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
figure.snip1156 figcaption > div {
    height: 50%;
    overflow: hidden;
    width: 100%;
    position: relative;
}
figure.snip1156 h2,
figure.snip1156 p {
    margin: 0;
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
}
figure.snip1156 h2 {
    padding: 0 30px;
    display: inline-block;
    font-weight: 400;
    text-transform: uppercase;
    bottom: 0;
    -webkit-transform: translate3d(0%, 150%, 0);
    transform: translate3d(0%, 150%, 0);
}
figure.snip1156 h2 span {
    font-weight: 400;
}
figure.snip1156 p {
    padding: 0 50px;
    font-size: 0.8em;
    font-weight: 500;
    -webkit-transform: translate3d(0%, -150%, 0);
    transform: translate3d(0%, -150%, 0);
}
figure.snip1156 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}
figure.snip1156:hover img,
figure.snip1156.hover img {
    opacity: 0.3;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
figure.snip1156:hover figcaption h2,
figure.snip1156.hover figcaption h2,
figure.snip1156:hover figcaption p,
figure.snip1156.hover figcaption p {
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
}
figure.snip1156:hover figcaption h2,
figure.snip1156.hover figcaption h2 {
    opacity: 0.9;
}
figure.snip1156:hover figcaption p,
figure.snip1156.hover figcaption p {
    opacity: 0.6;
}
.info {
    margin: 20px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
    gap: 20px;
}
@media (max-width: 480px) {
    .info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin: 10px;
    }
}
.snake-audio-content {
    /* padding: 30px 0; */
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-container {
    position: relative;
    background-color: var(--backgroundcolor);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 2px 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
    padding-bottom: 20px;
    /* width: 40%; */
}
/* Dưới 480px (mobile nhỏ) */
@media (max-width: 479px) {
    .app-container {
        border-radius: 12px;
        padding-bottom: 15px;
        margin: 9px;
    }
}

/* Từ 480px đến 768px (tablet và mobile lớn) */
@media (min-width: 480px) and (max-width: 768px) {
    .app-container {
        border-radius: 16px;
        padding-bottom: 18px;
        margin: 12px;
    }
}
#uiWrap {
    position: relative;
    padding: 0 40px;
    box-sizing: border-box;
    z-index: 3;
    margin-top: 0px;
}
#albumArt {
    position: relative;
    z-index: 1;
    width: 378px;
    height: 500px;
    border-radius: 15px;
    margin-bottom: -100px;
    margin-top: 15px;
}
@media only screen and (max-width: 768px) {
    #albumArt {
        width: 90%;
        height: auto;
        margin-bottom: 10px;
        margin-top: 15px;
        border-radius: 10px;
    }
}
#fade {
    margin-top: 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100px;
    background: linear-gradient(
        180deg,
        rgba(38, 40, 44, 0) 0%,
        rgba(38, 40, 44, 1) 82%
    );
}
/* Dưới 480px (mobile nhỏ) */
@media (max-width: 479px) {
    #fade {
        height: 60px;
    }
}

/* Từ 480px đến 768px (tablet và mobile lớn) */
@media (min-width: 480px) and (max-width: 768px) {
    #fade {
        height: 80px;
    }
}
#trackTitle {
    font-size: 1.7rem;
}

.snake-audio-content button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1em;
    font-weight: 400;
    border: none;
    border-radius: 60px;
    height: 2.5rem;
    width: 2.5rem;
    background: var(--backgroundcolor);
    box-shadow: 4px 4px 8px var(--shadow-dark),
        -4px -4px 8px var(--shadow-light);
}
/* Dưới 480px (mobile nhỏ) */
@media (max-width: 479px) {
    .snake-audio-content button {
        height: 2rem;
        width: 2rem;
        font-size: 0.8em;
    }
}

/* Từ 480px đến 768px (tablet và mobile lớn) */
@media (min-width: 480px) and (max-width: 768px) {
    .snake-audio-content button {
        height: 2.25rem;
        width: 2.25rem;
        font-size: 0.9em;
    }
}
.snake-audio-content button:hover {
    box-shadow: 2px 2px 5px var(--shadow-dark),
        -2px -2px 5px var(--shadow-light);
}

.snake-audio-content button:active {
    background: var(--backgroundcolor);
    box-shadow: inset 2px 2px 5px var(--shadow-dark),
        inset -2px -2px 5px var(--shadow-light);
}

.audio-controls {
    text-align: center;
}

#playPauseBtn {
    height: 60px;
    width: 60px;
    margin: 0 20px 20px;
}
/* Dưới 480px (mobile nhỏ) */
@media (max-width: 479px) {
    #playPauseBtn {
        height: 40px;
        width: 40px;
        margin: 0 10px 15px;
    }
}

/* Từ 480px đến 768px (tablet và mobile lớn) */
@media (min-width: 480px) and (max-width: 768px) {
    #playPauseBtn {
        height: 50px;
        width: 50px;
        margin: 0 15px 18px;
    }
}

#shuffleBtn.active,
#loopBtn.active {
    color: var(--blue);
}

#volume {
    /* position: absolute; */
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 0;
    top: 10px;
    left: 10px;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0);
}

#volume-bar {
    position: relative;
    width: 100px;
    transform: translateY(-3px);
    opacity: 0;
    transition: all 0.3s ease-out;
    transition-delay: 1000ms;
}
#volume:hover #volume-bar,
#volume:active #volume-bar {
    opacity: 1;
    transition: all 0.3s ease-out;
}
.muted {
    pointer-events: none;
    opacity: 0.7;
}

#muteBtn {
    box-shadow: none;
    background: none;
    font-size: 0.8em;
}

#volumeSlider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background: rgba(0, 0, 0, 0.6);
    outline: none;
    border-radius: 10px;
}

.volume-indicator {
    position: absolute;
    height: 5px;
    width: 0;
    background: white;
    border-radius: 5px;
    pointer-events: none;
    top: 0;
    left: 0;
}

#volumeSlider::-webkit-slider-thumb {
    position: relative;
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    background: white;
}

#volumeSlider::-moz-range-thumb {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    background: white;
}

#volumeSlider::-ms-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    background: white;
}

.seek-bar {
    position: relative;
    height: 40px;
}

#seekSlider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background: rgba(0, 0, 0, 0.2);
    outline: none;
    border-radius: 10px;
}

.buffering-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    border-radius: 10px;
    background: var(--blue);
    width: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.seek-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    background: var(--blue);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
    width: 0;
}

#seekSlider::-webkit-slider-thumb {
    position: relative;
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    background: var(--blue);
    box-shadow: 4px 4px 8px var(--shadow-dark),
        -4px -4px 8px var(--shadow-light);
}

#seekSlider::-moz-range-thumb {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    background: var(--blue);
    box-shadow: 4px 4px 8px var(--shadow-dark),
        -4px -4px 8px var(--shadow-light);
}

#seekSlider::-ms-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    background: var(--blue);
    box-shadow: 4px 4px 8px var(--shadow-dark),
        -4px -4px 8px var(--shadow-light);
}

#seekSlider::-webkit-slider-thumb:hover {
    box-shadow: 2px 2px 5px var(--shadow-dark),
        -2px -2px 5px var(--shadow-light);
}

#volumeSlider::-moz-range-thumb:hover {
    box-shadow: 2px 2px 5px var(--shadow-dark),
        -2px -2px 5px var(--shadow-light);
}

#volumeSlider::-ms-thumb:hover {
    box-shadow: 2px 2px 5px var(--shadow-dark),
        -2px -2px 5px var(--shadow-light);
}

#seekSlider::-moz-range-thumb:hover {
    box-shadow: 2px 2px 5px var(--shadow-dark),
        -2px -2px 5px var(--shadow-light);
}

#seekSlider::-ms-thumb:hover {
    box-shadow: 2px 2px 5px var(--shadow-dark),
        -2px -2px 5px var(--shadow-light);
}

#currentTime,
#trackTime {
    position: absolute;
    top: -30px;
    font-size: 0.7em;
}

#currentTime {
    left: 0;
}

#trackTime {
    right: 0;
}

#likeBtn {
    box-shadow: none;
    background: none;
    margin: 10px 20px;
    transition: all 200ms cubic-bezier(0.17, -0.99, 0.61, 1.73);
}
#likeBtn:hover {
    transform: scale(1.3);
    transition: all 200ms cubic-bezier(0.17, -0.99, 0.61, 1.73);
}
#loopBtn,
#shuffleBtn {
    box-shadow: none;
    background: none;
    margin: 0 10px;
    font-size: 0.9rem;
}
.audio-flex-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}
.audio-info-header {
    background: #343a40;
    border-radius: 20px;
    padding: 30px;
}
.audio-info-header h1 {
    font-weight: 700;
    text-transform: uppercase;
}
.audio-info-content {
    padding: 30px;
}
.audio-info-content p {
    /* font-size: 1.1rem; */
    line-height: 1.4;
}
.audio-info-content p i {
    color: #ffc20e;
    margin-right: 10px;
}
@media (max-width: 480px) {
    ol,
    ul {
        padding-left: 0px;
    }
}
/* .footer-item iframe {
    width: 275px;
    height: 450px;
}
.footer-item * {
    padding-left: 0 !important;
}
.footer-item li {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.footer-item li:hover a {
    color: #ffc20e !important;
}
footer .block-title span {
    padding: 10px 0 !important;
    font-size: 20px;
} */
footer {
    max-width: 1400px;
    margin: 0 auto;
}
.mct-footer {
    padding: 40px 20px;
    color: #fff;
    border-radius: 10px;

    width: 1500px;

    background: rgba(0, 0, 0, 0.66);
    border-radius: 10px;
}

.mct-footer__container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.mct-footer__top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 400px;
    flex-wrap: wrap;
}
.mct-footer__logo {
    max-width: 348px;
    margin-bottom: 10px;
}

.mct-footer__column {
    flex: 1 1 180px;
    min-width: 200px;
}

.mct-footer__column h4,
.mct-footer__column h3 {
    margin-bottom: 10px;
    font-weight: bold;
}

.mct-footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mct-footer__column ul li {
    margin-bottom: 8px;

    align-items: center;
}
.mct-footer__column ul li a {
    color: #ccc;
}
.mct-icons img {
    width: 20px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.mct-icons img:hover {
    transform: scale(1.2);
}

.mct-footer__contact {
    flex: 1 1 220px;
    min-width: 220px;
}

.mct-footer__contact input {
    width: 300px;
    padding: 6px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #ccc;
    color: #fff;
}

.mct-footer__contact button {
    margin-top: 5px;
    padding: 6px 12px;
    background: #1d1d1d;
    border: 1px solid #ccc;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.mct-footer__contact button:hover {
    background: #333;
}

.mct-footer__map {
    text-align: center;
    margin-top: 30px;
}

.mct-footer__map img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mct-footer__map {
    margin-top: 30px;
}

.mct-footer__map-responsive {
    position: relative;
    width: 706px; /* Giữ đúng kích thước bạn đưa */
    height: 309px;
    border-radius: 20px;
    animation: fadeIn 2s ease-in-out;
}

.mct-footer__map-responsive iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .mct-footer {
        width: 100%;
        padding: 30px 15px;
    }

    .mct-footer__top-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mct-footer__logo {
        max-width: 220px;
        margin: 0 auto 20px auto;
    }

    .mct-footer__contact {
        text-align: center;
    }

    .mct-footer__contact input {
        width: 100%;
        max-width: 90vw;
    }

    .mct-footer__contact button {
        width: 100%;
        max-width: 90vw;
        margin-top: 10px;
    }

    .mct-footer__container {
        flex-direction: column;
        align-items: center;
    }

    .mct-footer__column {
        min-width: 100%;
        text-align: center;
    }

    .mct-footer__map img {
        border-radius: 10px;
        width: 100%;
        max-width: 90vw;
    }
    .mct-footer__map-responsive {
        position: relative;
        width: 100%;
        padding-bottom: 45%; /* 16:9 tỷ lệ khung hình */
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        animation: fadeIn 2s ease-in-out;
    }

    .mct-footer__map-responsive iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 20px;
    }
}
#fullscreenLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader Animation */
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #333;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}