body.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100vw;
}

/* Desktop Header Styles */
.header {
    background: #031d6d;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
}

.header .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
}

.header .header-logo img {
    width: 110px;
    height: auto;
}

.header-menu {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.header-menu .header-menu-wrapper {
    color: #56689d;
    width: auto;
    display: flex;
    align-items: center;
}

.header-menu .header-menu-wrapper button {
    text-decoration: none;
    color: white;
    margin: 0 16px;
    font-size: 18px;
    border: none;
    background: none;
    cursor: pointer;
}

/* On article pages, add a body class like 'single-post' in WordPress */
body.single-post .header-menu .header-menu-wrapper a {
    font-size: 14px !important;
}

.header-menu .header-menu-wrapper .package {
    background: #FFD60A;
    padding: 5px 10px;
    border-radius: 4px;
    color: black !important;
    font-weight: bold;
}

.header-menu .header-menu-wrapper .profile img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.header-menu .header-menu-wrapper .profile-initials {
    width: 32px;
    height: 32px;
    background: #a7d5fa;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.header-menu .header-menu-wrapper a {
    display: flex;
    text-decoration: none;
    color: white;
    margin: 0 12px;
}

.header-menu .header-menu-wrapper .login-btn {
    font-weight: bold;
}

.header-menu .header-menu-wrapper .profile-menu-container {
    position: relative;
}

.header-menu-dark-btn .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}
.header-menu-dark-btn .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.header-menu-dark-btn .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    transition: .4s;
    border-radius: 22px;
}
.header-menu-dark-btn .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: #031d6d;
    transition: .4s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="16" viewBox="0 -960 960 960" width="16" fill="white"><path d="M484-80q-84 0-157.5-32t-128-86.5Q144-253 112-326.5T80-484q0-146 93-257.5T410-880q-18 99 11 193.5T521-521q71 71 165.5 100T880-410q-26 144-138 237T484-80Zm0-80q88 0 163-44t118-121q-86-8-163-43.5T464-465q-61-61-97-138t-43-163q-77 43-120.5 118.5T160-484q0 135 94.5 229.5T484-160Zm-20-305Z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}
.header-menu-dark-btn .switch input:checked + .slider {
    background-color: #1240cc;
}
.header-menu-dark-btn .switch input:checked + .slider:before {
    transform: translateX(18px);
    background-color: #ffffff;
    /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="16" viewBox="0 -960 960 960" width="16" fill="black"><path d="M484-80q-84 0-157.5-32t-128-86.5Q144-253 112-326.5T80-484q0-146 93-257.5T410-880q-18 99 11 193.5T521-521q71 71 165.5 100T880-410q-26 144-138 237T484-80Zm0-80q88 0 163-44t118-121q-86-8-163-43.5T464-465q-61-61-97-138t-43-163q-77 43-120.5 118.5T160-484q0 135 94.5 229.5T484-160Zm-20-305Z"/></svg>'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.bottom-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 10px 0;
    /* max-width: 1200px; */
    margin: 0 auto 5px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bottom-header .bottom-header-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.bottom-header .bottom-header-menu li a {
    text-decoration: none;
    color: #021d6c;
    font-weight: bold;
    font-size: 16px;
}

/* Desktop menu dropdown styles */
.bottom-header .bottom-header-menu ul li {
    position: relative;
    text-align: center;
}

.bottom-header .bottom-header-menu ul ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 100;
    padding: 8px 0;
    border-radius: 8px;
}

.bottom-header .bottom-header-menu ul li:hover > ul {
    display: block;
}

.bottom-header .bottom-header-menu ul ul li a {
    color: #021d6c;
    font-size: 16px;
    font-weight: normal;
    padding: 8px 24px;
    display: block;
    background: none;
}

.bottom-header .bottom-header-menu ul ul li a:hover {
    background: #f3f4f6;
    color: #031d6d;
}

/* Optional: Add an arrow indicator for parent menu items */
.bottom-header .bottom-header-menu ul li > ul {
    /* mark parent menu items */
}
.bottom-header .bottom-header-menu ul li > ul {
    display: none;
}
.bottom-header .bottom-header-menu ul li.has-children > a::after,
.bottom-header .bottom-header-menu ul li.menu-item-has-children > a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 6px;
    vertical-align: middle;
    color: #021d6c;
}

/* On article pages, add a body class like 'single-post' in WordPress */
body.single-post .bottom-header .bottom-header-menu li a {
    font-size: 16px !important;
}

.bottom-header .bottom-header-menu li a:hover {
    color: #0029a3;
}

.bottom-header .bottom-header-search {
    position: relative;
}

.bottom-header .bottom-header-search button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.bottom-header .bottom-header-search img{
    width: auto;
    height: 24px;
}


.bottom-header .bottom-header-search .bottom-header-search-bar {
    display: none;
    position: absolute;
    top: 40px;
    right: -20%;
    z-index: 1002;
}

.bottom-header .bottom-header-search-bar input{
    width: auto;
    padding: 9px 50px 9px 16px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background-color: #fff;
    border: 1px solid #031d6d;
}

.bottom-header .bottom-header-search-bar input:focus {
    border-color: #031d6d;
    box-shadow: 0 0 0 2px rgba(3, 29, 109, 0.1);
}

.bottom-header .bottom-header-search-bar :placeholder-shown {
    font-style: italic;
    color: #aab7b8;
}

.bottom-header .bottom-header-search-bar button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #031d6d;
    border: none;
    border-radius: 0 8px 8px 0;
    width: 46px;
    height: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.bottom-header .bottom-header-search-bar button:hover {
    background: #021a5c;
}

.desktop-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.1s ease, transform 0.1s cubic-bezier(0.4,0,0.2,1);
}

.desktop-sticky-header.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-header {
    position: sticky;
    top: 0;
    padding: 10px 0;
    background: white;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.sticky-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.sticky-header .sticky-header-logo img {
    width: 35px;
    height: auto;
}

.sticky-header .sticky-header-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.sticky-header .sticky-header-menu li a {
    text-decoration: none;
    color: #021d6c;
    font-weight: bold;
}

.sticky-header .sticky-header-menu li a:hover {
    color: #0029a3;
}

/* Sticky header menu dropdown styles */
.sticky-header .sticky-header-menu ul li {
    position: relative;
    font-size: 16px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.sticky-header .sticky-header-menu ul ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 100;
    padding: 8px 0;
    border-radius: 8px;
}

.sticky-header .sticky-header-menu ul li:hover > ul {
    display: block;
}

.sticky-header .sticky-header-menu ul ul li a {
    color: #021d6c;
    font-size: 16px;
    font-weight: normal;
    padding: 8px 24px;
    display: block;
    background: none;
}

.sticky-header .sticky-header-menu ul ul li a:hover {
    background: #f3f4f6;
    color: #031d6d;
}

/* Optional: Add an arrow indicator for parent menu items */
.sticky-header .sticky-header-menu ul li > ul {
    /* mark parent menu items */
}
.sticky-header .sticky-header-menu ul li > ul {
    display: none;
}
.sticky-header .sticky-header-menu ul li.has-children > a::after,
.sticky-header .sticky-header-menu ul li.menu-item-has-children > a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 6px;
    vertical-align: middle;
    color: #021d6c;
}

.sticky-header .sticky-header-search {
    position: relative;
}

.sticky-header .sticky-header-search button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.sticky-header .sticky-header-search img{
    width: auto;
    height: 24px;
}

.sticky-header .sticky-header-search:hover {
    cursor: pointer;
}

.sticky-header .sticky-search-bar-wrapper {
    display: none; 
    position: absolute;
    top: 40px;
    right: -20%;
    transform: translateX(-50%);
    z-index: 1001;
}

.sticky-header .sticky-search-bar-wrapper input{
    width: auto;
    padding: 9px 50px 9px 16px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background-color: #fff;
    border: 1px solid #031d6d;
}

.sticky-header .sticky-search-bar-wrapper input:focus {
    border-color: #031d6d;
    box-shadow: 0 0 0 2px rgba(3, 29, 109, 0.1);
}

.sticky-header .sticky-search-bar-wrapper :placeholder-shown {
    font-style: italic;
    color: #aab7b8;
}

.sticky-header .sticky-search-bar-wrapper button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #031d6d;
    border: none;
    border-radius: 0 8px 8px 0;
    width: 46px;
    height: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.sticky-header .sticky-search-bar-wrapper button:hover {
    background: #021a5c;
}

.sticky-header .sticky-search-bar-wrapper .search-bar {
    position: relative;
    width: 250px;
}

.sticky-header .sticky-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.sticky-header .sticky-header-right .package {
    background: #FFD60A;
    padding: 5px 10px;
    border-radius: 4px;
    color: black;
    font-weight: bold;
    text-decoration: none;

}

.sticky-header .sticky-header-right .login-btn {
    font-weight: bold;
    text-decoration: none;
    color: #021d6c;
}

.sticky-header .sticky-header-right img{
    width: auto;
    height: 32px;
    border-radius: 50%;
}

.sticky-header .sticky-header-right button {
    border: none;
    background: none;
    cursor: pointer;
}

.sticky-header .sticky-header-right .profile-initials {
    width: 32px;
    height: 32px;
    background: #a7d5fa;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.desktop-search-bar {
    position: fixed;
    top: 15px;
    left: 20px;
}

/* Mobile Header Styles */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    background: #fff;
}

.profile-mobile {
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.profile-mobile .profile-menu-overlay {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.profile-mobile.active {
    pointer-events: auto;
}

.profile-mobile.active .profile-menu-overlay {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.mobile-header-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 8px;
    background: #031d6d;
    font-family: 'Inter', sans-serif;
}

.mobile-header-wrapper .mobile-header-hamburger, .mobile-header-logo, .mobile-header-right {
    width: 100%;
}

.mobile-header-wrapper .mobile-header-hamburger {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.mobile-header-wrapper .mobile-header-hamburger button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

/* .mobile-header-wrapper .mobile-header-hamburger img {
    width: auto;
    height: 24px;
} */

.mobile-header-wrapper .mobile-header-hamburger .package {
    background: #FFD60A;
    padding: 2px 5px;
    border-radius: 4px;
    color: black;
    font-weight: bold;
    text-decoration: none;
    font-size: 10px;
}

.mobile-header-wrapper .mobile-header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-header-wrapper .mobile-header-logo img {
    width: auto;
    height: 30px;
}

.mobile-header-wrapper .mobile-header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.mobile-header-wrapper .mobile-header-right a img {
    width: 23px;
    height: 23px;
}

.mobile-header-wrapper .mobile-header-right button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.mobile-header-wrapper .mobile-header-right button img.profile {
    width: auto;
    height: 32px;
    border-radius: 50%;
}

.mobile-header-wrapper .mobile-header-right button.hamburger img {
    width: auto;
    height: 24px;
}


.mobile-header-wrapper .mobile-header-right .profile-initials {
    width: 30px;
    height: 30px;
    background: #a7d5fa;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

/* .mobile-header-wrapper .mobile-header-right .package {
    background: #FFD60A;
    padding: 2px 5px;
    border-radius: 4px;
    color: black;
    font-weight: bold;
    text-decoration: none;
    font-size: 10px;
} */

.mobile-header-wrapper .mobile-header-right .profile {
    display: flex;
}

.mobile-header-wrapper .mobile-header-right a {
    color: #fff;
    font-weight: bold;
    font-size: 12px;
}

.mobile-header-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-header-bottom .mobile-header-menu {
    width: 100%;
    display: none;
}

.mobile-header-bottom .mobile-header-menu ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 20px;
    list-style: none;
    overflow-x: auto;
    padding: 8px 12px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar for Internet Explorer and Edge */
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-header-bottom .mobile-header-menu ul::-webkit-scrollbar {
    display: none; /* Hide scrollbar for WebKit browsers */
}

.mobile-header-bottom .mobile-header-menu ul li {
    width: 100%;
    white-space: nowrap; /* Prevent line break */
}

.mobile-header-bottom .mobile-header-menu ul li a {
    white-space: nowrap; /* Ensure link text stays on one line */
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-decoration: none;
    color: #031d6d;
    font-weight: bold;
}

/* Hide submenus by default in mobile header */
.mobile-header-menu .menu-item-has-children ul {
    display: none;
}

/* Show submenu when parent is expanded */
.mobile-header-menu .menu-item-has-children.expanded > ul {
    display: block;
}

/* Arrow indicator for parent menu items */
.mobile-header-menu .menu-item-has-children > a::after {
    content: "▼";
    font-size: 12px;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.2s;
}

/* Rotate arrow when expanded */
.mobile-header-menu .menu-item-has-children.expanded > a::after {
    transform: rotate(180deg);
}

/* Force hide submenus by default with !important */
.hamburger-menu-categories .menu-item-has-children ul {
    display: block !important; /* Change from none to block */
    max-height: 0; /* Use max-height instead of display for animation */
    overflow: hidden; /* Hide content when collapsed */
    padding-left: 0;
    background: none;
    position: static;
    box-shadow: none;
    margin-top: 0;
    margin-bottom: 0;
    opacity: 0; /* Start invisible */
    transform: translateY(-10px); /* Start slightly up */
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease, 
                transform 0.3s ease; /* Smooth transitions */
}

/* Show when parent has expanded class */
.hamburger-menu-categories .menu-item-has-children.expanded > ul {
    max-height: 500px; /* Enough space for all submenu items */
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to normal position */
}

/* Style the parent menu item */
.hamburger-menu-categories .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Indent the submenu items MORE */
.hamburger-menu-categories .menu-item-has-children ul li {
    border-bottom: 1px solid #e5e5e5;
    margin-left: 20px; /* Add additional margin for more indentation */
    opacity: 0; /* Start invisible */
    transition: transform 0.2s ease, opacity 0.2s ease; /* Individual item animation */
}

/* Animate submenu items when expanded */
.hamburger-menu-categories .menu-item-has-children.expanded ul li {
    transform: translateX(0); /* Move to normal position */
    opacity: 1; /* Fully visible */
    transition-delay: 0.1s; /* Slight delay for stagger effect */
}

.hamburger-menu-categories .menu-item-has-children ul li a {
    font-size: 15px !important; /* Smaller font for submenu items */
    color: #888 !important; /* Lighter color for submenu items */
    font-weight: bold !important; /* Less bold for submenu items */
}

/* Arrow indicator */
.hamburger-menu-categories .menu-item-has-children > a::after {
    content: "▼";
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth arrow rotation */
    flex-shrink: 0; /* Prevent arrow from shrinking */
}

.hamburger-menu-categories .menu-item-has-children.expanded > a::after {
    transform: rotate(180deg);
}

/* Profile Menu Overlay */
.profile-menu-overlay {
    position: fixed;
    top: 45px;
    right: 25px;
    /* width: 300px;
    height: 300px; */
    background: #f3f4f6;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.profile-menu-overlay .profile-menu-user {
    display: flex;
    justify-content: space-between;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #aab7b8;
    padding: 0;
}

.profile-menu-user span {
    max-width: 150px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.profile-menu-overlay .profile-menu-user a{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: bold;
}

.profile-menu-overlay .profile-menu-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.profile-menu-overlay .profile-menu-user .profile-initials {
    width: 40px;
    height: 40px;
    background: #a7d5fa;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.profile-menu-overlay .profile-menu-user .profile-menu-close {
    display: flex;
    align-items: center;
}

.profile-menu-overlay .profile-menu-user .profile-menu-close button {
    display: flex;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #aab7b8;
    padding: 0;
}

.profile-menu-overlay .profile-menu-links {
    margin-top: 10px;
    border-top: 1px solid #ccc;
    padding: 10px 0;
}

.profile-menu-overlay .profile-menu-links ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding-left: 40px;
    margin: 10px 0;
}

.profile-menu-overlay .profile-menu-links a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
}

.profile-menu-overlay .profile-menu-links .highlight {
    background: #FFD60A;
    padding: 5px 10px;
    border-radius: 8px;
}

.profile-menu-overlay .profile-menu-logout {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
    border-top: 1px solid #ccc;
}

.profile-menu-overlay .profile-menu-logout a {
    color: #fff;
}

.profile-menu-overlay .profile-menu-logout button {
    background: #031d6d;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

/* Hamburger Menu Overlay */
.hamburger-mobile {
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.hamburger-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 350px;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    overflow-y: auto;
    /* Animation styles */
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-mobile.active .hamburger-menu-overlay,
.hamburger-menu-overlay.open {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
}

/* Optionally, add a backdrop for better UX */
.hamburger-mobile-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.hamburger-mobile.active .hamburger-mobile-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.hamburger-mobile.active .hamburger-menu-overlay {
    transform: translateX(0);
}

.hamburger-menu-overlay::-webkit-scrollbar {
    scrollbar-width: none; /* Hide scrollbar for WebKit browsers */
}

.hamburger-menu-overlay .hamburger-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger-menu-overlay .hamburger-menu-header .hamburger-menu-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.hamburger-menu-overlay .hamburger-menu-header .hamburger-menu-user span {
    max-width: 130px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.hamburger-menu-overlay .hamburger-menu-header .hamburger-menu-user .profile-initials {
    width: 48px;
    height: 48px;
    background: #a7d5fa;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.hamburger-menu-overlay .hamburger-menu-header .hamburger-menu-user a{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #031d6d;
    font-size: 16px;
    font-weight: bold;
}

.hamburger-menu-overlay .hamburger-menu-header .hamburger-menu-close {
    display: flex;
    align-items: center;
    /* gap: 8px; */
    color: #aab7b8;
    font-size: 18px;
    font-weight: bold;
}

.hamburger-menu-overlay .hamburger-menu-header .hamburger-menu-close p {
    margin: 0;
    font-size: 16px;
}

.hamburger-menu-overlay .hamburger-menu-header .hamburger-menu-close button {
    display: flex;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #aab7b8;
    padding: 0;
}

.hamburger-menu-overlay .hamburger-menu-top {
    margin-top: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.hamburger-menu-overlay .hamburger-menu-top .hamburger-search-bar {
    display: flex;
    position: relative;
    margin-bottom: 20px;
}

.hamburger-menu-overlay .hamburger-menu-top .hamburger-search-bar input {
    width: 100%;
    padding: 9px 50px 9px 16px;
    /* border: 1px solid #ccc; */
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background-color: #fff;
    border: 1px solid #031d6d;
}

.hamburger-menu-overlay .hamburger-menu-top .hamburger-search-bar :placeholder-shown {
    font-style: italic;
    color: #aab7b8;
}

.hamburger-menu-overlay .hamburger-menu-top .hamburger-search-bar input:focus {
    border-color: #031d6d;
    box-shadow: 0 0 0 2px rgba(3, 29, 109, 0.1);
}

.hamburger-menu-overlay .hamburger-menu-top .hamburger-search-bar button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #031d6d !important;
    border: none !important;
    border-radius: 0 8px 8px 0 !important;
    width: 46px;
    height: 38px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.hamburger-menu-overlay .hamburger-menu-top .hamburger-search-bar button:hover {
    background: #021a5c;
}

.hamburger-menu-overlay .hamburger-menu-top .hamburger-menu-account a {
    background: #d1ebeb;
    padding: 5px 20px;
    border-radius: 8px;
    color: #031d6d;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.hamburger-menu-overlay .hamburger-menu-top .hamburger-menu-support a {
    background: #FFD60A;
    padding: 5px 20px;
    border-radius: 8px;
    color: #031d6d;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.hamburger-menu-overlay .hamburger-menu-top .hamburger-menu-support a:hover {
    background: #e6c109;
}

.hamburger-menu-overlay .hamburger-menu-categories h3 {
    color: #013b72;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: bold;
}

.hamburger-menu-overlay .hamburger-menu-categories ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.hamburger-menu-overlay .hamburger-menu-categories ul li {
    padding: 14px 0;
    border-bottom: 1px solid #d5dbdb;
}

.hamburger-menu-overlay .hamburger-menu-categories ul li a {
    text-decoration: none;
    color: #616161;
    font-size: 18px;
    font-weight: bold;
}

.hamburger-menu-overlay .hamburger-menu-extras {
    margin: 20px 0;
}

.hamburger-menu-overlay .hamburger-menu-extras h3 {
    color: #013b72;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
}

.hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 8px;
}

.hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cards a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cards a img {
    height: 60px;
    width: auto;
    /* border: #000 solid 1px; */
    border-radius: 8px;
    object-fit: cover;
}

.hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cta {
    margin-top: 40px;
    padding: 15px;
    background: #f3f4f6;
    border-radius: 8px;
    border: 1px dashed #a7d5fa;
    text-align: center;
}

.hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cta h3 {
    color: #031d6d;
    margin: 0;
    font-weight: bold;
    font-size: 20px;
}

.hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cta .highlight {
    background: linear-gradient(to top, #a7d5fa 0%, #a7d5fa 50%, transparent 50%, transparent 100%);
    padding: 5px;
}

.hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cta p {
    color: #242424;
    font-size: 16px;
    text-align: center;
    margin: 10px 0 0 0;
}

.hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cta a {
    display: inline-block;
    margin-top: 10px;
    background: #031d6d;
    color: #fff;
    padding: 5px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.hamburger-menu-overlay .hamburger-menu-activities {
    padding: 0 0 20px 0;
    border-bottom: 2px solid #013b72;
}

.hamburger-menu-overlay .hamburger-menu-activities h3 {
    color: #013b72;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

.hamburger-menu-overlay .hamburger-menu-activities a {
    display: block;
    text-decoration: none;
    color: #616161;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 0;
}

.hamburger-menu-overlay .hamburger-menu-activities a.seperate {
    border-bottom: 1px solid #d5dbdb;
}

.hamburger-menu-overlay .hamburger-menu-footer {
    margin-top: 20px;
}

.hamburger-menu-overlay .hamburger-menu-footer .hamburger-menu-footer-links {
    display: flex;
    flex-direction: column;
}

.hamburger-menu-overlay .hamburger-menu-footer .hamburger-menu-footer-links a {
    text-decoration: none;
    color: #013b72;
    font-size: 16px;
    font-weight: bold;
    padding: 14px 0;
}

.hamburger-menu-overlay .hamburger-menu-footer .hamburger-menu-footer-links a.seperate {
    border-bottom: 1px solid #d5dbdb;
}

.hamburger-menu-overlay .hamburger-menu-footer .hamburger-menu-footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.hamburger-menu-overlay .hamburger-menu-footer .hamburger-menu-footer-socials a {
    text-decoration: none;
    color: #013b72;
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 1023px) {
    .desktop-header, .desktop-sticky-header {
        display: none;
    }

    .profile-menu-user span {
        max-width: 130px;
    }

    .jeg_container, .jeg_container_full {
        padding-top: 70px !important;
    }
}

@media (min-width: 1024px) {
    .mobile-header {
        display: none;
    }

    .profile-mobile {
        display: none;
    }

    .profile-menu-overlay {
        position: absolute;
        top: 40px;
        width: 350px;
    }

    .profile-desktop {
        display: block !important; /* Always in DOM, but hidden by default */
        pointer-events: none;
    }
    .profile-desktop .profile-menu-overlay {
        opacity: 0;
        transform: scale(0.97);
        transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1);
        pointer-events: none;
    }
    .profile-desktop.active {
        pointer-events: auto;
    }
    .profile-desktop.active .profile-menu-overlay {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }
    /* Hide when not active */
    .profile-desktop:not(.active) .profile-menu-overlay {
        opacity: 0;
        pointer-events: none;
    }
    .hamburger-menu-overlay {
        max-width: 380px;
    }
    .profile-menu-user span {
        max-width: 170px;
    }
}

/* Dark mode styles for Desktop Bottom Menu Header */
body.jnews-dark-mode ul.sub-menu {
    background: #4a4a4a;
}

/* Dark mode styles for Desktop Sticky Header */
body.jnews-dark-mode .desktop-sticky-header .sticky-header,
body.jeg-dark-mode .desktop-sticky-header .sticky-header {
    background: #1a1a1a;
    border-bottom: 1px solid #404040;
}

body.jnews-dark-mode .sticky-header .sticky-header-menu li a,
body.jeg-dark-mode .sticky-header .sticky-header-menu li a {
    color: #60a5fa;
}

body.jnews-dark-mode .sticky-header .sticky-header-menu li a:hover,
body.jeg-dark-mode .sticky-header .sticky-header-menu li a:hover {
    color: #93c5fd;
}

body.jnews-dark-mode .sticky-header .sticky-header-menu ul ul,
body.jeg-dark-mode .sticky-header .sticky-header-menu ul ul {
    background: #2d2d2d;
    border: 1px solid #404040;
}

body.jnews-dark-mode .sticky-header .sticky-header-menu ul ul li a,
body.jeg-dark-mode .sticky-header .sticky-header-menu ul ul li a {
    color: #d1d5db;
}

body.jnews-dark-mode .sticky-header .sticky-header-menu ul ul li a:hover,
body.jeg-dark-mode .sticky-header .sticky-header-menu ul ul li a:hover {
    background: #374151;
    color: #ffffff;
}

body.jnews-dark-mode .sticky-header .sticky-header-menu ul li.has-children > a::after,
body.jnews-dark-mode .sticky-header .sticky-header-menu ul li.menu-item-has-children > a::after,
body.jeg-dark-mode .sticky-header .sticky-header-menu ul li.has-children > a::after,
body.jeg-dark-mode .sticky-header .sticky-header-menu ul li.menu-item-has-children > a::after {
    color: #60a5fa;
}

body.jnews-dark-mode .sticky-header .sticky-search-bar-wrapper input,
body.jeg-dark-mode .sticky-header .sticky-search-bar-wrapper input {
    background-color: #2d2d2d;
    border-color: #4a5568;
    color: #ffffff;
}

body.jnews-dark-mode .sticky-header .sticky-search-bar-wrapper input::placeholder,
body.jeg-dark-mode .sticky-header .sticky-search-bar-wrapper input::placeholder {
    color: #9ca3af;
}

body.jnews-dark-mode .sticky-header .sticky-search-bar-wrapper input:focus,
body.jeg-dark-mode .sticky-header .sticky-search-bar-wrapper input:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.1);
}

body.jnews-dark-mode .sticky-header .sticky-header-right .login-btn,
body.jeg-dark-mode .sticky-header .sticky-header-right .login-btn {
    color: #60a5fa;
}

/* Dark mode styles for Hamburger Menu Overlay */
body.jnews-dark-mode .hamburger-menu-overlay,
body.jeg-dark-mode .hamburger-menu-overlay {
    background: #1a1a1a;
    color: #ffffff;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-header .hamburger-menu-user a,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-header .hamburger-menu-user a {
    color: #ffffff;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-header .hamburger-menu-close,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-header .hamburger-menu-close {
    color: #9ca3af;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-top,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-top {
    border-bottom-color: #404040;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-top .hamburger-search-bar input,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-top .hamburger-search-bar input {
    background-color: #2d2d2d;
    border-color: #4a5568;
    color: #ffffff;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-top .hamburger-search-bar input::placeholder,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-top .hamburger-search-bar input::placeholder {
    color: #9ca3af;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-categories h3,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-categories h3 {
    color: #60a5fa;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-categories ul li,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-categories ul li {
    border-bottom-color: #404040;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-categories ul li a,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-categories ul li a {
    color: #d1d5db;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-categories .menu-item-has-children ul li a,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-categories .menu-item-has-children ul li a {
    color: #9ca3af !important;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-extras h3,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-extras h3 {
    color: #60a5fa;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cta,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cta {
    background: #2d2d2d;
    border-color: #4a5568;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cta h3,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cta h3 {
    color: #ffffff;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cta p,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-extras .hamburger-menu-extras-cta p {
    color: #d1d5db;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-activities,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-activities {
    border-bottom-color: #60a5fa;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-activities h3,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-activities h3 {
    color: #60a5fa;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-activities a,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-activities a {
    color: #d1d5db;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-activities a.seperate,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-activities a.seperate {
    border-bottom-color: #404040;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-footer .hamburger-menu-footer-links a,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-footer .hamburger-menu-footer-links a {
    color: #60a5fa;
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-footer .hamburger-menu-footer-links a.seperate,
body.jeg-dark-mode .hamburger-menu-overlay .hamburger-menu-footer .hamburger-menu-footer-links a.seperate {
    border-bottom-color: #404040;
}

/* Dark mode styles for Profile Menu Overlay */
body.jnews-dark-mode .profile-menu-overlay,
body.jeg-dark-mode .profile-menu-overlay {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #404040;
}

body.jnews-dark-mode .profile-menu-overlay .profile-menu-user a,
body.jeg-dark-mode .profile-menu-overlay .profile-menu-user a {
    color: #ffffff;
}

body.jnews-dark-mode .profile-menu-overlay .profile-menu-user .profile-menu-close button,
body.jeg-dark-mode .profile-menu-overlay .profile-menu-user .profile-menu-close button {
    color: #9ca3af;
}

body.jnews-dark-mode .profile-menu-overlay .profile-menu-links,
body.jeg-dark-mode .profile-menu-overlay .profile-menu-links {
    border-top-color: #404040;
}

body.jnews-dark-mode .profile-menu-overlay .profile-menu-links a,
body.jeg-dark-mode .profile-menu-overlay .profile-menu-links a {
    color: #d1d5db;
}

body.jnews-dark-mode .profile-menu-overlay .profile-menu-logout,
body.jeg-dark-mode .profile-menu-overlay .profile-menu-logout {
    border-top-color: #404040;
}

body.jnews-dark-mode .profile-menu-overlay .profile-menu-logout button,
body.jeg-dark-mode .profile-menu-overlay .profile-menu-logout button {
    background: #374151;
    color: #ffffff;
}

body.jnews-dark-mode .profile-menu-overlay .profile-menu-logout button:hover,
body.jeg-dark-mode .profile-menu-overlay .profile-menu-logout button:hover {
    background: #4b5563;
}

/* Dark mode - Change search icon to hamburger icon */
body.jnews-dark-mode .bottom-search-btn img,
body.jeg-dark-mode .bottom-search-btn img,
body.jnews-dark-mode .sticky-search-btn img,
body.jeg-dark-mode .sticky-search-btn img {
    content: url('https://luatkhoa.com/wp-content/uploads/2025/09/hamburger-white.png');
}

body.jnews-dark-mode .bottom-search-btn img[src*="hamburger-white.png"],
body.jeg-dark-mode .bottom-search-btn img[src*="hamburger-white.png"],
body.jnews-dark-mode .sticky-search-btn img[src*="hamburger-white.png"],
body.jeg-dark-mode .sticky-search-btn img[src*="hamburger-white.png"] {
    content: url('https://luatkhoa.com/wp-content/uploads/2025/09/search.png');
}

body.jnews-dark-mode .hamburger-menu-overlay .hamburger-menu-top .hamburger-menu-account a {
    color: #000 !important;
}

/* Dark Mode Style for Homepage Video Section */
body.jnews-dark-mode .special-publications-wrapper {
    background: #2a2a2a;
}

body.jnews-dark-mode .special-section-header {
    border-bottom: 2px solid #4a4a4a;
}

body.jnews-dark-mode .an-pham-grid, 
body.jnews-dark-mode .bao-thang-grid {
    scrollbar-color: #4a4a4a #1a1a1a;
}

/* Dark Mode Style for Homepage Video Section */
body.jnews-dark-mode .horizontal-video-info {
    background: #1a1a1a;
}

/* Dark Mode Style for Homepage Banners */
body.jnews-dark-mode .wp-block-group.membership-support-block.is-vertical {
    background: #4b4b4b;
}

body.jnews-dark-mode .wp-block-group.membership-support-block.is-vertical a {
    color: #000 !important;
}

body.jnews-dark-mode .wp-block-group.newsletter-block.is-vertical, 
body.jnews-dark-mode .wp-block-group.membership-banner-cta27.is-vertical {
    background: #4b4b4b;
}

body.jnews-dark-mode .newsletter-block a, .membership-banner-cta27 a {
    color: #000 !important;
}

body.jnews-dark-mode .newsletter-container-wrapper {
    background: #4b4b4b;
}

/* Dark mode styles for Article Page */
body.jnews-dark-mode .jnews-custom-sidebar {
    background: #4a4a4a;
    border: none;
}

body.jnews-dark-mode .wp-block-group.membership-banner-cta1.banner-variant-a.is-vertical {
    background: #4b4b4b;
}

/* Dark mode style for Slideup Banner */

body.jnews-dark-mode .luatkhoa-banner {
    background: #5a5a5a;
}

body.jnews-dark-mode .luatkhoa-banner-toggle {
    color: #ccc;
}

body.jnews-dark-mode .luatkhoa-banner-cta-wrapper .luatkhoa-banner-cta {
    color: #000 !important;
}

/* Dark mode styles for Bao Thang Page */
body.jnews-dark-mode .btn-tai-bao {
    color: #000 !important;
}

body.jnews-dark-mode .tag-article-item {
    background-color: #4a4a4a;
}

/* Dark mode styles for Tang Bao */
body.jnews-dark-mode .donation-section,
body.jnews-dark-mode .message-sidebar,
body.jnews-dark-mode .student-registration,
body.jnews-dark-mode .donor-list-section,
body.jnews-dark-mode .updates-section {
    background: #2b2b2b;
}

body.jnews-dark-mode .package-display, 
body.jnews-dark-mode .confirmation-summary,
body.jnews-dark-mode .update-item {
    background: #4a4a4a;
}

body.jnews-dark-mode .message-sidebar p {
    background: #5a5a5a;
}

body.jnews-dark-mode .donor-name,
body.jnews-dark-mode .donor-amount,
body.jnews-dark-mode .update-date,
body.jnews-dark-mode .summary-label {
    color: #fff;
}

body.jnews-dark-mode .summary-value {
    color: #9d9d9d;
}

/* Dark mode style for Tang Bao */
body.jnews-dark-mode .donation-container {
    background: transparent;
}

body.jnews-dark-mode .pmpro-milestone-container,
body.jnews-dark-mode .donation-box,
body.jnews-dark-mode .special-supporter-section {
    background: #4a4a4a;
}

body.jnews-dark-mode .membership-info {
    color: #000;
}

body.jnews-dark-mode .confirmation-box {
    background: #5a5a5a;
}

body.jnews-dark-mode .confirmation-box .confirmation-row span,
body.jnews-dark-mode .confirmation-box .confirmation-row strong {
    color: #fff !important;
}

body.jnews-dark-mode .special-supporter-title {
    color: #fff !important;
}

body.jnews-dark-mode .special-supporter-date {
    color: #9d9d9d !important;
}

body.jnews-dark-mode .donor-message {
    color: #e0e0e0 !important;
}

/* Dark mode style for Membership Landing */
body.jnews-dark-mode .pwyw-card {
    background: #2b2b2b;
    border: 1px solid #4a4a4a;
}

body.jnews-dark-mode .faq-item {
    background: #2b2b2b;
}

body.jnews-dark-mode .faq-item .answer {
    background: #4a4a4a;
}

/* Dark mode style for Video Category */
body.jnews-dark-mode .video-category-page {
    background-color: transparent;
}

body.jnews-dark-mode .video-page-header {
    background: transparent;
}

body.jnews-dark-mode .hero-info,
body.jnews-dark-mode .video-card,
body.jnews-dark-mode .post-card {
    background: #2a2a2a;
}

/* Dark mode style for Limited LK 11th Header Banner */
body.jnews-dark-mode .lk-anniversary-banner .desktop p {
    color: #000 !important;
}

/* Dark mode style for Popup Banner */
body.jnews-dark-mode .ays-pb-modal.ays-pb-modal_12.ays-popup-box-main-box.ays-pb-bg-styles_12.ays-pb-border-mobile_12.fadeIn {
    background-color: #2b2b2b !important;
    border: 1px solid #4a4a4a !important;
}