    /* Font Faces */
        @font-face {
            font-family: 'Outfit';
            font-style: normal;
            font-weight: 300;
            font-display: swap;
            src: url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');
        }

        @font-face {
            font-family: 'Outfit';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');
        }

        @font-face {
            font-family: 'Outfit';
            font-style: normal;
            font-weight: 500;
            font-display: swap;
            src: url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');
        }

        @font-face {
            font-family: 'Outfit';
            font-style: normal;
            font-weight: 600;
            font-display: swap;
            src: url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');
        }

        /* Variables */
        :root {
            --color-dark1: #1f2330;
            --color-dark2: #111c29;
            --color-dark3: #1d2229;
            --color-text1st: #f2f2f2;
            --color-text2nd: #cfcfcf;
            --color-text3rd: #4b5563;
            --color-foreground2: #1a2534;
            --color-foreground3: #16232f;
            --color-primary: #2967e0;
            --color-success: #10b981;
            --color-error: #ef4444;
            --color-warning: #f59e0b;
        }

        /* Reset & Base */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: #131d2d;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* ===== OPTIMIZED HEADER ===== */
        .header {
            background-color: #1a1a3d;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0.10rem 0;
            box-shadow: #00000017 0 4px 6px -1px, #0000001f 0 2px 4px -1px;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            position: relative;
        }

        /* Balance container - FIXED */
        .balance-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: #222248;
            border-radius: 168px 147px 168px 147px;
            /* Simplified */
            padding: 0.4rem 0.8rem;
            height: 44px;
            margin-left: 16px;
            flex-shrink: 0;
            /* Prevent shrinking */
        }

        .center-balance {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 5;
            white-space: nowrap;
            /* Prevent wrapping */
        }

        /* Username with GIF - SMALLER BUT BALANCED */
        .username-container {
            display: block;
            margin-left: auto;
        }



        .username-box {
            /* background: #222248; */
            border-radius: 8px;
            padding: 0.5rem 0.8rem;
            /* border: 1px solid rgba(255, 255, 255, 0.1); */
            color: var(--color-text1st);
            font-weight: 500;
            font-size: 13px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            white-space: nowrap;
            min-width: auto;
            justify-content: space-between;
            height: 1px;
        }

        .profile-avatar {
            width: 32px;
            /* Reduced from 47px */
            height: 32px;
            /* Reduced from 47px */
            border-radius: 25%;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: linear-gradient(180deg, #cbb035, #a1700c);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
            flex-shrink: 0;
        }

        /* Mobile specific - keep your existing but add this */
        @media (max-width: 600px) {
            .username-container {
                display: block !important;
                order: 3;
                margin-left: auto;
            }

            .profile-avatar {
                width: 28px;
                height: 28px;
                margin-right: 5px;
            }

            .username-box {
                padding: 0.3rem 0.6rem;
                height: 36px;
                font-size: 12px;
            }

            .username-box span {
                max-width: 70px;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            /* Keep balance hidden on mobile */
            .center-balance {
                display: none !important;
            }

            .mobile-balance {
                display: block !important;
            }
        }

        /* Very small screens */
        @media (max-width: 360px) {
            .username-box span {
                max-width: 50px;
            }

            .profile-avatar {
                width: 24px;
                height: 24px;
            }
        }

        .logo {
            height: 58px;
            width: 157px;
            max-width: 263px;
            object-fit: contain;
            z-index: 10;
        }

        /* Auth Buttons Container */
        .auth-buttons {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        /* Login Button */
        .login-btn {
            background-color: var(--color-primary);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 0.6rem 1.2rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            white-space: nowrap;
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .login-btn:hover {
            background-color: #8888881b;
            transform: translateY(-1px);
        }

        /* Sign Up Button */
        .signup-btn {
            background-color: transparent;
            color: var(--color-text1st);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 0.6rem 1.2rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            white-space: nowrap;
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .signup-btn:hover {
            background-color: rgba(255, 255, 255, 0.05);
            border-color: var(--color-primary);
        }

        /* Mobile Logout Button */
        .mobile-logout-btn {
            display: none;
            background-color: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 0.6rem 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            white-space: nowrap;
            min-height: 40px;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .mobile-logout-btn:hover {
            background-color: rgba(239, 68, 68, 0.1);
            border-color: var(--color-error);
        }

        .balance-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: #222248;
            border-radius: 0px;
            padding: 0.4rem 0.8rem;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 6px;
            height: 44px;
            margin-left: 16px;
        }

        .center-balance {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 5;
        }

        .balance-button {
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.3s;
        }



        .balance-text {
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .add-balance-button {
            background: linear-gradient(180deg, #f2a93e, #e06e21);
            border: none;
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
            border-top-right-radius: 3px;
            border-bottom-right-radius: 3px;
            border-top-left-radius: 3px;
            border-bottom-left-radius: 3px;
        }

        .add-balance-button:hover {
            background: linear-gradient(180deg, #dcbe39, #c08819);
        }

        /* Username Box - NOW IN TOP RIGHT CORNER ON BIG SCREENS */
        .username-container {
            position: relative;
        }

        .username-box {
            /* background: #222248; */
            border-radius: 8px;
            padding: 0.5rem 1rem;
            /* border: 1px solid rgba(255, 255, 255, 0.1); */
            color: var(--color-text1st);
            font-weight: 500;
            font-size: 14px;
            /* cursor: pointer; */
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            white-space: nowrap;
            /* min-width: 140px; */
            justify-content: space-between;
        }


        .username-dropdown {
            position: absolute;
            top: calc(75% + 1.69rem);
            right: -6px;
            background: #1a1a3d;
            /* border-radius: 8px; */
            padding: 0.5rem 0;
            min-width: 160px;
            display: none;
            z-index: 100;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
        }




        .username-dropdown.active {
            display: block;
        }

        .dropdown-item {
            padding: 0.75rem 1rem;
            color: #8a8aa9;
            text-decoration: none;
            display: block;
            transition: background 1.2s;
            font-size: 14px;
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }

        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--color-text1st);
        }

        .dropdown-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 0.25rem 0;
        }

        /* Mobile Balance */
.mobile-balance {
    display: none;
    background: #222248;
    border-top-right-radius: 168px;
    border-bottom-right-radius: 147px;
    padding: 0.5rem 1rem;
    margin: 0.5rem auto;
    text-align: center;
    width: 90%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
}
        /* For SMALL screens (≤ 600px) */
        @media (max-width: 600px) {
            .username-container {
                display: block !important;
                /* Force it to show */
                order: 3;
                /* Position it appropriately in flex layout */
                margin-left: auto;
                /* Push to the right */
            }

            .username-box {
                min-width: auto;
                /* Reduce width on mobile */
                padding: 0.3rem 0.5rem;
            }

            .username-box span {
                font-size: 12px;
                /* Smaller text on mobile */
            }

            .profile-avatar {
                width: 28px;
                height: 28px;
                margin-right: 4px;
            }

            /* Adjust the header layout for mobile */
            .nav {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                gap: 0.5rem;
            }


        }



        /* Auth Modal */
        .auth-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(0 25 255 / 8%);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .auth-modal.active {
            display: flex;
        }

        .auth-content {
            background: #030338;
            border-radius: 16px;
            padding: 2rem;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 20px 40px rgb(0 59 255 / 2%);
            position: relative;
        }

        .auth-tabs {
            display: flex;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--color-text3rd);
        }

        .auth-tab {
            flex: 1;
            padding: 1rem;
            background: none;
            border: none;
            color: var(--color-text2nd);
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .auth-tab.active {
            color: var(--color-primary);
            border-bottom: 2px solid var(--color-primary);
        }

        .auth-form {
            display: none;
        }

        .auth-form.active {
            display: block;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--color-text2nd);
            font-size: 14px;
        }

        .form-group input {
            width: 100%;
            padding: 0.8rem;
            background-color: #22224a63;
            border: 0px solid var(--color-text3rd);
            border-radius: 8px;
            color: var(--color-text1st);
            font-size: 16px;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--color-primary);
        }

        .auth-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(180deg, #355bcb, #0c21a1);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .auth-btn:hover {
            background-color: #3674ef;
        }

        .auth-error {
            color: var(--color-error);
            font-size: 14px;
            margin-top: 1rem;
            display: none;
        }

        .auth-error.active {
            display: block;
        }

        .auth-success {
            color: var(--color-success);
            font-size: 14px;
            margin-top: 1rem;
            display: none;
        }

        .auth-success.active {
            display: block;
        }

        .close-auth {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--color-text2nd);
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
        }

        /* Games Section */
        .section-title {
            font-weight: bold;
            /* font-weight: 400; */
            color: #cfcfcf;
            font-size: 26px;
            margin: 1rem 0 1rem;
        }

        .games-preview {
            position: relative;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.3rem;
            /* margin-bottom: 2rem; */
        }

        .game-glow {
            position: absolute;
            top: 0;
            transform: translate(-10%, -22.5%);
            left: 0;
            z-index: -1;
            opacity: 0.5;
        }

        .game-card {
            background: var(--color-foreground3);
            height: 210px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .game-img {
            width: 100%;
            height: 111%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .game-card:hover .game-img {
            transform: scale(1.05);
            filter: brightness(1.14);
        }

        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(8px);
            opacity: 0;
            transition: opacity 0.4s;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
            border-radius: 13px;
            z-index: 1;
        }

        .game-card:hover .game-overlay {
            opacity: 1;
        }

        .game-overlay p {
            font-size: 20px;
            font-weight: 500;
            color: white;
        }

        .play-button {
            background: linear-gradient(180deg, #c7892d, #e06e21);
            border-radius: 50%;
            height: 70px;
            width: 70px;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: bottomTop 1s;
        }

        .play-button svg {
            height: 40px;
            width: 40px;
            fill: #ffffff;
        }

        .game-overlay small {
            font-weight: 500;
            color: #e0e0e0;
        }

        /* Earn Section */
        .earn-section {
            margin: 2rem 0;
        }

        .feature-squares {
            display: flex;
            width: 100%;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .feature-box {
            background-color: #111c29ba;
            overflow: hidden;
            border-radius: 13px;
            padding: 2.5rem;
            flex: 1;
            box-shadow: rgb(43 70 99 / 25%) 0px 20px 30px -10px;
        }

        .feature-icon {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .feature-icon svg {
            transform: scale(1.4);
            fill: var(--color-primary);
        }

        .feature-shadow {
            height: 100px;
            width: 100px;
            border-radius: 50%;
            filter: blur(55px);
            position: absolute;
            top: 0;
            left: 0;
            transform: translate(-20px, -30px);
            opacity: 0.4;
            display: block;
            background: #2967e0;
        }

        .feature-box h5 {
            margin: 1rem 0;
            color: #f2f2f2;
            font-size: 19px;
            font-weight: 400;
        }

        .feature-box p {
            color: #7e8895;
            font-weight: 300;
            line-height: 26px;
            margin-bottom: 2rem;
        }

        .connect-list {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .connect-item {
            display: flex;
            width: 30%;
            border-radius: 10px;
            background: linear-gradient(180deg, #222248, #1a1a3d);
            padding: 1rem;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            color: inherit;
        }

        .connect-item-left {
            display: flex;
            align-items: center;
        }

        .connect-item-left p {
            color: hsla(0, 0%, 76%, 0.95);
            font-weight: 500;
            font-size: 18px;
            margin: 0;
        }

        .connect-icon {
            height: 32px;
            width: 32px;
            fill: var(--color-primary);
        }

        /* Banner */
        .banner-container {
            width: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: #111c29;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem;
            box-sizing: border-box;
            border-radius: 16px;
            margin: 2.5rem 0;
        }

        .banner-container h1 {
            margin: 0 0 12px;
            color: #f2f2f2;
            font-size: 30px;
            font-weight: 600;
        }

        .banner-container p {
            margin: 0 0 2rem;
            color: #7e8895;
        }

        .banner-btn {
            height: 45px;
            width: fit-content;
            padding: 0 1.7rem;
            background: linear-gradient(180deg, #222248, #1a1a3d);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 500;
            cursor: pointer;
        }

        .banner-btn:hover {
            background-color: #3674ef;
        }

        .footer {
            margin-top: 3rem;
            background-color: #21214657;
            border-radius: 45px;
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            position: relative;
            top: -20px;
            border-bottom: 1px solid rgb(213 123 39) !important;
        }



        .footer-left {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .footer-socials {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-btn {
            background: #06165200;
            border-radius: 10px;
            width: 42px;
            height: 42px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .social-btn svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .footer-middle {
            flex: 1;
            margin: 0 2rem;
        }

        .footer-middle h6 {
            font-size: 16px;
            color: #cfcfcf;
            /* font-weight: 500; */
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .footer-middle p {
            font-size: 14px;
            color: #7e8895;
            line-height: 22px;
            font-weight: bold;
        }

        .footer-right {
            display: flex;
            gap: 2rem;
        }

        .footer-links h6 {
            font-size: 16px;
            color: #cfcfcf;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0rem;
        }

        .footer-links a {
            color: #7e8895;
            text-decoration: none;
            font-weight: bold;
        }

        .footer-links a:hover {
            color: #cfcfcf;
        }

        /* Background Image */
        .bg_x9281_c0ver {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image: url('/photos/image.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -9999;
            opacity: 0.5;
        }

                /* Background Image */
        .bg_x9281_c0ver1 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: linear-gradient(rgb(26 26 61 / 9%), rgb(26 26 61 / 15%)), url(/photos/mines.png) no-repeat scroll 50% 50% / cover padding-box border-box;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -9999;
            opacity: 0.9;
        }

                        /* Background Image */
        .bg_x9281_c0ver2 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image: url('/photos/image.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -9999;
            opacity: 0.3;
        }

              .bg_x9281_c0ver3 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image: url('/photos/plinko-bg.b093efd9fe953fdb3242.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -9999;
            opacity: 1;
        }

        /* Animations */
        @keyframes bottomTop {
            0% {
                transform: translateY(2em);
                opacity: 0;
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Loading Spinner */
        .spinner {
            border: 3px solid var(--color-text3rd);
            border-top: 3px solid var(--color-primary);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
            display: none;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* ========== RESPONSIVE DESIGN ========== */
        /* For BIG screens (> 600px) */
        @media (min-width: 601px) {
            .auth-buttons {
                display: flex;
                /* Show auth buttons on big screens when logged out */
            }

            .mobile-logout-btn {
                display: none !important;
                /* Hide mobile logout on big screens */
            }




            .mobile-balance {
                display: none !important;
                /* Hide mobile balance on big screens */
            }

        }

        @media (max-width: 600px) {

            /* Hide auth buttons when logged in */
            body.logged-in .auth-buttons {
                display: none !important;
            }

            /* Show mobile logout button when logged in */
            body.logged-in .mobile-logout-btn {
                display: flex !important;
            }

            /* Hide username container by default */
            .username-container {
                display: none !important;
            }

            /* SHOW username container (with GIF/avatar) when logged in */
            body.logged-in .username-container {
                display: block !important;
                order: 3;
                margin-left: -10px;
            }

            /* Style the username box for mobile */
            body.logged-in .username-box {
                padding: 0.25rem 0.5rem;
                height: 36px;
                min-width: auto;
            }

            @media (max-width: 600px) {
                body.logged-in .profile-avatar {
                    width: 40px;
                    height: 40px;
                    margin-right: 5px;
                }
            }

            /* Hide the text/username display on mobile if needed */
            body.logged-in .username-box span {
                display: none;
                /* Hide text on mobile, keep only GIF */
            }

            /* Hide chevron on mobile if needed */
            body.logged-in .username-box i {
                display: none;
            }

            /* HIDE mobile balance by default */
            .mobile-balance {
                display: none !important;
            }

            /* Only show mobile balance when logged in */
            body.logged-in .mobile-balance {
                display: block !important;
                margin: 0.5rem auto;
                width: fit-content;
            }
        }

        /* For SMALL screens (≤ 600px) */
        @media (max-width: 600px) {
            .container {
                padding: 0 0.75rem;
            }

            .header {
                padding: 0.6rem 0;
            }

            .logo {
                height: 41px;
                max-width: 150px;
            }

            .center-balance {
                display: none !important;
                /* Hide center balance on mobile */
            }

            .auth-buttons {
                display: flex;
                /* Show auth buttons on mobile when logged out */
            }

            .mobile-balance {
                display: block !important;
                /* Show mobile balance on mobile */
            }

            .mobile-logout-btn {
                display: flex;
                /* Show mobile logout on mobile when logged in */
            }

            .section-title {
                font-size: 22px;
            }

            .games-preview {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 1rem;
            }

            .game-card {
                height: 180px;
            }

            .feature-squares {
                flex-direction: column;
            }

            .footer {
                flex-direction: column;
                gap: 2rem;
            }

            .footer-right {
                justify-content: space-between;
                width: 100%;
            }
        }

        /* For Small Mobile (≤ 480px) */
        @media (max-width: 480px) {
            .container {
                padding: 0 0.5rem;
            }

            .header {
                padding: 0.5rem 0;
            }

            .logo {
                height: 38px;
                max-width: 94px;
            }



            .login-btn,
            .signup-btn {
                padding: 0.4rem 0.8rem;
                font-size: 12px;
                min-height: 32px;
            }

            .mobile-logout-btn {
                padding: 0.4rem 0.8rem;
                font-size: 12px;
                min-height: 32px;
            }

            .games-preview {
                grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
                gap: 0.75rem;
            }

            .game-card {
                height: 160px;
            }

            .feature-box {
                padding: 1.5rem;
            }

            .banner-container {
                padding: 1.5rem;
            }

            .banner-container h1 {
                font-size: 24px;
            }

            .auth-content {
                padding: 1.25rem;
                width: 98%;
            }

            .auth-tab {
                padding: 0.75rem;
                font-size: 14px;
            }
        }

        /* For Very Small Mobile (≤ 360px) */
        @media (max-width: 360px) {
            .logo {
                height: 27px;
                max-width: 75px;
            }

            .login-btn,
            .signup-btn {
                padding: 0.35rem 0.7rem;
                font-size: 11px;
                min-height: 30px;
            }

            @media (max-width: 360px) {
                .mobile-logout-btn {
                    padding: 0.35rem 0.2rem;
                    font-size: 11px;
                    min-height: 30px;
                }
            }

            .games-preview {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-title {
                font-size: 20px;
            }

            .auth-buttons {
                gap: 0.5rem;
            }
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 4px;
            height: 8px;
            border-radius: 50%;
        }

        /* Add this to your existing CSS */

        /* Google Login Button Styles */
        .or-divider {
            display: flex;
            align-items: center;
            margin: 1rem 0;
            text-align: center;
        }

        .or-divider::before,
        .or-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
        }

        .or-divider span {
            padding: 0 1rem;
            color: var(--color-text2nd);
            font-size: 14px;
            font-weight: 500;
        }

        .google-btn {
            width: 100%;
            padding: 0.85rem 1rem;
            background: white;
            color: #444;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-top: 0.5rem;
        }

        .google-btn:hover {
            background: #f8f8f8;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .google-btn:active {
            transform: translateY(0);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .google-btn svg {
            width: 20px;
            height: 20px;
        }

        /* Responsive adjustments for Google button */
        @media (max-width: 480px) {
            .google-btn {
                padding: 0.7rem 0.8rem;
                font-size: 14px;
            }

            .google-btn svg {
                width: 18px;
                height: 18px;
            }
        }

        /* ========== SURVEY SECTION STYLES ========== */
        .survey-section {
            margin: 3rem auto;
            padding: 0 1rem;
            max-width: 1200px;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Survey Header */
        .survey-header {
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .survey-header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .survey-header h2 {
            color: var(--color-text1st);
            font-size: 1.8rem;
            font-weight: 500;
            margin: 0;
            background: linear-gradient(90deg, #cbb035, #a1700c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .survey-subtitle {
            color: var(--color-text2nd);
            font-size: 1rem;
            margin: 0;
        }

        /* Close Button */
        .close-survey-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--color-text2nd);
            width: 40px;
            height: 40px;
            border-radius: 10px;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }



        /* Survey Container */
        .survey-container {
            background: #111c29;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            min-height: 650px;
            position: relative;
        }

        /* Loading State */
        .survey-loading {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #111c29;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-top: 3px solid var(--color-primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 1.5rem;
        }

        .survey-loading p {
            color: var(--color-text2nd);
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Survey Frame Container */
        .survey-frame-container {
            width: 100%;
            height: 650px;
            position: relative;
        }

        #surveyIframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* Quick Info */
        .survey-quick-info {
            padding: 1rem;
            background: rgba(0, 0, 0, 0.2);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .info-tip {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--color-text2nd);
            font-size: 0.95rem;
        }

        .info-tip span {
            font-size: 1.2rem;
        }

        /* Success Notification */
        .survey-success-notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 1rem 1.25rem;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
            z-index: 9999;
            animation: slideUp 0.3s ease-out;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .survey-success-notification.hiding {
            animation: slideDown 0.3s ease-in forwards;
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%) scale(0.9);
                opacity: 0;
            }

            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        @keyframes slideDown {
            from {
                transform: translateY(0) scale(1);
                opacity: 1;
            }

            to {
                transform: translateY(100%) scale(0.9);
                opacity: 0;
            }
        }

        /* Error State */
        .survey-error {
            text-align: center;
            padding: 3rem;
            color: var(--color-text2nd);
        }

        .survey-error h3 {
            color: var(--color-text1st);
            margin-bottom: 1rem;
        }

        .retry-button {
            background: linear-gradient(180deg, #355bcb, #0c21a1);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            margin-top: 1rem;
            transition: all 0.3s;
        }

        .retry-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(53, 91, 203, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .survey-container,
            .survey-frame-container,
            #surveyIframe {
                height: 550px;
            }

            .survey-header h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {

            .survey-container,
            .survey-frame-container,
            #surveyIframe {
                height: 450px;
            }

            .survey-section {
                margin: 2rem 0;
                padding: 0 0.5rem;
            }

            .survey-success-notification {
                left: 10px;
                right: 10px;
                bottom: 10px;
                max-width: none;
            }
        }

        /* LOADING SCREEN CSS - Mobile Friendly */
        #__ls {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #131d2d;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2147483647;
            /* Maximum z-index */
            opacity: 1;
            padding: 20px;
            box-sizing: border-box;
        }

        .__ls-box {
            text-align: center;
            max-width: 300px;
            width: 100%;
        }

        .__ls-spinner {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            position: relative;
        }

        .__ls-spinner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 4px solid transparent;
            border-top: 4px solid #cbb035;
            border-right: 4px solid #cbb035;
            animation: __ls-spin 0.8s linear infinite;
        }

        .__ls-text {
            color: white;
            font-size: clamp(16px, 4vw, 18px);
            /* Responsive font size */
            font-weight: 500;
            margin-bottom: 15px;
            font-family: 'Outfit', sans-serif;
            line-height: 1.4;
        }

        .__ls-dots {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-top: 10px;
        }

        .__ls-dot {
            width: 8px;
            height: 8px;
            background: #cbb035;
            border-radius: 50%;
            animation: __ls-bounce 1.4s infinite ease-in-out;
        }

        .__ls-dot:nth-child(1) {
            animation-delay: -0.32s;
        }

        .__ls-dot:nth-child(2) {
            animation-delay: -0.16s;
        }

        @keyframes __ls-spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes __ls-bounce {

            0%,
            80%,
            100% {
                transform: scale(0);
            }

            40% {
                transform: scale(1);
            }
        }

        /* DON'T HIDE OTHER ELEMENTS - ONLY FADE THEM */
        body:not(.page-loaded) {
            opacity: 0;
            overflow: hidden !important;
            height: 100vh !important;
            position: relative;
        }

        body.page-loaded {
            opacity: 1;
            transition: opacity 0.5s ease;
            overflow: auto !important;
            height: auto !important;
        }

        /* Fade out loading screen */
        #__ls.fade-out {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
        }

        /* Remove loading screen after fade */
        #__ls.removed {
            display: none !important;
        }




        .or-divider {
            display: none !important;

        }

        /* MOBILE RESPONSIVE */
        @media (max-width: 768px) {
            #__ls {
                padding: 15px;
            }

            .__ls-spinner {
                width: 50px;
                height: 50px;
                margin-bottom: 15px;
            }

            .__ls-spinner::before {
                border-width: 3px;
            }

            .__ls-text {
                font-size: 16px;
                margin-bottom: 12px;
            }

            .__ls-dots {
                margin-top: 8px;
            }

            .__ls-dot {
                width: 7px;
                height: 7px;
            }
        }

        @media (max-width: 480px) {
            #__ls {
                padding: 10px;
            }

            .__ls-spinner {
                width: 45px;
                height: 45px;
                margin-bottom: 12px;
            }

            .__ls-text {
                font-size: 15px;
                margin-bottom: 10px;
            }

            .__ls-dot {
                width: 6px;
                height: 6px;
            }
        }

        @media (max-width: 360px) {
            .__ls-spinner {
                width: 40px;
                height: 40px;
                margin-bottom: 10px;
            }

            .__ls-text {
                font-size: 14px;
            }

            .__ls-dot {
                width: 5px;
                height: 5px;
            }
        }

        /* Prevent body scroll on mobile during loading */
        body:not(.page-loaded) {
            position: fixed;
            width: 100%;
        }

        .profile-avatar {
            width: 47px;
            height: 47px;
            border-radius: 25%;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: linear-gradient(180deg, #c7892d, #e06e21);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
        }


        .profile-pic-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .username-box {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .profile-pic-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(0 130 255 / 4%);
            z-index: 3000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(10px);
        }

        .profile-pic-modal.active {
            display: flex;
        }

        .profile-pic-content {
            background: #03153a40;
            border-radius: 20px;
            padding: 2rem;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgb(0 74 255 / 4%);
            /* border: 1px solid rgba(255, 255, 255, 0.1); */
        }

        .profile-pic-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
        }

        .profile-pic-header h3 {
            color: white;
            font-size: 1.5rem;
            font-weight: 500;
            background: linear-gradient(90deg, #cbb035, #a1700c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .close-profile-pic {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 2rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .close-profile-pic:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        #mobileLogoutBtn {
            display: none !important;
        }

        .mobile-balance {
            display: none !important;
        }

.profile-pic-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); */
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: space-evenly;
    justify-items: center;
}

        .profile-pic-option {
            width: 80px;
            height: 80px;
            border-radius: 15%;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            border: 3px solid rgba(255, 255, 255, 0.2);
            position: relative;
            background: linear-gradient(180deg, #cbb035, #a1700c);
        }

        .profile-pic-option:hover {
            transform: scale(1.05);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .profile-pic-option.selected {
            border-color: #cbb035;
            box-shadow: 0 0 0 3px rgba(203, 176, 53, 0.3);
        }

        .profile-pic-option img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-pic-footer {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .profile-pic-confirm {
            background: linear-gradient(180deg, #c7892d, #e06e21);
            color: #000000;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            min-width: 180px;
        }

        .profile-pic-confirm:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(203, 176, 53, 0.3);
        }

        .profile-pic-confirm:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }

        @media (max-width: 600px) {
            .profile-avatar {
                width: 40px;
                height: 40px;
                margin-right: 6px;
            }
        }

.profile-pic-content {
    padding: 1.5rem;
    width: 100%;
}

.profile-pic-grid {
    grid-template-columns: repeat(4, 0fr);
    gap: 1rem;
}

        .profile-pic-option {
            width: 70px;
            height: 70px;
        }

        /* Auth Buttons Container */
        /* ========== SMALLER BUTTONS ========== */

        /* Make button containers smaller */
        .signup-btn,
        .login-btn,
        .auth-tab {
            background: transparent;
            border: none;
            padding: 0;
            margin: 0;
            font: inherit;
            cursor: pointer;
            outline: inherit;
            display: block;
            width: auto;
            /* Change from 100% to auto */
        }

        /* ========== RECAPTCHA STYLES ========== */
        .recaptcha-wrapper {
            display: flex;
            justify-content: center;
            margin: 1rem 0;
            min-height: 78px;
        }

        #recaptchaContainer {
            transform: scale(0.95);
            transform-origin: center;
        }

        /* Mobile adjustments */
        @media (max-width: 480px) {
            #recaptchaContainer {
                transform: scale(0.85);
            }
        }

        @media (max-width: 360px) {
            #recaptchaContainer {
                transform: scale(0.75);
            }
        }

        /* Error message styling */
        #recaptchaError {
            color: #ef4444;
            font-size: 14px;
            margin-top: 8px;
            text-align: center;
            padding: 8px;
            background: rgba(239, 68, 68, 0.1);
            border-radius: 6px;
            border: 1px solid rgba(239, 68, 68, 0.2);
        }

        .box-button {
            cursor: pointer;
            border: 1px solid #f46f1e;
            background: linear-gradient(180deg, #ffae00, #f46f1e);
            padding-bottom: 6px;
            transition: 0.1s ease-in-out;
            user-select: none;
            border-radius: 11px;
            display: block;
            width: auto;
            box-sizing: border-box;
        }

        .button {
            background-color: #151539;
            border: 3px solid #ffffff00;
            padding: 4px 9px;
            border-radius: 10px;
            /* display: block; */
            margin-top: 0px;
            width: 79px;
        }

        /* Smaller text */
        .button span {
            font-size: 0.9em;
            /* Reduced from 1.2em */
            letter-spacing: 0.5px;
            /* Reduced from 1px */
            display: block;
            text-align: center;
        }

        /* Adjust click effect for smaller buttons */
        .signup-btn:active .box-button,
        .login-btn:active .box-button,
        .auth-tab:active .box-button,
        .auth-tab.active .box-button {
            padding: 0;
            margin-bottom: 6px;
            /* Reduced from 10px */
            transform: translateY(6px);
            /* Reduced from 10px */
        }

        /* Keep hover effect */
        .signup-btn:hover .box-button,
        .login-btn:hover .box-button,
        .auth-tab:hover .box-button {
            background-color: #888;
        }

        /* ========== ADJUST HEADER LAYOUT ========== */
        /* Reduce gap between buttons in auth-buttons */
        .auth-buttons {
            display: flex;
            gap: 6px;
            /* Reduced from 8px */
            align-items: center;
        }

        /* Adjust auth tabs if needed */
        .auth-tabs {
            display: flex;
            gap: 6px;
            /* Reduced from 8px */
        }

        /* ========== RESPONSIVE ADJUSTMENTS ========== */
        @media (max-width: 480px) {

            /* Even smaller on mobile */
            .box-button {
                border: 1px solid #a1700c;
                padding-bottom: 4px;
                border-radius: 10px;
            }

            .button {
                background-color: #151539;
                border: 3px solid #ffffff00;
                padding: 4px 9px;
                border-radius: 10px;
                /* display: block; */
                margin-top: 0px;
                width: 79px;
                height: 33px;
            }

            .button span {
                font-size: 0.8em;
                letter-spacing: 0.3px;
            }

            .signup-btn:active .box-button,
            .login-btn:active .box-button,
            .auth-tab:active .box-button,
            .auth-tab.active .box-button {
                margin-bottom: 4px;
                transform: translateY(4px);
            }

            .auth-buttons {
                gap: 4px;
            }
        }

        @media (max-width: 360px) {

            /* Extra small screens */
            .button span {
                font-size: 0.7em;
            }
        }


        .mobile-logout-btn {
            display: none !important;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        .banner-container {
            position: relative;
            width: 100%;
            max-width: 1165px;
            height: 380px;
            background: #111c29ba;
            border-radius: 25px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 0 auto;
            top: 25px;
        }

        .banner-slide {
            position: absolute;
            width: 144%;
            height: 165%;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.5s ease;
            padding: 30px;
            left: -256px;
        }

        .banner-slide.active {
            opacity: 1;
        }

        .slide-png {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }



        /* Side buttons */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.3);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .nav-btn:hover {
            background: rgba(0, 0, 0, 0.5);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-btn.prev {
            left: 10px;
        }

        .nav-btn.next {
            right: 10px;
        }

        .btn-icon {
            width: 20px;
            height: 20px;
            filter: invert(1);
        }

        /* Progress bar */
        .progress-container {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: rgba(0, 0, 0, 0.05);
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(180deg, #cbb035, #a1700c);
            transition: width 6s linear;
            position: relative;
            overflow: hidden;
        }

        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.4),
                    transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }

        /* Slide dots */
        .slide-dots {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: linear-gradient(180deg, #cbb035, #a1700c);
            transform: scale(1.2);
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            .banner-container {
                height: 400px;
                max-width: 95%;
            }

            .nav-btn {
                width: 35px;
                height: 35px;
            }

            .btn-icon {
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 480px) {
            .banner-container {
                height: 350px;
            }

            @media (max-width: 480px) {
                .banner-slide {
                    height: 141%;
                    width: 293%;
                    left: -325px;
                }
            }

            .nav-btn {
                width: 30px;
                height: 30px;
            }

            .btn-icon {
                width: 16px;
                height: 16px;
            }

            .slide-dots {
                bottom: 10px;
            }

            .dot {
                width: 8px;
                height: 8px;
            }
        }

        @media (max-width: 360px) {
            .banner-container {
                height: 300px;
            }
        }

        .mp-section {
            max-width: 900px;
            margin: 30px auto;
            padding: 20px;
            text-align: center;
            font-family: system-ui, sans-serif;
        }

        .mp-title {
            font-size: 1.8rem;
            color: #cfcfcf;
            margin-bottom: 8px;
        }

        .mp-sub {
            font-size: 1rem;
            color: #cfcfcf;
            margin-bottom: 35px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .mp-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 51px;
        }

        .fc-box {
            height: 254px;
            background: #21214657;
            border-radius: 46px;
            padding: 20px 15px;
            width: 180px;
            /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
            /* border: 1px solid #eee; */
            transition: transform 0.2s;
        }

        .fc-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .fc-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #f9f9ff;
        }

        .fc-img {
            width: 35px;
            height: 35px;
            object-fit: contain;
        }

        .fc-name {
            font-size: 1.3rem;
            color: #cfcfcf;
            margin-bottom: 10px;
        }

        .fc-text {
            color: #cfcfcf;
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 20px;
            min-height: 40px;
        }



        @media (max-width: 768px) {
            .mp-container {
                flex-direction: column;
                align-items: center;
            }

            .fc-box {
                width: 100%;
                max-width: 260px;
            }
        }
                    @media (max-width: 301px) {
                .logo {
                    display: none;
                }
            }

             .mp-section {
                    max-width: 900px;
                    margin: 30px auto;
                    padding: 20px;
                    text-align: center;
                    font-family: system-ui, sans-serif;
                    background: #05113236;
                    border-radius: 40px;
                }

                .mp-title {
                    font-size: 1.8rem;
                    color: #cfcfcf;
                    margin-bottom: 8px;
                }

                .mp-sub {
                    font-size: 1rem;
                    color: #cfcfcf;
                    margin-bottom: 35px;
                    max-width: 500px;
                    margin-left: auto;
                    margin-right: auto;
                }

                .mp-container {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: center;
                    gap: 51px;
                }

                .fc-box {
                    height: 254px;
                    background: #21214657;
                    border-radius: 46px;
                    padding: 20px 15px;
                    width: 180px;
                    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
                    /* border: 1px solid #eee; */
                    transition: transform 0.2s;
                }



                .fc-icon {
                    width: 60px;
                    height: 60px;
                    margin: 0 auto 15px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 50%;
                    background: linear-gradient(to right, #4a6ee0, #6a5ae0);
                }

                .fc-img {
                    border-radius: 12px;
                    width: 35px;
                    height: 35px;
                    object-fit: contain;
                    background: white;
                }

                .fc-name {
                    font-size: 1.3rem;
                    color: #cfcfcf;
                    margin-bottom: 10px;
                }

                .fc-text {
                    color: #cfcfcf;
                    font-size: 0.9rem;
                    line-height: 1.4;
                    margin-bottom: 20px;
                    min-height: 40px;
                }

                .fc-btn {
                    display: inline-block;
                    padding: 10px 22px;
                    background: linear-gradient(to right, #c6a931, #a87a12);
                    text-decoration: none;
                    border-radius: 25px;
                    font-weight: 600;
                    font-size: 0.95rem;
                    transition: all 0.2s;
                    /* box-shadow: 0 3px 10px rgba(106, 90, 224, 0.2); */
                    border: 1px solid rgb(255 187 0) !important;
                }


                @media (max-width: 768px) {
                    .mp-container {
                        flex-direction: column;
                        align-items: center;
                    }

                    .fc-box {
                        width: 100%;
                        max-width: 260px;
                    }
                }
                
                
                
                
                .banner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1165px;
    height: 400px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 26px;
    margin-top: -25px;
}

.slide-png {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

/* Responsive for tablets */
@media screen and (max-width: 1024px) {
    .banner {
        width: 90%;
        height: 350px;
    }
}

/* Responsive for mobile */
@media screen and (max-width: 768px) {
    .banner {
        width: 95%;
        height: 300px;
    }
    
    .slide-png {
        border-radius: 15px;
    }
}

/* Responsive for small mobile */
@media screen and (max-width: 480px) {
    .banner {
        width: 100%;
        height: 250px;
        border-radius: 0;
    }
    
    .slide-png {
        border-radius: 10px;
    }
}
/* Default: Desktop logo visible */
.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

/* After 293px width → show mobile logo */
@media (max-width: 322px) {
    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
        max-width: 32px;
        height: 55px;
        margin-top: -3px;
    }
}

@media (max-width: 360px) {
    .Mobile-Logo {
        height: 22px;
        max-width: 40px;
    }
}

/* FAQ Section */
.faq-section {
    /* padding: 40px 0; */
    margin: 45px 0;
}

.faq-section .container {
    max-width: 100%;
    margin: 0 auto;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    background: rgb(21 21 57 / 33%);
    border: 0px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(41, 103, 224, 0.1);
    border-color: rgba(41, 103, 224, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #a0a0c0;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 15px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 20px 15px;
    }
    
    .faq-question {
        padding: 14px;
        font-size: 14px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 14px 14px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}



    .fas, .far, .fab, i[class*="fa-"] {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
    }
    
    /* Specifically fix the chevron */
    .fa-chevron-down:before {
        content: "\f078" !important;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
    }
    
    /* Fix user icon */
    .fa-user:before {
        content: "\f007" !important;
        font-family: "Font Awesome 6 Free" !important;
    }
    
    /* Fix image icon */
    .fa-image:before {
        content: "\f03e" !important;
        font-family: "Font Awesome 6 Free" !important;
    }
    
    /* Fix money icon */
    .fa-money-bill-wave:before {
        content: "\f53a" !important;
        font-family: "Font Awesome 6 Free" !important;
    }
    
    /* Fix settings icon */
    .fa-cog:before {
        content: "\f013" !important;
        font-family: "Font Awesome 6 Free" !important;
    }
    
    /* Fix logout icon */
    .fa-sign-out-alt:before {
        content: "\f2f5" !important;
        font-family: "Font Awesome 6 Free" !important;
    }
    
    /* Fix gem icon */
    .fa-gem:before {
        content: "\f3a5" !important;
        font-family: "Font Awesome 6 Free" !important;
    }

    /* Optimize animations */
.style-6 {
    will-change: transform;
    transform: translateZ(0);
}

/* Reduce repaints */
.game-card, .faq-item {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Optimize images */
img {
    content-visibility: auto;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .style-6 {
        animation-duration: 15s !important; /* Slower animation on mobile */
    }
    
    .game-glow {
        display: none; /* Remove heavy effects on mobile */
    }
}


 .game-card.locked {
    position: relative;
    cursor: default;
}

.game-card.locked .game-overlay.locked-overlay {
    background: rgb(28 63 186 / 14%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    pointer-events: none;
}

.game-card.locked .game-overlay.locked-overlay .lock-content {
    text-align: center;
    color: white;
}

.game-card.locked .game-overlay.locked-overlay .lock-icon {
    width: 40px;
    height: 40px;
    fill: white;
    margin-bottom: 10px;
    opacity: 0.8;
}

.game-card.locked .game-overlay.locked-overlay .locked-text {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.game-card.locked .game-overlay.locked-overlay .coming-soon-badge {
    background: linear-gradient(180deg, #c7892d, #e06e21);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); */
    /* animation: pulse 2s infinite; */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }
}

/* Optional: Add a subtle overlay effect on the image */
.game-card.locked .game-img {
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.game-card.locked:hover .game-img {
    filter: brightness(0.6);
}

/* Webkit scrollbar with #1a1a3d and white - skinny version */
::-webkit-scrollbar {
    width: 6px !important;
    height: 6px !important;
    background-color: #1a1a3d !important;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e0b042, #f46f1e);
    border-radius: 3px !important;
    border: 2px solid #1a1a3d !important;
}

::-webkit-scrollbar-track {
    background-color: #1a1a3d !important;
}

::-webkit-scrollbar-corner {
    background-color: #1a1a3d !important;
}

/* Selection color */
::selection {
    color: white !important;
    background: #ee8429;
}

::-moz-selection {
    background-color: #1a1a3d !important;
    color: white !important;
}

/* Autofill with your color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #1a1a3d inset !important;
    box-shadow: 0 0 0 30px #1a1a3d inset !important;
    -webkit-text-fill-color: white !important;
}
/* Tabs Container - Horizontal scroll with HIDDEN scrollbar */
.custom-tabs {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    /* Hide scrollbar completely */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    margin: 0.5rem 0;
    -webkit-overflow-scrolling: touch; /* Smooth sliding on iOS */
    user-select: none; /* Prevent text selection while dragging */
}

/* Hide scrollbar for Chrome/Safari/Opera */
.custom-tabs::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* Grabbing cursor when dragging */
.custom-tabs:active {
    cursor: grabbing;
}

.custom-tabs__inner {
    display: flex;
    gap: 1.5rem;
    padding: 0.25rem 0 0.5rem 0;
    min-width: min-content;
    border-bottom: 1px solid rgb(255 255 255 / 38%);
    pointer-events: none; /* Let the container handle dragging */
    font-family: 'Outfit', sans-serif;
}

/* Tab Item Wrapper */
.custom-tabs__item-wr {
    display: inline-flex;
    pointer-events: auto; /* Make clicks work on tabs */
}

/* Tab Item - No background, just text */
.custom-tabs__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 0.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}

/* Active tab styling - bottom border only */
.custom-tabs__item--active {
    border-bottom: 2px solid #ffffff;
}

.custom-tabs__item--active .custom-tabs__text {
    color: #ffffff;
    font-weight: 500;
}

/* Hover effect - just whiter text, no neon */
.custom-tabs__item:hover:not(.custom-tabs__item--active) .custom-tabs__text {
    color: #ffffff;
}

/* Tab text - subtle gray */
.custom-tabs__text {
    font-size: 15px;
    font-weight: 500;
    color: #8a8aa9;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: color 0.2s ease;
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
}

/* ===== PHONE RESPONSIVE ===== */

/* Tablet and small desktop */
@media (max-width: 768px) {
    .custom-tabs__inner {
        gap: 1.2rem;
    }
    .custom-tabs__text {
        font-size: 0.8rem;
    }
    .custom-tabs__item {
        height: 38px;
    }
}

/* Mobile phones */
@media (max-width: 600px) {
    .custom-tabs {
        margin: 0.25rem 0;
    }
    .custom-tabs__inner {
        gap: 1rem;
        padding: 0.15rem 0 0.4rem 0;
    }
    .custom-tabs__text {
        font-size: 0.75rem;
    }
    .custom-tabs__item {
        height: 36px;
        padding: 0 0.2rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .custom-tabs__inner {
        gap: 0.8rem;
    }
    .custom-tabs__text {
        font-size: 0.7rem;
        letter-spacing: 0.2px;
    }
    .custom-tabs__item {
        height: 34px;
    }
}

/* Extra small phones */
@media (max-width: 380px) {
    .custom-tabs__inner {
        gap: 0.6rem;
    }
    .custom-tabs__text {
        font-size: 0.65rem;
    }
    .custom-tabs__item {
        height: 32px;
    }
}

/* Force Outfit font on ALL balance elements */
.balance-text,
.balance-text span,
#userBalance,
#mobileUserBalance,
.balance-container span,
.center-balance span,
.mobile-balance span,
[class*="balance"] span,
[id*="userBalance"],
[id*="mobileUserBalance"],
.balance-button span {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
}

/* Also target any spans inside balance containers */
.balance-container *,
.center-balance *,
.mobile-balance * {
    font-family: 'Outfit', sans-serif !important;
}