
        * { box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            margin: 0;
            min-height: 100vh;
            font-family: "Inter", sans-serif;
            color: white;
            overflow-x: hidden;
            background:
                radial-gradient(circle at 12% 5%, rgba(255, 255, 255, 0.06), transparent 24%),
                radial-gradient(circle at 82% 8%, rgba(156, 54, 245, 0.12), transparent 32%),
                linear-gradient(135deg, #101010 0%, #0d0d0f 45%, #09090a 100%);
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
            background-size: 42px 42px;
            mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.18;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E");
        }

        .topbar {
            background: rgba(12, 12, 13, 0.76);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
            backdrop-filter: blur(18px);
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            height: 38px;
            padding: 0 14px;
            border-radius: 999px;
            color: rgba(255, 255, 255, 0.76);
            font-size: 0.875rem;
            font-weight: 700;
            border: 1px solid transparent;
            transition: 180ms ease;
        }

        .nav-link:hover {
            color: white;
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.055);
        }

        .icon-btn {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            color: rgba(255, 255, 255, 0.75);
            border: 1px solid transparent;
            transition: 180ms ease;
        }

        .icon-btn:hover {
            color: white;
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.06);
        }

        #currency-widget-container {
            position: relative;
            z-index: 100003;
        }

        #trigger-btn {
            z-index: 100000;
            display: flex;
            height: 34px;
            width: max-content;
            cursor: pointer;
            align-items: center;
            gap: 6px;
            border-radius: 9px;
            border: 1px solid #282828;
            background: white;
            padding: 0 10px;
            color: black;
            font-size: 14px;
            font-weight: 900;
            font-style: italic;
            transition: 180ms ease;
        }

        #dropdown-wrapper {
            position: absolute;
            right: 0;
            top: 100%;
            z-index: 100003;
            padding-top: 8px;
            opacity: 0;
            display: none;
            transition: opacity 180ms ease;
        }

        #currency-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            border-radius: 18px;
            border: 1px solid #333;
            background: #1a1a1a;
            padding: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        }

        /* Navbar must always sit above the page layers so links/buttons stay clickable */
        #navbar {
            z-index: 100000 !important;
            pointer-events: auto !important;
        }

        .topbar {
            z-index: 100000 !important;
        }

        /* Hero/filter area only needs to be above products, not above navbar */
        .filters-layer {
            position: relative;
            z-index: 100;
        }

        .products-layer {
            position: relative;
            z-index: 10;
        }

        .page-title span:first-child {
            color: rgba(255, 255, 255, 0.35);
        }

        .search-box {
            width: min(620px, 100%);
            height: 38px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.035);
            padding: 0 14px;
            color: rgba(255, 255, 255, 0.42);
        }

        .search-box input {
            width: 100%;
            background: transparent;
            border: 0;
            outline: none;
            color: white;
            font-size: 13px;
            font-weight: 600;
        }

        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.33);
        }

        .category-chip,
        .game-chip {
            height: 34px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 0 13px;
            border-radius: 11px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.66);
            font-size: 12px;
            font-weight: 800;
            transition: 160ms ease;
            cursor: pointer;
        }

        .category-chip:hover,
        .category-chip.active,
        .game-chip:hover,
        .game-chip.active {
            color: white;
            background: rgba(156, 54, 245, 0.16);
            border-color: rgba(156, 54, 245, 0.35);
            transform: translateY(-1px);
        }

        .framework-dropdown-wrap {
            position: relative;
            width: min(320px, 100%);
            z-index: 300;
        }

        .framework-dropdown-btn {
            width: 100%;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 0 14px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.13);
            background: rgba(156, 54, 245, 0.18);
            color: white;
            font-size: 13px;
            font-weight: 900;
            cursor: pointer;
            transition: 160ms ease;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .framework-dropdown-btn:hover,
        .framework-dropdown-btn.active {
            background: rgba(156, 54, 245, 0.25);
            border-color: rgba(255, 255, 255, 0.24);
        }

        .framework-dropdown-btn svg,
        .framework-dropdown-btn i {
            width: 16px;
            height: 16px;
            min-width: 16px;
            transition: transform 160ms ease;
        }

        .framework-dropdown-btn.active svg,
        .framework-dropdown-btn.active i {
            transform: rotate(180deg);
        }

        .framework-dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            z-index: 9999;
            width: 100%;
            max-height: 228px;
            overflow-y: auto;
            padding: 6px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: #171717;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.62);
        }

        .framework-dropdown-option {
            width: 100%;
            min-height: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 0 10px;
            border-radius: 10px;
            border: 0;
            background: transparent;
            color: rgba(255, 255, 255, 0.66);
            font-size: 12px;
            font-weight: 850;
            cursor: pointer;
            transition: 150ms ease;
            text-align: left;
            line-height: 1;
        }

        .framework-dropdown-option span {
            width: 18px;
            min-width: 18px;
            height: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            line-height: 1;
        }

        .framework-dropdown-option:hover,
        .framework-dropdown-option.active {
            color: white;
            background: rgba(255, 255, 255, 0.075);
        }

        .framework-dropdown-menu::-webkit-scrollbar {
            width: 5px;
        }

        .framework-dropdown-menu::-webkit-scrollbar-track {
            background: transparent;
        }

        .framework-dropdown-menu::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 999px;
        }

        .framework-dropdown-menu.hidden,
        .framework-dropdown-wrap.hidden {
            display: none !important;
        }

        .product-card {
            position: relative;
            z-index: 1;
            overflow: hidden;
            border-radius: 6px;
            background: #111;
            border: 1px solid rgba(255, 255, 255, 0.11);
            transition: 180ms ease;
        }

        .product-card:hover {
            z-index: 2;
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.22);
            box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
        }

        .product-image {
            position: relative;
            height: 214px;
            overflow: hidden;
            background: #181818;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: 280ms ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.035);
            filter: brightness(1.08);
        }

        .product-body {
            padding: 14px 12px 10px;
        }

        .product-title {
            min-height: 42px;
            color: white;
            font-size: 15px;
            line-height: 1.35;
            font-weight: 900;
            letter-spacing: -0.02em;
        }

        .product-desc {
            margin-top: 9px;
            height: 39px;
            overflow: hidden;
            color: rgba(255, 255, 255, 0.35);
            font-size: 11px;
            line-height: 1.55;
            font-weight: 600;
        }

        .tag-row {
            display: flex;
            align-items: center;
            gap: 5px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .product-tag {
            height: 20px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 0 7px;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.045);
            color: rgba(255, 255, 255, 0.58);
            font-size: 10px;
            font-weight: 800;
        }

        .price-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .price {
            font-size: 21px;
            font-weight: 950;
            letter-spacing: -0.04em;
            color: white;
        }

        .old-price {
            color: rgba(255, 255, 255, 0.27);
            text-decoration: line-through;
            font-size: 12px;
            font-weight: 800;
        }

        .curr-code {
            font-size: 10px;
            font-weight: 800;
            opacity: 0.55;
            margin-left: 3px;
        }

        .discount {
            height: 18px;
            display: inline-flex;
            align-items: center;
            border-radius: 3px;
            padding: 0 6px;
            background: #ff183b;
            color: white;
            font-size: 10px;
            font-weight: 950;
        }

        .basket-btn {
            width: 100%;
            height: 30px;
            margin-top: 10px;
            border-radius: 4px;
            background: white;
            color: black;
            border: 0;
            font-size: 11px;
            font-weight: 800;
            cursor: pointer;
            transition: 150ms ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .basket-btn:hover {
            background: #e9e9e9;
            transform: translateY(-1px);
        }

        .empty-state {
            display: none;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.035);
            border-radius: 20px;
            padding: 34px;
            text-align: center;
            color: rgba(255,255,255,0.55);
        }

        .fade-up {
            opacity: 0;
            animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(14px);
                filter: blur(5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
                filter: blur(0);
            }
        }

        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            z-index: 100001;
            background: rgba(0, 0, 0, 0.68);
            backdrop-filter: blur(8px);
            opacity: 0;
            pointer-events: none;
            transition: 220ms ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu-drawer {
            position: fixed;
            top: 12px;
            right: 12px;
            bottom: 12px;
            z-index: 100002;
            width: min(390px, calc(100vw - 24px));
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.11);
            background:
                radial-gradient(120% 80% at 70% 0%, rgba(156, 54, 245, 0.18), transparent 48%),
                #101012;
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
            backdrop-filter: blur(22px);
            transform: translateX(calc(100% + 24px));
            transition: 260ms cubic-bezier(0.22, 1, 0.36, 1);
            overflow-y: auto;
            padding: 16px;
        }

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

        .mobile-menu-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 18px;
        }

        .mobile-brand img {
            width: 116px;
            height: auto;
            display: block;
        }

        .mobile-close-btn {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            color: white;
            background: rgba(255, 255, 255, 0.055);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: 160ms ease;
        }

        .mobile-close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-section {
            padding: 14px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.075);
        }

        .mobile-menu-label {
            margin-bottom: 9px;
            color: rgba(255, 255, 255, 0.36);
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.18em;
        }

        .mobile-menu-link {
            min-height: 48px;
            margin-bottom: 7px;
            padding: 0 13px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            color: rgba(255, 255, 255, 0.76);
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.065);
            font-size: 14px;
            font-weight: 800;
            transition: 160ms ease;
        }

        .mobile-menu-link span {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-menu-link:hover {
            color: white;
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 255, 255, 0.12);
            transform: translateX(-2px);
        }

        .mobile-quick-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .mobile-quick-card {
            min-height: 82px;
            border-radius: 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: white;
            background: rgba(255, 255, 255, 0.045);
            border: 1px solid rgba(255, 255, 255, 0.075);
            font-size: 13px;
            font-weight: 900;
            transition: 160ms ease;
        }

        .mobile-quick-card:hover {
            background: rgba(156, 54, 245, 0.16);
            border-color: rgba(156, 54, 245, 0.35);
            transform: translateY(-2px);
        }

        .mobile-currency-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 9px;
        }

        .mobile-currency-grid .currency-btn {
            height: 38px;
            border-radius: 13px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            background: rgba(255, 255, 255, 0.045);
            color: rgba(255, 255, 255, 0.62);
            font-size: 12px;
            font-weight: 900;
            cursor: pointer;
            transition: 150ms ease;
        }

        .mobile-currency-grid .currency-btn:hover,
        .mobile-currency-grid .currency-btn.active {
            color: black !important;
            background: white !important;
            border-color: white;
        }

        .mobile-social-row {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-social-row a {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            color: rgba(255, 255, 255, 0.78);
            background: rgba(255, 255, 255, 0.045);
            border: 1px solid rgba(255, 255, 255, 0.075);
            transition: 160ms ease;
        }

        .mobile-social-row a:hover {
            color: white;
            background: rgba(255, 255, 255, 0.085);
            transform: translateY(-2px);
        }

        body.menu-open {
            overflow: hidden;
        }


        /* Final stacking guard: fixes navbar clicks while keeping filter dropdown over product cards */
        #navbar, #navbar * {
            pointer-events: auto;
        }

        .framework-dropdown-wrap {
            z-index: 300;
        }

        .framework-dropdown-menu {
            z-index: 9999;
        }


        /* fixed stacking */
        #navbar {
            z-index: 100000 !important;
            pointer-events: auto !important;
        }

        #navbar, #navbar * {
            pointer-events: auto;
        }

        #mobile-menu-btn {
            position: relative;
            z-index: 100005;
            pointer-events: auto !important;
        }

        .footer-spaced {
            margin-top: 6rem;
            border-top: 1px solid rgba(255, 255, 255, 0.075);
            box-shadow: 0 -26px 80px rgba(0, 0, 0, 0.22);
        }

        .auth-wrap {
            position: relative;
            z-index: 100004;
        }

        .login-pill,
        .user-pill {
            height: 34px;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 0 11px;
            color: white;
            font-size: 13px;
            font-weight: 850;
            cursor: pointer;
            transition: 170ms ease;
            background: radial-gradient(74.31% 154.58% at 50% 50%, #323232 0%, #717070 100%);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .login-pill:hover,
        .user-pill:hover,
        .user-pill.active {
            transform: translateY(-1px);
            border-color: rgba(255, 255, 255, 0.26);
            filter: brightness(1.08);
        }

        .user-pill {
            max-width: 190px;
            padding-left: 6px;
            background:
                radial-gradient(90% 180% at 10% 0%, rgba(156, 54, 245, 0.24), transparent 45%),
                rgba(255, 255, 255, 0.06);
        }

        .user-avatar {
            width: 26px;
            height: 26px;
            border-radius: 999px;
            object-fit: cover;
            background: rgba(255, 255, 255, 0.10);
            border: 1px solid rgba(255, 255, 255, 0.16);
        }

        .user-name {
            max-width: 105px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .user-dropdown {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            width: 252px;
            padding: 10px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.11);
            background:
                radial-gradient(100% 70% at 75% 0%, rgba(156, 54, 245, 0.18), transparent 46%),
                #151517;
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
            opacity: 0;
            transform: translateY(-6px) scale(0.98);
            pointer-events: none;
            transition: 160ms ease;
        }

        .user-dropdown.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        .user-dropdown-head {
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 8px;
            margin-bottom: 7px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.045);
            border: 1px solid rgba(255, 255, 255, 0.065);
        }

        .user-dropdown-head img {
            width: 38px;
            height: 38px;
            border-radius: 999px;
            object-fit: cover;
        }

        .user-dropdown-name {
            color: white;
            font-size: 13px;
            font-weight: 950;
            line-height: 1.1;
            max-width: 160px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .user-dropdown-sub {
            margin-top: 3px;
            color: rgba(255, 255, 255, 0.36);
            font-size: 11px;
            font-weight: 800;
        }

        .user-shortcut {
            min-height: 38px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 0 10px;
            border-radius: 12px;
            color: rgba(255, 255, 255, 0.68);
            font-size: 12px;
            font-weight: 850;
            transition: 150ms ease;
        }

        .user-shortcut span {
            display: inline-flex;
            align-items: center;
            gap: 9px;
        }

        .user-shortcut:hover {
            color: white;
            background: rgba(255, 255, 255, 0.07);
        }

        .user-shortcut.danger:hover {
            color: #ff7b8d;
            background: rgba(255, 24, 59, 0.10);
        }

        .user-divider {
            height: 1px;
            margin: 7px 0;
            background: rgba(255, 255, 255, 0.075);
        }

        /* Home-page style mobile full panel */
        .home-mobile-backdrop {
            position: fixed;
            inset: 0;
            z-index: 100001;
            background: rgba(0, 0, 0, 0.58);
            backdrop-filter: blur(7px);
            opacity: 0;
            pointer-events: none;
            transition: 180ms ease;
        }

        .home-mobile-backdrop.active {
            opacity: 1;
            pointer-events: auto;
        }

        .home-mobile-menu {
            position: fixed;
            inset: 0;
            z-index: 100002;
            width: min(430px, 100vw);
            min-height: 100vh;
            overflow-y: auto;
            background:
                radial-gradient(90% 70% at 90% 0%, rgba(156, 54, 245, 0.10), transparent 45%),
                linear-gradient(180deg, #121214 0%, #0d0d0f 100%);
            border-right: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 30px 0 80px rgba(0, 0, 0, 0.65);
            padding: 28px 18px 36px;
            transform: translateX(-102%);
            transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
        }

        .home-mobile-menu.open {
            transform: translateX(0);
        }

        .home-mobile-menu.hidden {
            display: block !important;
            transform: translateX(-102%);
        }

        .home-mobile-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 4px 0 28px;
        }

        .home-mobile-logo {
            height: 44px;
            width: auto;
            object-fit: contain;
        }

        .home-mobile-close {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 0;
            background: transparent;
            color: rgba(255, 255, 255, 0.45);
            cursor: pointer;
            transition: 150ms ease;
        }

        .home-mobile-close:hover {
            color: white;
            transform: rotate(90deg);
        }

        .home-mobile-section {
            padding: 22px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.075);
        }

        .home-mobile-label {
            margin: 0 0 16px;
            color: rgba(255, 255, 255, 0.38);
            font-size: 14px;
            font-weight: 950;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .home-mobile-link {
            min-height: 58px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            border: 0;
            border-radius: 16px;
            padding: 0 10px;
            background: transparent;
            color: rgba(255, 255, 255, 0.90);
            font-size: 16px;
            font-weight: 900;
            transition: 150ms ease;
            text-align: left;
            cursor: pointer;
        }

        .home-mobile-link span {
            display: inline-flex;
            align-items: center;
            gap: 16px;
        }

        .home-mobile-link svg,
        .home-mobile-link i {
            width: 21px;
            min-width: 21px;
            text-align: center;
            color: white;
        }

        .home-mobile-link:hover {
            color: white;
            background: rgba(255, 255, 255, 0.055);
        }

        .home-games-dropdown,
        .home-account-dropdown {
            overflow: hidden;
            max-height: 0;
            transition: max-height 220ms ease;
        }

        .home-games-dropdown.open {
            max-height: 220px;
            margin-top: 4px;
            padding-left: 37px;
        }

        .home-games-dropdown button {
            width: 100%;
            min-height: 42px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 0;
            border-radius: 13px;
            background: transparent;
            color: rgba(255, 255, 255, 0.62);
            font-size: 14px;
            font-weight: 850;
            cursor: pointer;
            padding: 0 12px;
            transition: 150ms ease;
        }

        .home-games-dropdown button:hover,
        .home-games-dropdown button.active {
            color: white;
            background: rgba(156, 54, 245, 0.14);
        }

        .home-mobile-social-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .home-mobile-social-card {
            min-height: 78px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.10);
            background: rgba(255, 255, 255, 0.035);
            color: white;
            font-size: 14px;
            font-weight: 950;
            transition: 150ms ease;
        }

        .home-mobile-social-card i {
            font-size: 26px;
        }

        .home-mobile-social-card:hover {
            background: rgba(255, 255, 255, 0.07);
            transform: translateY(-2px);
        }

        .home-mobile-currency {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
        }

        .home-mobile-currency .currency-btn {
            height: 48px;
            border-radius: 13px;
            border: 1px solid rgba(255, 255, 255, 0.10);
            background: rgba(255, 255, 255, 0.035);
            color: rgba(255, 255, 255, 0.38);
            font-size: 14px;
            font-weight: 950;
            cursor: pointer;
            transition: 150ms ease;
        }

        .home-mobile-currency .currency-btn:hover,
        .home-mobile-currency .currency-btn.active {
            background: white !important;
            color: #101014 !important;
            border-color: white;
        }

        .home-mobile-wide-btn {
            min-height: 58px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 0 18px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.10);
            background: rgba(255, 255, 255, 0.035);
            color: white;
            font-size: 16px;
            font-weight: 950;
            transition: 150ms ease;
        }

        .home-mobile-wide-btn:hover {
            background: rgba(255, 255, 255, 0.075);
            transform: translateY(-1px);
        }

        .home-mobile-auth-user {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .home-mobile-auth-head {
            min-height: 72px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            border-radius: 18px;
            padding: 10px 16px 10px 12px;
            background: rgba(255, 255, 255, 0.055);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: white;
            cursor: pointer;
        }

        .home-mobile-auth-left {
            display: flex;
            align-items: center;
            gap: 13px;
            min-width: 0;
        }

        .home-mobile-auth-head img {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            object-fit: cover;
            border: 1px solid rgba(255, 255, 255, 0.13);
            background: rgba(156, 54, 245, 0.55);
        }

        .home-mobile-auth-name {
            display: block;
            max-width: 210px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            color: white;
            font-size: 16px;
            font-weight: 950;
            line-height: 1.1;
        }

        .home-mobile-auth-sub {
            display: block;
            margin-top: 4px;
            color: rgba(255, 255, 255, 0.38);
            font-size: 12px;
            font-weight: 900;
        }

        .home-account-dropdown.open {
            max-height: 260px;
            margin-top: 4px;
        }

        .home-account-dropdown a {
            min-height: 44px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 14px;
            border-radius: 14px;
            color: rgba(255, 255, 255, 0.70);
            font-size: 14px;
            font-weight: 850;
            transition: 150ms ease;
        }

        .home-account-dropdown a:hover {
            color: white;
            background: rgba(255, 255, 255, 0.065);
        }

        @media (min-width: 1280px) {
            .home-mobile-menu,
            .home-mobile-backdrop {
                display: none !important;
            }
        }

        @media (max-width: 420px) {
            .home-mobile-currency {
                grid-template-columns: repeat(4, 1fr);
            }

            .home-mobile-menu {
                padding-inline: 16px;
            }
        }

        @media (max-width: 640px) {
            .footer-spaced {
                margin-top: 4rem;
            }
        }

        @media (min-width: 1280px) {
            .mobile-menu-overlay,
            .mobile-menu-drawer {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .product-image {
                height: 190px;
            }

            .product-title {
                min-height: unset;
            }

            #dropdown-wrapper {
                right: auto;
                left: 0;
            }
        }
    
        /* SAFE FINAL PATCH: currency hover overlay, no layout pushing */
        #currency-widget-container {
            position: relative !important;
            z-index: 100050 !important;
        }

        #dropdown-wrapper {
            position: absolute !important;
            top: 100% !important;
            right: 0 !important;
            left: auto !important;
            z-index: 100055 !important;
            padding-top: 8px !important;
            opacity: 0;
            display: none;
            transition: opacity 160ms ease;
        }

        #currency-grid {
            position: relative !important;
            z-index: 100056 !important;
            pointer-events: auto !important;
        }

        .auth-wrap {
            position: relative !important;
            z-index: 100040 !important;
        }

        .user-dropdown:not(.active) {
            pointer-events: none !important;
        }

        .user-dropdown.active {
            pointer-events: auto !important;
        }
