/* Black and Glossy Design with Blue Gradient Only */
        * {
            font-family: 'Inter', sans-serif !important;
        }

        body {
            font-family: 'Inter', sans-serif !important;
            background: linear-gradient(135deg, #000000 0%, #111111 50%, #1a1a1a 100%);
            color: #ffffff;
        }

        /* Glossy effects with blue gradient only */
        .glossy-bg {
            background: linear-gradient(135deg, #000000 0%, #111111 50%, #1a1a1a 100%);
            position: relative;
        }

        .glossy-bg::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;
        }

        /* Blue gradient from user specification */
        .bg-gradient-blue {
            background: linear-gradient(135deg, #4e6d95 0%, #5786ac 25%, #549ec6 75%, #54b3df 100%);
        }

        /* Blue gradient for buttons */
        .bg-gradient-primary {
            background: linear-gradient(135deg, #4e6d95 0%, #5786ac 25%, #549ec6 75%, #54b3df 100%);
        }

        .bg-gradient-secondary {
            background: linear-gradient(135deg, #5786ac 0%, #549ec6 25%, #54b3df 75%, #4e6d95 100%);
        }

        .bg-gradient-accent {
            background: linear-gradient(135deg, #549ec6 0%, #54b3df 25%, #4e6d95 75%, #5786ac 100%);
        }

        .text-gradient {
            background: linear-gradient(135deg, #4e6d95 0%, #5786ac 25%, #549ec6 75%, #54b3df 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Blue text gradient */
        .text-gradient-blue {
            background: linear-gradient(135deg, #4e6d95 0%, #5786ac 25%, #549ec6 75%, #54b3df 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Glossy modal with blue accents */
        .modal-overlay {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
        }

        .modal-content {
            background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
            border: 1px solid rgba(78, 109, 149, 0.4);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(78, 109, 149, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .wallet-option {
            background: rgba(78, 109, 149, 0.08);
            border: 1px solid rgba(78, 109, 149, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .wallet-option:hover {
            background: rgba(78, 109, 149, 0.15);
            border-color: rgba(84, 179, 223, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(78, 109, 149, 0.3);
        }


        /* Glossy buttons with green gradient */
        .btn-primary {
            background: linear-gradient(135deg, #10b981 0%, #059669 25%, #34d399 75%, #6ee7b7 100%);
            border: none;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }

        .btn-primary: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);
        }

        /* Blue accent button */
        .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;
        }

        /* Navigation hover effects with blue */
        .hover\:text-primary-400:hover {
            background: linear-gradient(135deg, #4e6d95 0%, #5786ac 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hover\:text-secondary-500:hover {
            background: linear-gradient(135deg, #4e6d95 0%, #5786ac 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hover\:border-secondary-500:hover {
            border-color: #4e6d95 !important;
        }

        /* Glossy text effects */
        .glossy-text {
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }

        /* Hero section improvements with blue gradient */
        .hero-title {
            font-family: 'Inter', sans-serif !important;
            font-weight: 900;
            font-size: 3.5rem;
            line-height: 1.1;
            background: linear-gradient(135deg, #ffffff 0%, #4e6d95 25%, #5786ac 50%, #549ec6 75%, #54b3df 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-family: 'Inter', sans-serif !important;
            font-weight: 400;
            font-size: 1.25rem;
            color: #d1d5db;
        }

        /* Glossy card effects with blue accents */
        .glossy-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(78, 109, 149, 0.2);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .glossy-card:hover {
            background: rgba(78, 109, 149, 0.05);
            border-color: rgba(84, 179, 223, 0.4);
            transform: translateY(-2px);
        }

        /* Blue gradient backgrounds */
        .bg-blue-gradient {
            background: linear-gradient(135deg, #4e6d95 0%, #5786ac 25%, #549ec6 75%, #54b3df 100%);
        }

        /* Section backgrounds with blue tint */
        .section-bg {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(78, 109, 149, 0.05) 100%);
        }
        .grabbit-visited,
        .grabbit-visited:link,
        .grabbit-visited:visited {
            color: #551A8B !important;
            /* Standard visited link purple */
        }