
        [x-cloak] {
            display: none !important;
        }

        * {
            font-family: 'Inter', sans-serif !important;
        }

        body {
            font-family: 'Inter', sans-serif !important;
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #000000 0%, #111111 50%, #1a1a1a 100%);
            color: #fff;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .wallets-section {
            background: linear-gradient(135deg, #000000 0%, #111111 50%, #1a1a1a 100%);
            color: #fff;
            padding: 80px 15px;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .wallets-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(78, 109, 149, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(87, 134, 172, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(84, 158, 198, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 60% 60%, rgba(84, 179, 223, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .wallets-section h2 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            background: linear-gradient(135deg, #4e6d95 0%, #5786ac 25%, #549ec6 75%, #54b3df 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .description {
            max-width: 800px;
            color: #d1d5db;
            margin-bottom: 2.5rem;
            background: rgba(78, 109, 149, 0.08);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 12px;
            font-size: 14px;
            line-height: 1.6;
            border: 1px solid rgba(78, 109, 149, 0.3);
            position: relative;
            z-index: 1;
        }

        .wallet-card {
            background: rgba(78, 109, 149, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(78, 109, 149, 0.3);
            border-radius: 16px;
            text-align: left;
            transition: all 0.3s ease;
            height: 100%;
            cursor: pointer;
            color: #fff;
            margin-bottom: 0;
            overflow: hidden;
            position: relative;
        }

        .wallet-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(78, 109, 149, 0.15), rgba(84, 179, 223, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .wallet-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(78, 109, 149, 0.3), 0 0 0 1px rgba(78, 109, 149, 0.4);
            border-color: rgba(84, 179, 223, 0.6);
            background: rgba(78, 109, 149, 0.15);
        }

        .wallet-card:hover::before {
            opacity: 1;
        }

        .wallet-card img {
            max-width: 60px;
            margin-bottom: 10px;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .wallet-card:hover img {
            transform: scale(1.1);
        }

        .wallet-name {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .wallet-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            width: 100%;
            background: rgba(78, 109, 149, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(78, 109, 149, 0.3);
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .wallet-label {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
        }

        .search-input {
            width: 100%;
            padding: 16px 50px 16px 20px;
            border: 2px solid rgba(78, 109, 149, 0.4);
            border-radius: 12px;
            font-size: 16px;
            background: rgba(78, 109, 149, 0.08);
            color: #ffffff;
            transition: all 0.3s ease;
            outline: none;
            backdrop-filter: blur(10px);
        }

        .search-input:focus {
            border-color: #4e6d95;
            box-shadow: 0 0 0 3px rgba(78, 109, 149, 0.2);
        }

        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .clear-button {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #4e6d95 0%, #5786ac 25%, #549ec6 75%, #54b3df 100%);
            border: none;
            color: white;
            cursor: pointer;
            padding: 6px;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .clear-button:hover {
            background: linear-gradient(135deg, #5786ac 0%, #549ec6 25%, #54b3df 75%, #4e6d95 100%);
            transform: translateY(-50%) scale(1.1);
        }

        /* Blue gradient backgrounds */
        .bg-blue-gradient {
            background: linear-gradient(135deg, #4e6d95 0%, #5786ac 25%, #549ec6 75%, #54b3df 100%);
        }

        /* Blue buttons for actions */
        .btn-blue {
            background: linear-gradient(135deg, #4e6d95 0%, #5786ac 25%, #549ec6 75%, #54b3df 100%);
            border: none;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(78, 109, 149, 0.3);
        }

        .btn-blue:hover {
            background: linear-gradient(135deg, #5786ac 0%, #549ec6 25%, #54b3df 75%, #4e6d95 100%);
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(78, 109, 149, 0.4);
        }

        /* Logo styling with blue gradient */
        .logo-container {
            font-family: 'Inter', sans-serif !important;
            font-weight: 800;
        }

        .logo-word.text-secondary-400 {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-word.text-accent-500 {
            background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col-12 {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 0 15px;
        }

        @media (min-width: 768px) {
            .col-md-6 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        @media (min-width: 992px) {
            .col-lg-4 {
                flex: 0 0 33.333333%;
                max-width: 33.333333%;
            }
        }

        /* Responsive improvements */
        @media (max-width: 768px) {
            .wallet-container {
                width: 100%;
                padding: 1rem;
            }

            .wallets-section {
                padding: 40px 15px;
            }

            .hidden.lg\:flex {
                display: none !important;
            }

            .lg\:hidden {
                display: block !important;
            }

            body {
                overflow-x: hidden;
            }

            .container {
                max-width: 100%;
                padding-left: 1rem;
                padding-right: 1rem;
            }

            input[type="text"] {
                font-size: 16px !important;
            }
        }

        /* Desktop responsive */
        @media (min-width: 769px) {
            .hidden.lg\:flex {
                display: flex !important;
            }

            .lg\:hidden {
                display: none !important;
            }
        }

        /* Mobile menu styles */
        .translate-x-0 {
            transform: translateX(0) !important;
        }

        .-translate-x-full {
            transform: translateX(-100%) !important;
        }

        .duration-300 {
            transition-duration: 300ms;
        }

        .transition-transform {
            transition-property: transform;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        }

        .ease-in-out {
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fixed {
            position: fixed;
        }

        .inset-0 {
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }

        .z-50 {
            z-index: 50;
        }

        .z-20 {
            z-index: 20;
        }

        .bg-black\/50 {
            background-color: rgba(0, 0, 0, 0.5);
        }

        .bg-gray-800 {
            background-color: #1f2937;
        }

        .w-80 {
            width: 20rem;
        }

        .h-screen {
            height: 100vh;
        }

        .overflow-y-auto {
            overflow-y: auto;
        }

        .p-4 {
            padding: 1rem;
        }

        .mb-6 {
            margin-bottom: 1.5rem;
        }

        .gap-3 {
            gap: 0.75rem;
        }

        .flex {
            display: flex;
        }

        .flex-col {
            flex-direction: column;
        }

        .justify-between {
            justify-content: space-between;
        }

        .items-center {
            align-items: center;
        }

        .py-2 {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

        .inline-flex {
            display: inline-flex;
        }

        .hover\:text-yellow-400:hover {
            color: #fbbf24;
        }

        .transition-colors {
            transition-property: color;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 150ms;
        }

        .text-xl {
            font-size: 1.25rem;
            line-height: 1.75rem;
        }

        .text-2xl {
            font-size: 1.5rem;
            line-height: 2rem;
        }

        .w-6 {
            width: 1.5rem;
        }

        .h-6 {
            height: 1.5rem;
        }
    
        .grabbit-visited,
        .grabbit-visited:link,
        .grabbit-visited:visited {
            color: #551A8B !important; /* Standard visited link purple */
        }
    