
        :root {
            --mobroh-blue: #4A90E2;
            --mobroh-blue-dark: #2E5FCC;
            --mobroh-green: #2DD4BF;
            --mobroh-green-dark: #14B8A6;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #FAFAFA;
        }
        
        .font-pixel {
            font-family: 'Press Start 2P', cursive;
        }
        
        /* Pixel Art Effects */
        .pixel-border {
            box-shadow: 
                -4px 0 0 0 var(--mobroh-blue),
                4px 0 0 0 var(--mobroh-blue),
                0 -4px 0 0 var(--mobroh-blue),
                0 4px 0 0 var(--mobroh-blue);
        }
        
        .pixel-btn {
            position: relative;
            transition: all 0.1s;
            box-shadow: 0 4px 0 var(--mobroh-blue-dark);
        }
        
        .pixel-btn:active {
            transform: translateY(4px);
            box-shadow: 0 0 0 var(--mobroh-blue-dark);
        }
        
        .pixel-card {
            border: 4px solid transparent;
            background: linear-gradient(white, white) padding-box,
                        linear-gradient(135deg, var(--mobroh-blue), var(--mobroh-green)) border-box;
            box-shadow: 8px 8px 0 rgba(74, 144, 226, 0.1);
        }
        
        /* Grid Background Pattern */
        .bg-grid {
            background-image: 
                linear-gradient(rgba(74, 144, 226, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(74, 144, 226, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
        }
        
        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .animate-float {
            animation: float 3s ease-in-out infinite;
        }
        
        /* Pixel Character Animation */
        @keyframes pixelBounce {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-5px) scale(1.05); }
        }
        
        .pixel-character {
            animation: pixelBounce 2s infinite;
            image-rendering: pixelated;
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--mobroh-blue);
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--mobroh-blue-dark);
        }
        
        /* Gradient Text */
        .text-gradient {
            background: linear-gradient(135deg, var(--mobroh-blue) 0%, var(--mobroh-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Hero Pattern */
        .hero-pattern {
            background-image: radial-gradient(circle at 25px 25px, rgba(74, 144, 226, 0.15) 2px, transparent 0);
            background-size: 50px 50px;
        }
    