.gaming-header-ffc1842c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #1a1a1a;
    border-bottom: 3px solid #e8000e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gaming-header-container-ffc1842c {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Menu Switcher Style */
.gaming-switcher-container-ffc1842c {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #2a2a2a;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #888888;
}

.gaming-switcher-container-ffc1842c label {
    color: #f1f2f6;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

.gaming-select-ffc1842c {
    background-color: #111111;
    color: #e8000e;
    border: 1px solid #e8000e;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 13px;
    cursor: pointer;
    font-weight: bold;
}

.gaming-select-ffc1842c:focus {
    outline: none;
    box-shadow: 0 0 5px #e8000e;
}

/* Nav Wrapper */
.gaming-nav-wrapper-ffc1842c {
    flex-grow: 1;
}

.gaming-menu-split-container-ffc1842c {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.gaming-menu-split-container-ffc1842c.active-menu-ffc1842c {
    display: flex;
}

.gaming-nav-side-ffc1842c {
    flex: 1;
}

.gaming-nav-left-ffc1842c {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
}

.gaming-nav-right-ffc1842c {
    display: flex;
    justify-content: flex-start;
    padding-left: 30px;
}

.gaming-menu-list-ffc1842c {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    align-items: center;
}

.gaming-menu-item-ffc1842c a {
    color: #f1f2f6;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    letter-spacing: 0.5px;
}

.gaming-menu-item-ffc1842c a:hover {
    color: #e8000e;
    text-shadow: 0 0 8px rgba(232, 0, 14, 0.6);
}

/* Center Logo */
.gaming-header-logo-ffc1842c {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
}

.gaming-header-logo-img {
    max-height: 55px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gaming-header-logo-img:hover {
    transform: scale(1.05);
}

.gaming-logo-text-ffc1842c {
    font-size: 24px;
    font-weight: 900;
    color: #f1f2f6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px #e8000e;
}

/* Mobile Toggle */
.gaming-mobile-toggle-ffc1842c {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.gaming-mobile-toggle-ffc1842c .bar-ffc1842c {
    width: 25px;
    height: 3px;
    background-color: #f1f2f6;
    transition: all 0.3s ease;
}

/* Mobile styles */
@media screen and (max-width: 1024px) {
    .gaming-mobile-toggle-ffc1842c {
        display: flex;
    }

    .gaming-menu-split-container-ffc1842c.active-menu-ffc1842c {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        border-top: 1px solid #2a2a2a;
        padding: 20px;
        box-sizing: border-box;
        display: none; /* Controlled by mobile-open class */
    }

    .gaming-header-ffc1842c.mobile-open-ffc1842c .gaming-menu-split-container-ffc1842c.active-menu-ffc1842c {
        display: flex;
    }

    .gaming-nav-side-ffc1842c {
        width: 100%;
        padding: 0;
        justify-content: center;
    }

    .gaming-menu-list-ffc1842c {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    .gaming-header-logo-ffc1842c {
        order: -1;
        margin-bottom: 15px;
    }
}
