/* Fonts */
@font-face {
    font-family: 'Fontin SmallCaps';
    src: url('../fonts/Fontin-SmallCaps.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Visually hidden class for SEO/Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Body */
body {
    font-family: 'Fontin SmallCaps', Arial, sans-serif;
    background-color: #0d0d0d;
    color: #dde5de;
    line-height: 1.6;
    overflow-x: hidden;
    zoom: 0.9;
}

/* Custom Cursors */
html,
body {
    cursor: url('../images/cursor.png'), auto;
}

a,
button,
.pointer,
.clickable,
input[type="submit"],
input[type="button"],
label,
select,
option,
.notification-badge,
.menu-item a,
.base-type-category-tag,
.mod-suggestions div,
.iiq-toggle,
.filter-toggle,
.star-icon,
.poe-hoverable,
.item-whisper,
.ownership-info,
.sidebar-widgets .widget_polylang ul li a {
    cursor: url('../images/pointer.png'), pointer !important;
}

/* Boxed layout */
body.boxed {
    background-color: #0d0d0d;
    padding: 0 !important;
    margin: 0;
    overflow-x: hidden;
}

/* Page wrapper - Flex layout: content + sidebar */
.page-wrapper {
    display: flex;
    width: 100%;
    max-width: 100%;
    position: relative;
    min-height: 100vh;
}

/* Main boxed container - flexible width, fills remaining space */
.boxed-container {
    flex: 1;
    min-width: 0;
    background-color: #1a1b1b;
    border-right: 1px solid #302E2E;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Header with full image display */
.header__page-header {
    width: 100%;
    max-width: 100%;
    background-color: #1a1b1b;
    position: relative;
    overflow: hidden;
}

.header__page-header .header-image {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    display: block;
    object-position: center top;
}

/* Header - background image for home page */
.site-header {
    width: 100%;
    height: 100vh;
    background-image: url('../images/bg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    position: relative;
}

/* Builds page header */
/* Builds page header handled by img tag now */
/* body.builds-page .site-header { ... } */

/* Standard page header */
body.standard-page .site-header {
    height: 300px;
    background-image: url('../images/poe1standard.png');
    background-size: cover;
    background-position: center top;
}

/* Main content area */
.main-content {
    padding: 20px 30px 40px 30px;
    background-color: #1a1b1b;
    min-height: 100vh;
}

/* Sidebar - Fixed width, on the right side */
.hovercraft {
    width: 380px;
    min-width: 380px;
    flex-shrink: 0;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #191e27;
    border-left: 1px solid rgba(57, 60, 67, 0.7);
    z-index: 1000;
    scrollbar-width: none;
    /* Firefox: Hide scrollbar */
    -ms-overflow-style: none;
    /* IE/Edge: Hide scrollbar */
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background-color: #191e27;
}

/* Sidebar Widgets */
.sidebar-widgets {
    padding: 15px 20px 5px 20px;
    border-bottom: 1px solid rgba(57, 60, 67, 0.7);
}

/* ... existing styles ... */

/* Main boxed container - flexible width, fills remaining space */
.boxed-container {
    flex: 1;
    min-width: 0;
    background-color: #1a1b1b;
    border-right: 1px solid #302E2E;
    min-height: 100vh;
    box-sizing: border-box;
    margin-right: 380px;
    /* Reserve space for fixed sidebar */
}

/* ... existing styles ... */

/* ========================================
   RESPONSIVE BREAKPOINTS (Consolidated)
======================================== */

@media (max-width: 991px) {
    .page-wrapper {
        flex-direction: column !important;
    }

    .boxed-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
    }

    .hovercraft {
        position: relative !important;
        width: 100% !important;
        min-width: 100% !important;
        height: auto !important;
        order: -1 !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }
}

/* Language Selector */
.widget_polylang ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    gap: 8px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(57, 60, 67, 0.7);
    justify-content: center;
    flex-wrap: wrap;
}

.widget_polylang ul li {
    display: inline;
}

.widget_polylang ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.75rem;
    padding: 4px 8px;
    transition: color 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.widget_polylang ul li a:hover,
.widget_polylang ul li a.active {
    color: #c49c50;
}

/* Custom Header Links */
.custom-header-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.custom-header-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffbb33;
    font-family: 'Fontin SmallCaps', sans-serif;
    font-size: 17px;
    transition: opacity 0.2s ease;
    padding: 3px 40px 3px 60px;
    border-radius: 5px;
    position: relative;
    height: 32px;
    line-height: 1.2;
    font-weight: bold;
}

.custom-header-link:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 5%, #333 50%, transparent 95%);
}

.custom-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    object-fit: contain;
}

.question-mark-icon {
    width: 30px;
    height: 19px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    object-fit: contain;
}

.custom-header-links .custom-header-link:nth-child(1)>span:not(.popup),
.custom-header-links .custom-header-link:nth-child(2)>span:not(.popup) {
    color: #e07e22;
}

/* Extension group */
.extension-group {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    flex-wrap: nowrap;
}

.extension-text {
    color: #ffbb33;
    font-size: 17px;
    font-weight: bold;
}

.extension-group a {
    cursor: url('../images/pointer.png') 8 0, pointer !important;
}

.browser-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Popup tooltips */
.popup {
    display: none;
    position: absolute;
    background-color: #222;
    color: #ffbb33;
    padding: 12px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 9999;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.9);
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border: 2px solid #ffbb33;
    max-width: 280px;
    min-width: 250px;
    line-height: 1.6;
}

.custom-header-link:hover .popup {
    display: block;
}

.popup .red-text {
    color: #ff4444;
    font-weight: bold;
}

/* Shop Status Box */
.shop-status-box {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ffbb33;
    font-size: 20px;
    padding: 3px 10px;
    background: linear-gradient(to right, #11131A, #0A0E17);
    border-top: 1px solid rgba(57, 60, 67, 0.7);
    border-bottom: 1px solid rgba(57, 60, 67, 0.7);
}

.shop-status-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #ff6000, transparent);
}

.shop-status-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #ff6000, transparent);
}

.status-text {
    color: #ffbb33;
    padding-left: 0;
}

.status-icon {
    position: absolute;
    left: 33px;
    transform: Translatex(1px) !important;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.status-icon.online {
    background: radial-gradient(circle, #ff6000 20%, #ffbb33 80%);
    animation: flame-flicker 1.5s infinite;
}

.status-icon.offline {
    background: radial-gradient(circle, #5a4a3a 20%, #6a5a4a 80%);
    box-shadow: none;
    opacity: 0.6;
}

@keyframes flame-flicker {

    0%,
    100% {
        box-shadow: 0 0 3px 1px rgba(255, 96, 0, 0.5), 0 0 6px 2px rgba(255, 187, 51, 0.2);
        transform: translateY(-50%) scale(1);
    }

    50% {
        box-shadow: 0 0 5px 2px rgba(255, 96, 0, 0.6), 0 0 8px 3px rgba(255, 187, 51, 0.3);
        transform: translateY(-50%) scale(1.05);
    }
}

/* Notification Badge */
.tft-notification-badge {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    cursor: pointer;
}

.notification-badge {
    position: relative;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.notification-badge::before {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background-image: url('../images/bell.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
}

.notification-badge[data-count]:not([data-count="0"])::before {
    filter: grayscale(1) brightness(2) sepia(1) hue-rotate(-10deg) saturate(5) drop-shadow(0 0 8px #ff6000);
    opacity: 1;
    animation: bell-pulse 2s infinite;
}

.notification-badge::after {
    content: attr(data-count);
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0;
    line-height: 18px;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.4) 20%, rgba(255, 96, 0, 0.25) 80%);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-badge[data-count="0"]::after {
    display: none;
}

.notification-badge[data-count]:not([data-count="0"])::after {
    background: radial-gradient(circle, #ff4500 20%, #ff6b35 80%);
    box-shadow: 0 0 4px 1px rgba(255, 69, 0, 0.6), 0 0 8px 2px rgba(255, 107, 53, 0.4);
    animation: number-pulse 2s infinite;
}

@keyframes bell-pulse {

    0%,
    100% {
        filter: grayscale(1) brightness(2) sepia(1) hue-rotate(-10deg) saturate(5) drop-shadow(0 0 4px rgba(255, 107, 53, 0.6));
    }

    50% {
        filter: grayscale(1) brightness(2.2) sepia(1) hue-rotate(-10deg) saturate(6) drop-shadow(0 0 8px rgba(255, 107, 53, 0.8));
    }
}

@keyframes number-pulse {

    0%,
    100% {
        box-shadow: 0 0 4px 1px rgba(255, 69, 0, 0.6), 0 0 8px 2px rgba(255, 107, 53, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 6px 2px rgba(255, 69, 0, 0.8), 0 0 12px 3px rgba(255, 107, 53, 0.6);
        transform: scale(1.05);
    }
}

/* Main Navigation */
.main-navigation {
    padding: 16px 20px 5px 20px;
    border-top: 1px solid rgba(57, 60, 67, 0.7);
    background-color: #191e27;
    flex: 1;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-navigation .menu-item a {
    font-size: 17px;
    position: relative;
    padding: 8px 40px 8px 60px;
    display: block;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(to right, transparent 5%, #333 50%, transparent 95%) bottom / 100% 1px no-repeat;
    transition: all 0.2s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    font-weight: bold;
}

.main-navigation .menu-item:first-child a {
    background: linear-gradient(to right, transparent 5%, #333 50%, transparent 95%) bottom / 100% 1px no-repeat,
        linear-gradient(to right, transparent 5%, rgba(51, 51, 51, 0) 50%, transparent 95%) top / 100% 1px no-repeat;
}

.main-navigation .menu-item:last-child a {
    background: linear-gradient(to right, transparent 5%, rgba(51, 51, 51, 0) 50%, transparent 95%) bottom / 100% 1px no-repeat;
}

.main-navigation .menu-item a::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.main-navigation .menu-item-poe2 a {
    color: #ea683e;
}

.main-navigation .menu-item-poe2 a::before {
    background-image: url('../images/poe2icon.png');
}

.main-navigation .menu-item-poe2 a:hover {
    outline: 2px solid #ea683e;
}

.main-navigation .menu-item-mirror a {
    color: #ffc555;
}

.main-navigation .menu-item-mirror a::before {
    background-image: url('../images/tfticon.png');
}

.main-navigation .menu-item-mirror a:hover {
    outline: 2px solid #ffc555;
}

.main-navigation .menu-item-poe1 a {
    color: #ffc555;
}

.main-navigation .menu-item-poe1 a::before {
    background-image: url('../images/poeicon.png');
}

.main-navigation .menu-item-poe1 a:hover {
    outline: 2px solid #ffc555;
}

.main-navigation .menu-item-keepers a {
    color: #e67e22;
}

.main-navigation .menu-item-keepers a::before {
    background-image: url('../images/poeicon.png');
}

.main-navigation .menu-item-keepers a:hover {
    outline: 2px solid #e67e22;
}

.main-navigation .menu-item a:hover {
    background: linear-gradient(to bottom, rgba(40, 45, 55, 0.9), rgba(30, 35, 45, 0.7));
    outline-offset: 2px;
    border-radius: 4px;
    z-index: 50;
}

.main-navigation .current-menu-item>a {
    background: linear-gradient(to bottom, rgba(80, 20, 5, 0.5), rgba(210, 50, 20, 0.5)) !important;
    border-radius: 5px;
    position: relative;
}

/* Global Scrollbar Styles */
body::-webkit-scrollbar,
html::-webkit-scrollbar {
    width: 12px !important;
    height: 12px !important;
}

aside.hovercraft::-webkit-scrollbar,
.hovercraft::-webkit-scrollbar,
.sidebar-inner::-webkit-scrollbar,
.sidebar--sticky::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
    display: none !important;
    /* Chrome/Safari: Hide scrollbar */
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
    background: #0a0a0a !important;
}

aside.hovercraft::-webkit-scrollbar-track,
.hovercraft::-webkit-scrollbar-track,
.sidebar-inner::-webkit-scrollbar-track,
.sidebar--sticky::-webkit-scrollbar-track {
    background: transparent !important;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4743c 0%, #b85a2a 100%) !important;
    border-radius: 6px !important;
    border: 1px solid #8b4513 !important;
}

aside.hovercraft::-webkit-scrollbar-thumb,
.hovercraft::-webkit-scrollbar-thumb,
.sidebar-inner::-webkit-scrollbar-thumb,
.sidebar--sticky::-webkit-scrollbar-thumb {
    background: #5a4a3a !important;
    /* Darker, less vibrant thumb for sidebar */
    border-radius: 3px !important;
    border: none !important;
}

body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e88a50 0%, #d4743c 100%) !important;
}

aside.hovercraft::-webkit-scrollbar-thumb:hover,
.hovercraft::-webkit-scrollbar-thumb:hover,
.sidebar-inner::-webkit-scrollbar-thumb:hover,
.sidebar--sticky::-webkit-scrollbar-thumb:hover {
    background: #c49c50 !important;
}

/* Firefox scrollbar support */
body,
html,
.sidebar--sticky,
.sidebar-inner {
    scrollbar-color: #d4743c #0a0a0a !important;
}

/* Responsive */

/* Badge Tooltip */
.badge-tooltip {
    display: none;
    position: fixed;
    background-color: #11131a;
    border: 1px solid #302E2E;
    border-radius: 5px;
    padding: 15px;
    z-index: 10001;
    color: #a8b5d1;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    max-height: 80vh;
    overflow-y: auto;
    min-width: 436px;
}

.tooltip-close-btn {
    display: none;
    position: absolute;
    top: -5px;
    left: 0;
    cursor: pointer;
    font-size: 24px;
    color: #f96400;
    transition: color 0.2s;
    z-index: 10002;
    line-height: 1;
}

.tooltip-close-btn:hover {
    color: #ffb630;
}

@media (max-width: 768px) {
    .badge-tooltip {
        width: 90vw !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        min-width: unset !important;
        position: fixed !important;
    }

    .tooltip-close-btn {
        display: block;
        top: 0px !important;
    }
}

/* Fix for Mobile Popup Cutoff */
@media (max-width: 991px) {
    .popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        max-width: 350px;
        min-width: unset;
        z-index: 99999;
        white-space: normal !important;
        text-align: center;
    }
}

.badge-tooltip.show {
    display: block;
}

.sidebar-footer {
    padding: 20px;
    text-align: center;
    font-size: 11px;
    color: #666;
    background-color: #191e27;
    border-top: 1px solid rgba(57, 60, 67, 0.7);
    margin-top: auto;
}

.sidebar-footer p {
    margin: 5px 0;
    line-height: 1.4;
}

.badge-tooltip::-webkit-scrollbar {
    width: 6px;
}

.badge-tooltip::-webkit-scrollbar-track {
    background: #0d1120;
}

.badge-tooltip::-webkit-scrollbar-thumb {
    background: #302E2E;
    border-radius: 3px;
}

/* Weapon Subcategories Section */
.weapon-section {
    display: none;
    clear: both;
    width: 100%;
    margin-top: 10px;
}

.weapon-section.visible {
    display: block;
}

.weapon-count {
    font-size: 0.85em;
    color: #8a8a8a;
    margin-left: 4px;
}

/* Active Menu Animated Border */
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate-border {
    0% {
        --angle: 0deg;
    }

    100% {
        --angle: 360deg;
    }
}

.main-navigation .current-menu-item>a::after {
    content: '';
    position: absolute;
    inset: 0px;
    border-radius: inherit;
    background: conic-gradient(from var(--angle),
            transparent 0deg,
            transparent 20deg,
            #ff6600 345deg,
            #ff8800 350deg,
            #ffaa00 355deg,
            #ff8800 357deg,
            #ff6600 360deg,
            transparent 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    padding: 2px;
    animation: rotate-border 1.5s linear infinite;
    pointer-events: none;
    z-index: 10;
}

/* ========================================
   RESPONSIVE BREAKPOINTS (Consolidated)
======================================== */

@media (max-width: 991px) {
    .page-wrapper {
        flex-direction: column !important;
    }

    .boxed-container {
        width: 100% !important;
        max-width: 100% !important;
        border-right: none !important;
    }

    .hovercraft {
        position: relative !important;
        width: 100% !important;
        min-width: 100% !important;
        height: auto !important;
        order: -1 !important;
    }
}

@media (max-width: 768px) {

    /* Remove zoom on mobile for better viewport usage */
    body {
        zoom: 1 !important;
    }

    /* Full width content on mobile */
    .main-content {
        padding: 15px !important;
        width: 100% !important;
    }

    /* Header adjustments */
    .header__page-header {
        width: 100% !important;
        margin-top: 15px !important;
    }

    /* Home page only: remove gap between menu and header image */
    body.boxed:not(.standard-page):not(.poe2-page) .header__page-header {
        margin-top: 0 !important;
        overflow: hidden;
    }

    /* Home page only: pull image up to make flames touch the menu border */
    body.boxed:not(.standard-page):not(.poe2-page) .header__page-header .header-image {
        margin-top: 0px !important;
    }

    .header__page-header .header-image {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 10px !important;
    }

    /* Home intro text on mobile */
    .home-intro-text {
        padding: 20px 15px !important;
    }

    .home-intro-text .intro-paragraph {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }

    .home-intro-text .intro-paragraph:first-child {
        font-size: 18px !important;
    }

    /* Sidebar menu text - smaller to fit one line */
    .main-navigation .menu-item a {
        font-size: 14px !important;
        padding: 8px 35px 8px 50px !important;
        white-space: nowrap !important;
    }

    .custom-header-link {
        font-size: 14px !important;
        padding: 3px 35px 3px 50px !important;
        white-space: nowrap !important;
    }

    .extension-text {
        font-size: 14px !important;
    }

    .extension-group {
        position: relative;
        left: 10px;
    }

    .status-text {
        font-size: 17px !important;
    }

    /* Add spacing and border to mobile sidebar */
    .hovercraft {
        padding-bottom: 20px !important;
        border-bottom: 3px solid #ff6000 !important;
        box-shadow: 0 3px 10px rgba(255, 96, 0, 0.3) !important;
    }

    /* Home page only: remove padding so image touches menu border */
    body.boxed:not(.standard-page):not(.poe2-page) .hovercraft {
        padding-bottom: 0 !important;
    }
}



/* ========================================
   HOME PAGE INTRO TEXT STYLING
======================================== */

.home-intro-text {
    max-width: 100%;
    margin: 0;
    padding: 30px 20px;
    display: block;
    /* Override flex if needed, or ensure block layout for text */
}

.home-intro-text .intro-paragraph {
    font-size: 28px;
    line-height: 1.8;
    color: #c9b998;
    margin-bottom: 25px;
    text-align: left;
    width: 100%;
}

.home-intro-text .intro-paragraph:first-child {
    color: #eae5de;
    font-size: 32px;
}

.home-intro-text .intro-paragraph.intro-last {
    margin-bottom: 0;
}

.home-intro-text .highlight-red {
    color: #ff0000;
    font-weight: bold;
}


/* Main Site Footer */
.site-footer {
    text-align: center;
    color: #666;
    background-color: #0e0e0e;
    border-top: 1px solid #302E2E;
    font-size: 15px;
    margin-top: auto;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 7px 10px !important;
        font-size: 12px !important;
    }

    .site-footer p {
        margin: 8px 0 !important;
    }
}

@media (min-width: 992px) {

    /* Larger Sidebar Icons */
    .custom-icon {
        width: 35px;
        height: 35px;
    }

    .main-navigation .menu-item a::before {
        width: 35px;
        height: 35px;
    }

    /* Shifted Status Icon */
    .status-icon {
        left: 36px;
    }

    /* New Question Mark Styling */
    .question-mark-icon {
        width: 35px;
        height: 26px;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        object-fit: contain;
    }

    /* Notification Bell Adjustment */
    .tft-notification-badge {
        transform: translateY(-50%) translateX(-5px);
    }
}