/* ==========================================================================
   Frontend header — desktop, mobile, top bar, wallet, auth, nav menu.
   Split from custom/style.css; loaded after style.css (see css.blade.php).
   Global :root (--color, --white) stays in style.css for navMenu (var(--white)).
   ========================================================================== */

.register-btn svg,
.login-btn svg,
.nav-btn svg {
    width: 22px;
    height: 22px;
}

.site-logo {
    width: 30rem;
}

.site-logo img {
    width: 50%;
}

.navbar {
    justify-content: space-between;
}

.header-menu-container {
    display: flex;
}
/* .user__account {} */

.user__account a {
    /* line-height: unset !important;
    padding: 0px 0px !important; */
}

.user__account a img {
    border-radius: 50% !important;
}
.header-desktop {
    display: block;
}

.header-mobile {
    display: none;
}

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

.header-mobile .header__top {
    position: relative;
    z-index: 999;
}

header .site-logo.site-title img {
    /* width: 225px; */
    width: 135px;
}

.mobHeader {
    position: relative;
    display: flex;
    align-items: center;
    height: 65px;
    padding: 0 20px;
    z-index: 999;
}

.header.menu-fixed .mobHeader.header__bottom {
    padding: 0 20px;
}

.device {
    position: relative;
    width: 100vw;
    height: 67px;
    background: transparent;
    /* border: 1px solid #eee;
    border-radius: 30px; */
    /* box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1); */
}

.navContainer {
    position: relative;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* overflow: hidden; */
    /* border-radius: 30px; */
    /* background: linear-gradient(to bottom, #eee, #ddd); */
    background: transparent;
}

.navTrigger {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1000;
    width: 65px;
    height: 65px;
    background: transparent;
    border: 0;
    outline: none;
    border: none;
    cursor: pointer;
    padding: 0;
    -webkit-appearence: none;
    -webkit-tap-highlight-color: transparent;
    display: none;
}

.navTrigger:focus {
    outline: none;
}

.navTrigger svg {
    /* width: 64px;
    height: 48px; */
    top: 0px;
    left: 0px;
    stroke: var(--white);
    stroke-width: 4px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: block;
    position: absolute;
    width: 65px;
    height: 100%;
}

.navTrigger svg path {
    transition:
        stroke-dasharray var(--duration, 0.85s) var(--easing, ease)
            var(--delay, 0s),
        stroke-dashoffset var(--duration, 0.85s) var(--easing, ease)
            var(--delay, 0s);
    stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
    stroke-dashoffset: var(--offset, 126px);
    transform: translateZ(0);
}

.navTrigger svg path:nth-child(2) {
    --duration: 0.7s;
    --easing: ease-in;
    --offset: 100px;
    --array-2: 74px;
}

.navTrigger svg path:nth-child(3) {
    --offset: 133px;
    --array-2: 107px;
}

.navTrigger.active svg {
    stroke: var(--white);
}

.navTrigger.active svg path {
    --offset: 57px;
}

.navTrigger.active svg path:nth-child(1),
.navTrigger.active svg path:nth-child(3) {
    --delay: 0.15s;
    --easing: cubic-bezier(0.2, 0.4, 0.2, 1.1);
}

.navTrigger.active svg path:nth-child(2) {
    --duration: 0.4s;
    --offset: 2px;
    --array-1: 1px;
}

.navTrigger.active svg path:nth-child(3) {
    --offset: 58px;
}

.navMenu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    background: #fff;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: all 0.375s;
    height: 100vh;
}

.navMenu.active {
    opacity: 1;
    z-index: 100;
    visibility: visible;
}

.navMenu.active::before {
    transform: skew(-14deg) translateX(0);
}

.navMenu.active li {
    opacity: 1;
    transform: translateY(0);
}

.navMenu::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -15px;
    background: #070b28;
    transform-origin: 0 0;
    transform: skew(-14deg) translateX(-120%);
    transition: all 0.275s 0.1s;
}

.navMenu ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    height: 93%;
    /* Should be 100%, but we have a notice message :D */
    align-items: flex-end;
    justify-content: center;
    transform: translateX(-18%) skew(-16deg);
}

.navMenu ul li {
    display: block;
    margin: 0.5rem 0;
    text-align: right;
    opacity: 0;
    transform: translateY(-10px);
}

.navMenu ul li a {
    position: relative;
    left: 0;
    display: block;
    padding: 12px 0;
    color: var(--white);
    font-size: 1.4em;
    text-decoration: none;
    transform: skew(16deg);
    transition: 0.25s;
    text-transform: uppercase;
}

.navMenu ul li a:hover {
    left: 10px;
}

.navMenu ul li:nth-child(1) {
    transition: all 275ms 275ms;
}

.navMenu ul li:nth-child(2) {
    transition: all 275ms 325ms;
}

.navMenu ul li:nth-child(3) {
    transition: all 275ms 375ms;
}

.navMenu ul li:nth-child(4) {
    transition: all 275ms 425ms;
}

.navMenu ul li:nth-child(5) {
    transition: all 275ms 475ms;
}
@media (max-width: 1199px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
    }

    header .site-logo.site-title img {
        width: 150px;
        max-width: initial;
    }
}
/************ Top header***********/
.w-icon-top-h {
    width: 26px;
    height: 26px;
}

.top-h-box {
    background-color: #2c0341;
    border-radius: 8px;
    width: auto;
    height: auto;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 9px;
    border: 1px solid #d2d5fc;
}

.me-2.top-h-box p {
    font-size: 14px;
    padding: 3px;
    color: white;
    margin: 0;
}

.top-h-box p,
.top-h-box span {
    color: rgb(16, 185, 129);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.header__top .right .amount__btn i {
    color: #ffffff;
    font-size: 30px;
}

span.cart__num {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
}

.product__cart {
    margin-right: 1rem;
    position: relative;
}

a.dropdown-item.custom-dropdown-item span {
    /* color: white;*/
    font-size: 0.85rem;
}

.mobHeader {
    position: relative;
    display: flex;
    align-items: center;
    height: 65px;
    padding: 0 20px;
    z-index: 998 !important;
}

/* User Account Dropdown Styles */
.user__account {
    position: relative;
    display: inline-block;
}

i.las.la-shopping-basket {
    font-size: 38px;
}

.user__btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.user__btn:hover,
.user__btn:focus,
.user__btn:active {
    background: rgba(255, 255, 255, 0.3);
    color: white !important;
    text-decoration: none;
    outline: none;
}

.user__btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user__btn i {
    font-size: 18px;
}

.user-name-link {
    color: white !important;
    text-decoration: none;
    margin-left: 8px;
    vertical-align: middle;
}

.user-name-link:hover,
.user-name-link:focus {
    color: white !important;
    text-decoration: none;
}

/* FIXED Dropdown Menu Styles */
.user-dropdown-menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #5a4bcc;
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.2);
    list-style: none;
    padding: 15px;
    margin: 0;
    pointer-events: none;
}

.user-dropdown-menu-dropdown.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

.user-dropdown-menu-dropdown li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.user-dropdown-menu-dropdown li a {
    display: flex;
    align-items: center;
    padding: 12px 16px !important;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 2px;
}

.user-dropdown-menu-dropdown li:last-child a {
    border-bottom: none;
    margin-bottom: 0;
}

.user-dropdown-menu-dropdown li a:hover,
.user-dropdown-menu-dropdown li a:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    text-decoration: none;
    transform: translateX(2px);
}

.user-dropdown-menu-dropdown li a img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    object-fit: contain;
}

.user-dropdown-menu-dropdown li a span {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

/* Backdrop */
.dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-backdrop.show {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Bootstrap 3 compatibility */
.header-top {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.header-customer {
    display: table-cell;
    vertical-align: middle;
}

.customer-login {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

.customer-login > div {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

.d-flex {
    display: inline-block;
    vertical-align: middle;
}

.d-flex .top-h-box {
    /* display: inline-block;
    vertical-align: middle;
    margin-right: 8px; */
}

/* MOBILE RESPONSIVE STYLES */
@media screen and (max-width: 768px) {
    .top-h-box {
        height: 35px !important;
        width: 89px !important;
        padding: 3px !important;
    }

    .customer-login span,
    .customer-login p {
        font-size: 14px;
    }

    .nav-section a,
    .nav-section button {
        font-size: 12px;
        padding: 10px 24px !important;
        line-height: normal !important;
    }

    .customer-login > div {
        margin-left: 0px;
    }

    .user-dropdown-menu-dropdown.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        pointer-events: auto !important;
    }

    .w-icon-top-h {
        width: 20px;
        height: 20px;
        padding: 2px !important;
    }

    .user__account {
        position: relative;
        display: inline-block;
        /* Removed problematic top positioning */
    }

    .d-flex.desktop-menu {
        display: flex !important;
        gap: 13px;
        align-items: center;
        justify-content: space-between;
    }

    /* FIXED Mobile dropdown positioning */
    .user-dropdown-menu-dropdown {
        position: absolute !important;
        top: calc(100% + 5px) !important;
        right: 0 !important;
        left: auto !important;
        transform: translateY(-10px) scale(0.95) !important;
        min-width: 200px !important;
        max-width: 280px !important;
        margin: 0 !important;
        z-index: 99999 !important;
    }

    .user-dropdown-menu-dropdown.show {
        transform: translateY(0) scale(1) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* Better touch targets */
    .user__btn {
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
    }

    .user-dropdown-menu-dropdown li a {
        min-height: 48px;
        padding: 16px !important;
        font-size: 16px;
        touch-action: manipulation;
    }

    .user-dropdown-menu-dropdown li a span {
        font-size: 16px;
    }

    /* Hide user name on very small screens */
    .user-name-link {
        display: none;
    }

    .product__cart {
        margin-right: 0.5rem;
    }

    /* Ensure parent container doesn't clip dropdown */
    .customer-login {
        overflow: visible !important;
    }

    .header-top {
        overflow: visible !important;
    }

    .header__top {
        overflow: visible !important;
    }
}

/* For very small screens */
@media screen and (max-width: 480px) {
    .user-dropdown-menu-dropdown {
        position: absolute !important;
        top: calc(100% + 5px) !important;
        right: -10px !important;
        left: auto !important;
        min-width: 180px !important;
        max-width: 250px !important;
    }

    .d-flex.desktop-menu {
        gap: 5px;
    }

    .top-h-box p {
        font-size: 12px;
    }
}
.user-trigger {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.profile-img,
.profile-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #5a4bcc !important;
    display: inline-block;
    object-fit: cover;
    margin-right: 8px;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: white;
}

a.dropdown-item.custom-dropdown-item span {
    /* color: white;
    padding: 13px 0px !important;
    font-size: 15px !important; */
}

.user-name {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgb(139, 92, 246) 0%,
        rgb(109, 40, 217) 100%
    );
    border: 2px solid rgb(139, 92, 246);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(232, 228, 240);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    transform: scale(1);
}

.custom-dropdown-menu {
    position: absolute;
    right: 0px;
    top: calc(100% + 0.5rem);
    background: rgb(18, 6, 66);
    border: 1px solid rgb(30, 13, 77);
    border-radius: 8px;
    padding: 0.5rem 0px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 8px 16px;
    z-index: 1000;
    min-width: 200px;
    pointer-events: auto;
}

/* .dropdown-menu.custom-dropdown-menu {
    border-radius: 10px;
    background: var(--color-blue-55, #5a4bcc);
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
} */

.custom-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgb(168, 156, 200);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid rgb(30, 13, 77);
    background: transparent;
}

.custom-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dropdown-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: end;
    /* line-height: normal; */
}

.nav-btn {
    /* color: rgb(232, 228, 240);
    text-decoration: none;
    font-size: 14px !important;
    font-weight: 600;
    transition: 0.2s;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border: 1px solid rgb(139, 92, 246);
    height: auto !important;
    min-height: auto !important;
    line-height: initial; */
    /* width: 100%; */
    color: rgb(167, 139, 250);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: 0.2s;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1.5px solid rgb(139, 92, 246);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-btn.active {
    /* background: linear-gradient(135deg, #4b006e, #6a008f);
    color: #ffffff;
    opacity: 0.9; */
}

.nav-btn:hover {
    background-size: 300%;
    color: #ffffff;
}

.tokens-display {
    background-image: -moz-linear-gradient(
        86deg,
        #ec038b 0%,
        #fb6468 44%,
        #fbb936 100%
    );
    background-image: -webkit-linear-gradient(
        86deg,
        #ec038b 0%,
        #fb6468 44%,
        #fbb936 100%
    );
    background-image: -ms-linear-gradient(
        86deg,
        #ec038b 0%,
        #fb6468 44%,
        #fbb936 100%
    );
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.tokens-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.tokens-display span {
    color: #fff;
}

.header__top {
    display: none;
}

.site-logo {
    width: auto;
}

.header__bottom {
    padding: 15px 20px;
    /* background: rgb(18, 6, 66);
    border-bottom: 1px solid rgb(30, 13, 77); */
    background: linear-gradient(rgb(18, 6, 66) 0%, rgb(10, 1, 24) 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    position: sticky;
    top: 0px;
    z-index: 100;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 8px;
}

.header.menu-fixed .header__bottom {
    padding: 15px 0;
}

/* @media (max-width: 480px) {
    .header__top {
    display: block;
}
} */
@media (max-width: 768px) {
    .header__top {
        display: block;
    }

    .header-mobile .header__top {
        position: static;
        z-index: 999;
        background: #070b28;
    }

    .header.menu-fixed .header__top {
        display: block;
    }
}
.header-deposit-btn .action-btn {
    background: rgb(16, 185, 129);
    border: 1.5px solid rgb(16, 185, 129);
    color: rgb(255, 255, 255);
    padding: 0rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    cursor: pointer;
    transition: 0.2s;
    gap: 0.5rem;
    text-decoration: none;
    height: 44px;
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-deposit-btn .action-btn img {
    display: none;
}
.header-desktop-menu {
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

/* Wallet Balance Box */
.wallet-balance-box {
    /* background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgb(139, 92, 246);
    border-radius: 24px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: rgb(232, 228, 240);
    display: flex;
    align-items: center;
    gap: 0.5rem; */
    background: transparent;
    border: 1.5px solid rgb(16, 185, 129);
    color: rgb(16, 185, 129);
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.wallet-balance-box svg {
    width: 22px;
    height: 22px;
    stroke: rgb(16, 185, 129);
}

/* --- Responsive header patches (split from style.css; order matches former style.css) --- */

@media (max-width: 767px) {
    /* Touch targets + transitions (style.css "Additional fluid improvements") */
    .nav-btn,
    .user-trigger {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        touch-action: manipulation;
    }

    .top-h-box {
        transition: all 0.3s ease;
    }

    /* pi-row-adjacent block — deposit + mob-top-row nav (was before MOBILE PATCH in style.css) */
    .header-deposit-btn .action-btn {
        /* padding: 7px 15px;
        font-size: 0.875rem;
        font-weight: 700;
        letter-spacing: 0.05em; */
        height: 38px;
        width: auto;
    }
    .nav-btn {
        /* width: 50% !important;
        padding: 10px 20px !important; */
    }

    .mob-top-row .nav-btn {
        /* width: 100%; */
        color: rgb(167, 139, 250);
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 700;
        transition: 0.2s;
        /* padding: 0.625rem 1.5rem; */
        border-radius: 6px;
        background: transparent;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border: 1.5px solid rgb(139, 92, 246);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
    }

    .mob-top-row .nav-btn span,
    .mob-login-pill span,
    .mob-register-pill span {
        color: rgb(167, 139, 250);
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 700;
        display: none;
    }

    .mob-register-pill span {
        color: #fff;
    }

    .mob-top-row .nav-btn svg {
        width: 55px;
        height: 35px;
    }

    .mob-top-row .nav-btn {
        padding: 0;
    }

    .mob-login-pill svg,
    .mob-register-pill svg {
        width: 18px;
        height: 18px;
    }
}

:root {
    --mobile-header-offset: 80px;
}

@media (max-width: 991px) {
    /* A) Header & Top Nav */
    .header-desktop,
    .header-mobile,
    .header__bottom {
        flex-wrap: wrap !important;
    }

    .navContainer {
        max-width: 100%;
    }

    .mobHeader {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 15px !important;
    }

    .header-mobile .logo {
        max-width: 120px;
    }

    .header-mobile .user__account {
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    /* MOBILE RESPONSIVENESS PATCH — dropdown / top row (followed .header-mobile-container in style.css) */
    .custom-dropdown-menu {
        transform: translate3d(-165px, 37px, 0px);
    }

    .header__top {
        display: none !important;
        /* Move balance to mobile header if needed, but per inventory it is sometimes there */
    }
}

@media (max-width: 480px) {
    /* A) Header 2-Row Layout */
    .mobHeader {
        flex-wrap: wrap;
    }

    .mobHeader .logo {
        flex: 0 0 auto;
    }

    .mobHeader .navTrigger {
        order: 3;
    }

    .mobHeader .user__account {
        order: 2;
        margin-left: auto;
    }
}

.header-mobile-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mob-top-row {
    justify-content: space-between !important;
    padding: 12px 15px;
    background: linear-gradient(180deg, #1a0933 0%, #120722 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.mob-bottom-row {
    padding: 10px 15px;
    background: linear-gradient(rgb(18, 6, 66) 0%, rgb(10, 1, 24) 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    position: sticky;
    top: 0px;
    z-index: 100;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 8px;
}

.mob-register-pill,
.mob-login-pill {
    /* padding: 7px 25px !important; */
}
/* ==========================================================================
   web-user-account dropdown — styled to match design
   ========================================================================== */

.web-user-account .custom-dropdown-menu {
    background: #0e0825;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 10px;
    padding: 6px 0;
    min-width: 210px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
    right: 0;
    left: auto;
    top: calc(100% + 8px);
    z-index: 9999;
}

.web-user-account .custom-dropdown-item {
    border-bottom: 1px solid rgba(139, 92, 246, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    color: rgb(232, 228, 240);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: 0.2s;
    background: transparent;
}
.web-user-account .custom-dropdown-item span {
    color: #ffffff;
}

.web-user-account .custom-dropdown-item:last-child {
    border-bottom: none;
}

.web-user-account .custom-dropdown-item svg {
    flex-shrink: 0;
    stroke: #ffffff;
    opacity: 0.85;
    width: 18px;
    height: 18px;
}

.web-user-account .custom-dropdown-item:hover {
    background: rgba(139, 92, 246, 0.18);
    color: #ffffff;
}

.web-user-account .custom-dropdown-item:hover svg {
    opacity: 1;
}
/* ==========================================================================
   Mobile header — moved from mobile.blade.php inline <style> (header refactor Step 8)
   Same selectors as before; merges with earlier rules in this file (e.g. .mob-top-row
   justify-content vs .header-mobile display / @media 1199px).
   ========================================================================== */

.header-mobile {
    background-color: #0d012c;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mob-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mob-wallet-pill,
.mob-tokens-pill {
    border-radius: 50px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.mob-wallet-pill {
    /* background: rgba(139, 92, 246, 0.12);
        border: 1px solid rgb(139, 92, 246);
        border-radius: 24px;
        padding: 10px 24px;
        font-size: 14px;
        font-weight: 600;
        color: rgb(232, 228, 240);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex: none; */
    background: transparent;
    border: 1.5px solid rgb(16, 185, 129);
    color: rgb(16, 185, 129);
    padding: 7px 15px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.mob-wallet-pill span {
    color: rgb(16, 185, 129);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.mob-wallet-pill svg {
    stroke: rgb(16, 185, 129);
    width: 22px;
    height: 22px;
}

.mob-tokens-pill {
    background: linear-gradient(90deg, #f37d2b 0%, #e02d3c 100%);
}

.mob-register-pill,
.mob-login-pill {
    border-radius: 50px;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    flex: 0 1 auto;
    text-align: center;
    transition: 0.3s;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

.mob-register-pill {
    /* background: linear-gradient(135deg, #ff6b35, #f7931e);
        color: #fff !important;
        border: none; */
    background: rgb(16, 185, 129);
    border: 1.5px solid rgb(16, 185, 129);
    color: rgb(255, 255, 255);
    /* padding: 0.625rem 1.5rem; */
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.mob-login-pill {
    /* background: transparent;
        color: #fff !important;
        border: 1px solid #3a3a3a; */
    background: transparent;
    border: 1.5px solid rgb(139, 92, 246);
    color: rgb(167, 139, 250);
    /* padding: 0.625rem 1.5rem; */
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pill-icon {
    height: 18px;
    width: auto;
    object-fit: contain;
}

.mob-games-pill {
    background: transparent;
    border: 1.5px solid rgb(139, 92, 246);
    color: rgb(167, 139, 250);
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mob-games-pill svg {
    stroke: rgb(167, 139, 250);
    display: block;
}

.mob-games-pill:hover {
    background: rgba(139, 92, 246, 0.15);
    text-decoration: none;
}

.mob-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mob-bottom-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mob-user-account {
    position: relative;
}

.mob-user-circle {
    width: 36px;
    height: 36px;
    background: #3e2e8e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    border: 1px solid #5d48c8;
    overflow: hidden;
}

.mob-user-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navTrigger {
    cursor: pointer;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
}

.navTrigger svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.custom-dropdown-menu {
    margin-top: 15px;
    right: 0;
    left: auto;
}

/* End mobile header (Step 8) */
