 :root {
            --red: #8b5cf6;
            --violet: #8b5cf6;
            --red-dark: #7c3aed;
            --red-glow: #a855f7;
            --card-bg: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #ffffff;
            color: #fff;
            font-family: 'Rajdhani', sans-serif;
            margin: 0;
            padding-bottom: 80px;
            min-height: 100vh;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: white;
            border-bottom: 4px solid var(--red);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 10px 40px rgb(220 38 179 / 20%);
        }

        .logo {
            height: 42px;
        }

        .wallet {
            background: linear-gradient(45deg, var(--red), var(--red-glow));
            padding: 0.8rem 1.6rem;
            border-radius: 50px;
            font-weight: 900;
            font-size: 1.1rem;
            color: white;
            box-shadow: 0 0 30px rgba(220, 38, 38, 0.6);
        }

        .title {
            text-align: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 3.8rem;
            color: var(--red);
            margin: 2.5rem 0 1.5rem;
            text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
            font-weight: 900;
        }

        .search {
            max-width: 300px;
            margin: 0 auto 1rem;
            padding: 1rem 1rem;
            background: white;
            border: 3px solid var(--red);
            border-radius: 50px;
            display: flex;
            align-items: center;
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
        }

        .search input {
            background: transparent;
            border: none;
            outline: none;
            color: #000;
            font-size: 1.2rem;
            width: 100%;
            margin-left: 1rem;
        }

        .search input::placeholder {
            color: #8b5cf6;
            font-weight: bold;
        }

        .card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid #2c0f0f;
            transition: 0.5s;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
            margin: 20px auto;
            max-width: 420px;
            width: 95%;
        }

        .card:hover {
            transform: translateY(-20px);
            border-color: var(--red);
            box-shadow: 0 30px 70px rgba(220, 38, 38, 0.4);
        }

        .card img {
            width: 100%;
            height: 230px;
            object-fit: cover;
            border-bottom: 6px solid
        }

        .demo-title {
            background: #004d00;
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 900;
            font-size: 1.3rem;
            text-align: center;
            margin: 15px auto;
            border: 3px solid #000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
            max-width: 90%;
        }

        .btn {
            background: linear-gradient(45deg, #2c0f2c, #8b5cf6);
            color: white;
            padding: 1.2rem;
            margin: 1rem;
            border-radius: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            font-size: 1.1rem;
            transition: 0.4s;
        }

        .btn:hover {
            background: var(--red);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.6);
        }

        .admin-btn {
            background: linear-gradient(45deg, var(--red), var(--red-glow));
        }

        .admin-creds {
            background: #2c0f2c;
            margin: 1rem;
            padding: 1.5rem;
            border-radius: 15px;
            border: 2px dashed var(--red-glow);
        }

        .cred-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 1rem 0;
            font-size: 1.2rem;
        }

        .copy {
            background: var(--red);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
        }

        .copy:hover {
            background: white;
            color: var(--red);
            transform: scale(1.4) rotate(20deg);
        }

        .wa {
            display: block;
            display: block;
            margin: 4rem auto 6rem;
            background: linear-gradient(45deg, var(--red), var(--red-dark));
            color: white;
            padding: 1.8rem 5rem;
            font-size: 1.8rem;
            font-weight: 900;
            border-radius: 50px;
            text-align: center;
            box-shadow: 0 25px 60px rgba(220, 38, 38, 0.5);
            transition: 0.5s;
        }

        .wa:hover {
            transform: scale(1.1);
        }

        #welcomePopup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }

        .popup-box {
            background: white;
            border-radius: 18px;
            padding: 1.6rem 1.2rem;
            max-width: 320px;
            width: 100%;
            text-align: center;
            position: relative;
            box-shadow: 0 15px 50px rgba(220, 38, 38, 0.5);
        }

        .close-btn {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 36px;
            height: 36px;
            background: #000;
            color: white;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 1.4rem;
            cursor: pointer;
        }
          .bottom-contact-stack {
            position: fixed;
            right: 15px;
            bottom: 90px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            z-index: 99999;
        }

        .contact-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
            transition: 0.15s;
        }

        .contact-btn:hover {
            transform: translateY(-3px);
        }

        .contact-btn svg {
            width: 28px;
            height: 28px;
            fill: #fff;
        }

        .whatsapp-icon {
            background: #25D366;
        }

        .telegram-icon {
            background: #0088cc;
        }

        @media(max-width:460px) {
            .contact-btn {
                width: 55px;
                height: 55px;
            }

            .contact-btn svg {
                width: 24px;
                height: 24px;
            }

            .bottom-contact-stack {
                right: 12px;
                bottom: 85px;
            }
        }
         :root {
                    --primary: #8b5cf6;
                    --primary-hover: #7c3aed;
                    --subtext: #64748b;
                    --bg: #f8fafc;
                    --card-bg: #fff;
                    --text: #3b1e1e;
                    --border: #e2e8f0;
                    --shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
                    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
                }

                *,
                *::before,
                *::after {
                    box-sizing: border-box;
                    margin: 0;
                    padding: 0;
                    -webkit-tap-highlight-color: transparent;
                    -webkit-user-select: none;
                    user-select: none;
                    -webkit-touch-callout: none;
                }

                /* ==================== MODERN HEADER ==================== */
                .modern-header {
                    position: fixed;
                    top: 0;
                    left: 0;
                    right: 0;
                    background: var(--card-bg);
                    border-bottom: 1px solid var(--border);
                    padding: 12px 20px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    box-shadow: var(--shadow);
                    z-index: 999;
                    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
                }

                .modern-header .logo-img {
                    height: auto;
                    max-width: 25%;
                    /* ← YEH LINE ADD KI HAI (logo chhota karne ke liye) */
                    width: auto;
                    display: block;
                }

                .menu-toggle {
                    background: none;
                    border: none;
                    font-size: 1.8rem;
                    color: #333;
                    cursor: pointer;
                }

                .menu-container {
                    position: relative;
                }

                .menu-dropdown {
                    display: none;
                    position: absolute;
                    top: 100%;
                    right: 0;
                    background: #fff;
                    border-radius: 14px;
                    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
                    border: 1px solid var(--border);
                    width: 290px;
                    overflow: hidden;
                }

                .menu-dropdown.show {
                    display: block;
                    animation: drop 0.25s ease-out;
                }

                .menu-item {
                    display: flex;
                    align-items: center;
                    gap: 14px;
                    padding: 16px 22px;
                    color: #2d2d2d;
                    text-decoration: none;
                    font-weight: 500;
                    transition: 0.3s;
                }

                .menu-item:hover {
                    background: #fdf2f2;
                    color: var(--primary);
                }

                .menu-item.active {
                    background: #fdf2f2;
                    color: var(--primary);
                    font-weight: 600;
                }

                .menu-item i {
                    width: 22px;
                    text-align: center;
                }

                .api-red-btn {
                    display: block;
                    background: #8b5cf6;
                    color: white !important;
                    text-align: center;
                    padding: 14px 20px;
                    font-weight: bold;
                    border-radius: 10px;
                    margin: 10px 20px;
                    text-decoration: none;
                    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
                }

                .api-red-btn:hover {
                    background: #7c3aed;
                }

                @keyframes drop {
                    from {
                        opacity: 0;
                        transform: translateY(-15px);
                    }

                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                /* ==================== MOBILE BOTTOM NAV (Unchanged) ==================== */
                .mobile-nav {
                    position: fixed;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    background: var(--card-bg);
                    border-top: 1px solid var(--border);
                    display: none;
                    grid-template-columns: repeat(5, 1fr);
                    padding: 0.5rem 0;
                    backdrop-filter: blur(8px);
                    z-index: 1000;
                }

                @media only screen and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
                    .mobile-nav {
                        display: grid;
                    }
                }

                .nav-item {
                    color: var(--subtext);
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    font-size: 0.75rem;
                    transition: var(--transition);
                    padding: 0.5rem 0.25rem;
                    text-decoration: none;
                    position: relative;
                    flex: 1;
                    text-align: center;
                }

                .nav-item::before {
                    content: '';
                    position: absolute;
                    top: -8px;
                    width: 24px;
                    height: 2px;
                    background: var(--primary);
                    border-radius: 1px;
                    opacity: 0;
                    transform: scaleX(0);
                    transition: var(--transition);
                }

                .nav-item:hover {
                    color: var(--primary);
                }

                .nav-item.active {
                    color: var(--primary);
                }

                .nav-item.active::before {
                    opacity: 1;
                    transform: scaleX(1);
                }

                .nav-icon {
                    font-size: 1.4rem;
                    margin-bottom: 0.25rem;
                    transition: var(--transition);
                }

                .nav-item:hover .nav-icon {
                    transform: translateY(-2px);
                }

                .nav-item.active .nav-icon {
                    transform: scale(1.1);
                }
                  :root {
            --primary: #8b5cf6;
            --primary-hover: #7c3aed;
            --subtext: #64748b;
            --bg: #f8fafc;
            --card-bg: #fff;
            --text: #3b1e1e;
            --border: #e2e8f0;
            --shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
            -webkit-user-select: none;
            user-select: none;
            -webkit-touch-callout: none;
        }

        /* ==================== MODERN HEADER ==================== */
        .modern-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--card-bg);
            border-bottom: 1px solid var(--border);
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: var(--shadow);
            z-index: 999;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .modern-header .logo-img {
            height: auto;
            max-width: 25%;
            /* ← YEH LINE ADD KI HAI (logo chhota karne ke liye) */
            width: auto;
            display: block;
        }

        .menu-toggle {
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #333;
            cursor: pointer;
        }

        .menu-container {
            position: relative;
        }

        .menu-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
            border: 1px solid var(--border);
            width: 290px;
            overflow: hidden;
        }

        .menu-dropdown.show {
            display: block;
            animation: drop 0.25s ease-out;
        }

        .menu-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 22px;
            color: #2d2d2d;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }

        .menu-item:hover {
            background: #fdf2f2;
            color: var(--primary);
        }

        .menu-item.active {
            background: #fdf2f2;
            color: var(--primary);
            font-weight: 600;
        }

        .menu-item i {
            width: 22px;
            text-align: center;
        }

        .api-red-btn {
            display: block;
            background: #8b5cf6;
            color: white !important;
            text-align: center;
            padding: 14px 20px;
            font-weight: bold;
            border-radius: 10px;
            margin: 10px 20px;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
        }

        .api-red-btn:hover {
            background: #7c3aed;
        }

        @keyframes drop {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ==================== MOBILE BOTTOM NAV (Unchanged) ==================== */
        .mobile-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--card-bg);
            border-top: 1px solid var(--border);
            display: none;
            grid-template-columns: repeat(5, 1fr);
            padding: 0.5rem 0;
            backdrop-filter: blur(8px);
            z-index: 1000;
        }

        @media only screen and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
            .mobile-nav {
                display: grid;
            }
        }

        .nav-item {
            color: var(--subtext);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            transition: var(--transition);
            padding: 0.5rem 0.25rem;
            text-decoration: none;
            position: relative;
            flex: 1;
            text-align: center;
        }

        .nav-item::before {
            content: '';
            position: absolute;
            top: -8px;
            width: 24px;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
            opacity: 0;
            transform: scaleX(0);
            transition: var(--transition);
        }

        .nav-item:hover {
            color: var(--primary);
        }

        .nav-item.active {
            color: var(--primary);
        }

        .nav-item.active::before {
            opacity: 1;
            transform: scaleX(1);
        }

        .nav-icon {
            font-size: 1.4rem;
            margin-bottom: 0.25rem;
            transition: var(--transition);
        }

        .nav-item:hover .nav-icon {
            transform: translateY(-2px);
        }

        .nav-item.active .nav-icon {
            transform: scale(1.1);
        }