* {
    padding: 0;
    margin: 0;
}

body {
    margin: 0 auto;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

.main-logo {
    margin-top: 6px;
}

.menu-bar {
    text-align: center;
    background: #022F60;
    position: relative;
}

/* Navbar container for layout */
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.logo-container {
    flex-shrink: 0;
}

/* Navigation wrapper */
.nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-bar ul {
    display: inline-flex;
    list-style: none;
    color: #fff;
    white-space: nowrap;
    margin-bottom: -26px;
    font-size: 23px;
}

.menu-bar ul li {
    width: 100%;
    margin-top: 7px;
    padding: 15px 30px 15px 15px;
    position: relative;
}

.menu-bar ul li a {
    text-decoration: none;
    color: wheat;
    display: flex;
    align-items: center;
}

.active, .menu-bar ul li:hover {
    /*background: #4977ee;*/
    border-radius: 10px;
    width: auto;
}

.menu-bar .fa {
    margin-right: 8px;
}

/* Submenu arrow */
.submenu-arrow {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dot-menu {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.dot {
    width: 4px;
    height: 4px;
    background: wheat;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Dot menu animation to hamburger */
.mobile-menu-toggle.active .dot:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
    width: 16px;
    height: 2px;
    border-radius: 2px;
}

.mobile-menu-toggle.active .dot:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .dot:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
    width: 16px;
    height: 2px;
    border-radius: 2px;
}

/* Submenu styles */
/*.sub-menu-1 {*/
/*    display: none;*/
/*}*/

/*.menu-bar ul li:hover .sub-menu-1 ul {*/
/*    display: block;*/
/*    margin: 10px;*/
/*}*/

/*.menu-bar ul li:hover .sub-menu-1 ul li {*/
/*    padding: 20px 30px;*/
/*    border-bottom: 1px dotted #fff;*/
/*    background: transparent;*/
/*    border-radius: 0;*/
/*    text-align: left;*/
/*    position: relative;*/
/*    margin: 0;*/
/*    width: auto;*/
/*}*/

/*.menu-bar ul li:hover .sub-menu-1 ul li:last-child {*/
/*    border-bottom: none;*/
/*}*/

/* Hide search text on desktop by default */
.search-text {
    display: none;
}

.sub-menu-1 ul li a {
    color: wheat;
    text-decoration: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(2, 47, 96, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        justify-content: flex-start;
        padding-top: 80px;
        overflow-y: auto;
    }

    .nav-menu-wrapper.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column !important;
        width: 100%;
        margin: 0 !important;
        padding: 20px;
    }

    .menu-bar ul {
        flex-direction: column;
        font-size: 18px;
        margin-bottom: 0;
        width: 100%;
    }

    .menu-bar ul li {
        width: 100%;
        margin: 0;
        padding: 0;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s ease forwards;
    }

    .nav-menu-wrapper.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu-wrapper.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu-wrapper.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu-wrapper.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu-wrapper.active li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu-wrapper.active li:nth-child(6) { animation-delay: 0.6s; }
    .nav-menu-wrapper.active li:nth-child(7) { animation-delay: 0.7s; }
    .nav-menu-wrapper.active li:nth-child(8) { animation-delay: 0.8s; }

    .menu-bar ul li a {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 8px;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }

    .menu-bar ul li a:hover,
    .menu-bar ul li.active a {
        /*background: #4977ee;*/
        transform: translateX(5px);
    }

    /* Show search text on mobile */
    .search-text {
        display: inline;
    }

    /* Mobile submenu styles */
    .has-submenu .sub-menu-1 {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        margin: 5px 0 0 0;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .has-submenu.submenu-open .sub-menu-1 {
        display: block;
        max-height: 300px;
        padding: 10px 0;
    }

    .has-submenu.submenu-open .sub-menu-1 a {
        justify-content: center;
    }

    .has-submenu.submenu-open .submenu-arrow {
        transform: rotate(180deg);
    }

    .sub-menu-1 ul {
        margin: 0 !important;
        padding: 0;
    }

    .sub-menu-1 ul li {
        padding: 0 !important;
        border-bottom: none !important;
        margin: 0;
        animation: none !important;
    }

    .sub-menu-1 ul li a {
        padding: 10px 25px !important;
        font-size: 16px;
        margin-bottom: 2px;
        border-radius: 6px;
    }

    .sub-menu-1 ul li a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(10px);
    }

    /* Disable desktop hover effects on mobile */
    .menu-bar ul li:hover {
        background: transparent;
    }

    /* Adjust navbar container for mobile */
    .navbar-container {
        padding: 0 15px;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Rest of the existing styles remain unchanged */
.menu-bar-2nd-level ul {
    margin-bottom: 20px;
}

.menu-bar-2nd-level ul li {
    width: 100%;
}

.menu-bar-2nd-level {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transform: translate3d(0, -110%, 0);
    transition: transform .5s, -webkit-transform .5s, -moz-transform .5s;
}

#menuBar3rd.sticky-header--show {
    height: 80px;
    transform: translate3d(0, 0, 0);
}

#menuBar2nd.sticky-header--show {
    transform: translate3d(0, 0, 0);
}

.sticky-header-title a {
    text-decoration: none;
    color: wheat;
}

.sticky-header-title a:hover {
    text-decoration: none;
    color: #d8a973;
}

.display-none {
    display: none;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.full-screen {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-list {
    overflow: hidden;
    width: -webkit-fill-available;
    padding-left: 4%;
    padding-top: 2%;
    background: #fafafa;
}

.list-page {
    display: block;
    overflow: auto;
}

.breadCrumb {
    color: #8a8f94;
    font-size: 17px;
}

.breadCrumb-text {
    font-family: "Helvetica", sans-serif !important;
}

h1.channel-group {
    font-size: 22px;
    font-family: RobotoBold, Roboto, Helvetica, sans-serif;
    padding-bottom: 20px;
    font-weight: bold;
    padding-top: 2%;
}

.line-channel-group {
    height: 1px;
    border: 0;
    background: #dee2e6;
    width: 100%;
}

.row {
    flex-wrap: wrap;
}

.list-post {
    padding: 20px 20px 40px 0 !important;
}

.single_post {
    z-index: 0;
    transition: all .3s;
    padding: 20px 0px 20px 0 !important;
    display: inline-block;
}

.post_img {
    float: left;
    z-index: 2;
}

.img_wrap {
    overflow: hidden;
}

.img_wrap img {
    height: 250px;
    width: 100%;
    border-radius: 3px;
}

.border-radius-5 {
    border-radius: 5px;
    overflow: hidden;
}

.single_post_text {
    width: 100%;
}

.single_post_text a {
    text-decoration: none;
}

.post-title-link {
    font-family: RobotoBold, Roboto, Helvetica, sans-serif;
    font-size: 25px;
    line-height: 1.3;
    color: #34425a;
    font-weight: bold;
}

.space-40 {
    height: 40px;
}

.space-45 {
    height: 45px;
}

.space-62 {
    height: 55px;
}

.space-35 {
    height: 35px;
}

.space-30 {
    height: 30px;
}

.space-20 {
    height: 20px;
}

.space-25 {
    height: 25px;
}

.space-10 {
    height: 10px;
}

.post-text {
    font-family: "Helvetica", sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
}

.border-4 {
    border-bottom: 1px solid #ecedee;
}

.content-detail {
    background-color: #f1f1f1;
    line-height: 1.5;
    font-family: 'Times New Roman', sans-serif !important;
    overflow: hidden;
    width: -webkit-fill-available;
    font-size: 18px;
}

.fl-heading {
    font-size: 35px;
    font-weight: 700;
    padding: 0 !important;
    margin-left: 7px;
}

.fl-heading-text {
    color: #34425a;
}

.text-uppercase {
    text-transform: uppercase;
}

.fl-row {
    margin-left: auto;
    margin-right: auto;
    zoom: 1;
}

.fl-row-content {
    max-width: 100%;
    margin-left: 3%;
    margin-right: auto;
}

.fl-col-content {
    padding: 0;
    margin: 0;
}

.fl-rich-text {
    max-width: 100%;
    font-size: 20px;
    line-height: 1.5;
}

.fl-heading-group {
    font-size: 20px;
    font-weight: 600;
}

.fl-heading-group-h4 {
    font-size: 25px;
    font-weight: 600;
    font-style: italic;
}

.fl-bullet {
    padding-left: 2rem;
}

.lwptoc_items {
    font-size: 18px;
}

.lwptoc .lwptoc_i {
    border: 1px solid #d8a973;
    border-radius: 15px;
    padding: 14px 18px 18px;
    text-align: left;
}

.lwptoc-autoWidth .lwptoc_i {
    display: inline-block;
}

.lwptoc_header {
    margin-bottom: -15px;
}

OL.lwptoc_itemWrap, UL.lwptoc_itemWrap {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

LI.lwptoc_item:first-child {
    margin-top: 0 !important;
}

LI.lwptoc_item {
    margin: -12px 0 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.footer-block {
    display: block;
    padding: 12px 0;
    background: #f4f4f4;
    flex-direction: column;
}

.footer-content {
    margin-left: 4%;
}

.img-content-detail {
    max-width: 100%;
    min-width: 100%;
    min-height: 50%;
    max-height: 50%;
}

.youtube-frame {
    height: 500px;
    max-width: 90%;
    min-width: 90%;
}

.relative-post-split {
    content: '';
    background: #ed2e2e;
    width: 56%;
    height: 10px;
    position: absolute;
    margin-left: 21px;
}

.relative-post {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.relative-post-title-icon {
    width: 5px;
    height: 21px;
    position: absolute;
    overflow: hidden;
    margin-top: 8px;
    margin-left: 21px;
    content: '';
    background: #ed2e2e;
}

.relative-post-title {
    margin-left: -1%;
    text-transform: uppercase;
    font-size: 28px;
    display: block;
    margin-top: 15px;
    color: #333;
    font-weight: 700;
}

.row li.relative-post-focus {
    width: 415px;
    padding-right: 0;
    float: left;
    margin: 2px 40px 20px 20px;
}

.row li.relative-post-focus .info {
    margin-top: 5px;
}

.row li.relative-post-focus .info h4.relative-post-li-title {
    font-size: 23px;
    color: #292929;
    text-align: left;
    margin: 8px 0;
    font-family: SFD-Medium, serif;
    font-weight: bold;
}

.relative-post-li-title a {
    color: #292929;
}

.relative-post-focus img {
    border-radius: 5% !important;
}

#top-button {
    width: 35px;
    height: 35px;
    background: #fff;
    border: 1px solid #e5e5e5;
    text-align: center;
    border-radius: 3px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

.mb-05-rem {
    margin-bottom: 0.5rem
}

.pagination {
    align-items: center;
    right: 0;
}

.pagination a:hover {
    text-decoration: none;
}

.btn-page {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 36px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    float: left;
    position: relative;
    margin-left: 10px;
    color: #2E2E2E;
}

.btn-page.active {
    border: 1px solid #022F60;
    background: #022F60;
    color: #fff;
}

.embedded-youtube {
    height: 300px;
    width: 700px;
}

.row-list {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.extra-information-tbl {
    border-collapse: collapse;
    width: 100%;
    font-size: 11px;
}

.ingredient-tbl {
    width: 100%;
    margin-left: 20px
}

.ingredient-tbl li::marker {
    content: '\2714';
    color: red;
}

.hidden-last-child li:last-child::marker {
    content: '';
}

.ingredient-tbl li {
    padding-left: 1.5px;
}

.extra-information-tbl td, .extra-information-tbl th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center !important;
}

.extra-information-tbl tr:nth-child(even) {
    background-color: #f2f2f2;
}

.extra-information-tbl tr:hover {
    background-color: #ddd;
}

.extra-information-tbl th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #9f6363;
    color: white;
}

.price.down {
    border: 2px solid #c1295f;
    color: #c1295f;
    border-radius: 5px;
}

.price.up {
    border: 2px solid #5fae2e;
    color: #5fae2e;
    border-radius: 5px;
}

.other-post-title {
    font-size: 18px;
    color: darkred;
    font-family: 'Times New Roman', sans-serif !important;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 4%;
}

.weather-text {
    font-size: 15px;
    font-family: 'Times New Roman', sans-serif !important;
    color: #8A8FA2;
}

.gold-price {
    font-family: 'Times New Roman', sans-serif !important;
}

.exrate {
    font-family: 'Times New Roman', sans-serif !important;
}

article .imgOtherPost {
    flex: 0 0 180px;
    max-width: 180px;
    width: 180px;
    height: 120px;
    margin: 0 14px 0 0;
    overflow: hidden;
}

.imgOtherPost img {
    border: #ebebeb solid 1px;
    margin-right: 10px;
    display: block;
    background: #f5f5f5;
    border-radius: 5px;
}

article .otherPost {
    font-family: "Helvetica", sans-serif !important;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-capitalize {
    text-transform: capitalize;
}

.pd-l-0-imp {
    padding-left: 0 !important;
}

.pd-l-4-percent-imp {
    padding-left: 4% !important;
}

.pd-l-5-percent-imp {
    padding-left: 5% !important;
}

.pd-l-13-percent-imp {
    padding-left: 13% !important;
}

.pd-r-0-imp {
    padding-right: 0 !important;
}

.pd-r-5-percent-imp {
    padding-right: 5% !important;
}

.mg-l-30-percent {
    margin-left: 30%;
}

.mg-l-27-percent {
    margin-left: 27%;
}

.mg-l-12-percent {
    margin-left: 12%;
}

.font-size-16 {
    font-size: 16px;
}

.mg-l-4-percent {
    margin-left: 4%;
}

.extra-information {
    margin-left: 30%;
    margin-right: 10%;
    margin-top: -1%;
}

.other-post-block {
    /*margin-top: -13%;*/
}

.otherPost a {
    color: black;
}

.otherPost a:hover {
    text-decoration: none;
    color: #006BA0;
}

.other-post-title a {
    color: #ec1b0c;
}

.other-post-title a:hover {
    text-decoration: none;
    color: #006BA0;
}

.line-5 {
    height: 5px;
    border: 0;
    margin-top: 10px;
    background: red;
}

.img-hover-zoom img {
    transition: transform 2s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.5);
}

.social-media {
    padding: 15px;
    border-radius: 50%;
}

.social-media:hover {
    opacity: 0.7;
}

.fa-facebook {
    background: #3B5998;
}

.fa-link {
    background: gray;
}

.ic-zalo {
    background: url("/img/iconZalo.png") no-repeat 50% 50%;
    background-size: 100%;
    width: 40px;
    height: 39px;
    position: absolute;
}

.alert-msg {
    position: fixed;
    padding: 10px 50px;
    border-radius: 4px;
    background-color: lightslategray;
    color: white;
    z-index: 1000;
    top: 50%;
    left: 45%;
    display: none;
}

.other-post-title-before::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 18px;
    margin-top: 0.2rem;
    background-color: #dd3333;
}

.reveal {
    position: relative;
    opacity: 0;
}

.reveal.activeRev {
    opacity: 1;
}

.activeRev.fade-bottom {
    animation: fade-bottom 0.75s ease-in;
}

.activeRev.fade-left {
    animation: fade-left 0.75s ease-in;
}

.activeRev.fade-right {
    animation: fade-right 0.75s ease-in;
}

@keyframes fade-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-left {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-right {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.tags-wrap {
    padding: 0;
    list-style: none;
    height: 30px;
}

.tags-wrap li {
    float: left;
    font-family: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue","Arial","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol",sans-serif;
    line-height: 18px;
    margin: 10px 10px 0 0;
}

.tags-wrap li a {
    display: block;
    padding: 4px 12px;
    color: #666;
    background: darkgray;
    border-radius: 13px;
    font-weight: 500;
}

.search-box {
    position: relative;
}

.search-box-input {
    width: 100%;
    height: 36px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 16px;
    padding: 9px 36px 7px 16px;
    outline: 0;
}

.search-box-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent none;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    color: #4d4d4d;
}

.flex-jcc {
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-headline.highlight {
    color: #022F60;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: .7rem 0;
    border-bottom: .0625rem solid #9b9b9b;
}

.box-headline.highlight small {
    font-size: .875rem;
    text-transform: none;
    font-weight: 400;
    display: block;
    color: #757575;
}

.border-content {
    border: none;
    padding: 1rem;
    margin: 0;
    background-color: #fff;
}

.container {
    width: 80%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Additional responsive improvements */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 15px;
    }

    .menu-bar ul {
        font-size: 20px;
    }

    .menu-bar ul li {
        padding: 12px 20px 12px 12px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        width: 100px;
        height: auto;
    }

    .navbar-container {
        padding: 0 10px;
    }

    .nav-menu-wrapper {
        padding-top: 70px;
    }

    .menu-bar ul {
        font-size: 16px;
    }

    .menu-bar ul li a {
        padding: 12px 15px;
    }

    .sub-menu-1 ul li a {
        padding: 8px 20px !important;
        font-size: 14px;
    }
}

/* Performance optimizations */
.menu-bar, .nav-menu-wrapper, .mobile-menu-toggle {
    will-change: transform;
}

.dot, .submenu-arrow {
    will-change: transform, opacity;
}

/* Accessibility improvements */
.mobile-menu-toggle:focus {
    outline: 2px solid wheat;
    outline-offset: 2px;
}

.menu-bar ul li a:focus {
    outline: 2px solid wheat;
    outline-offset: 2px;
    background: #4977ee;
}

/* High contrast support */
@media (prefers-contrast: high) {
    .menu-bar {
        border: 2px solid wheat;
    }

    .menu-bar ul li a {
        border: 1px solid transparent;
    }

    .menu-bar ul li a:hover,
    .menu-bar ul li a:focus {
        border-color: wheat;
    }
}