<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Bento Services Grid</title>
    <link href="https://cdnjs.cloudflare.com" rel="stylesheet">
    <style>
        @import url('https://fonts.googleapis.com');
        body { 
            background-color: #000000; 
            font-family: 'Inter', sans-serif;
            color: white;
        }
        .bento-card {
            background-color: #0d0d0f;
            border-radius: 32px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            height: 340px;
            transition: transform 0.3s ease;
        }
        .bento-card:hover { transform: scale(1.02); }
        .text-red-accent { color: #e11d48; }
        /* Development Card Border */
        .border-red-glow {
            border: 2px solid #b91c1c;
            box-shadow: 0 0 20px rgba(185, 28, 28, 0.2);
        }
        /* Code Block Styling */
        .code-box {
            background-color: #050505;
            padding: 20px;
            border-radius: 16px;
            font-family: monospace;
            font-size: 13px;
            margin-top: 30px;
            color: #4ade80;
        }
        /* Editing Card Gradient */
        .editing-gradient {
            background: linear-gradient(135deg, #991b1b 0%, #450a0a 100%);
            height: 380px;
        }
        /* Floating Shapes */
        .shape-white { background: #ffffff; border-radius: 20px 20px 0 0; width: 60px; height: 100px; position: absolute; bottom: 0; right: 40px; }
        .shape-gray { background: #3f3f46; border-radius: 20px 20px 0 0; width: 60px; height: 70px; position: absolute; bottom: 0; right: 110px; opacity: 0.5; }
        /* Blue Editor Mockup */
        .editor-ui {
            background-color: #3b82f6;
            width: 85%;
            height: 200px;
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 24px 24px 0 0;
            padding: 20px;
        }
        .ui-dot { width: 35px; height: 30px; background: rgba(255,255,255,0.2); border-radius: 8px; }
        /* Stats Card Graph */
        .graph-line {
            fill: none;
            stroke: #ef4444;
            stroke-width: 3;
            stroke-linecap: round;
        }
    </style>
</head>
<body>
        <!-- Social Media Marketing -->
            <p>Social Media</p>
            <h2>Marketing</h2>
                    G
        <!-- Website Development -->
            <p>Website</p>
            <h2>Development</h2>
                const data = await fetch();<br>
                render(&lt;Hubs /&gt;);
        <!-- Graphic Designing -->
            <p>Graphic</p>
            <h2>Designing</h2>
        <!-- Video Editing (Wide) -->
            <p>Video</p>
            <h2>Editing</h2>
            <!-- Cursor Icon -->
        <!-- SEO Optimization -->
                <p>SEO</p>
                <h2>Optimization</h2>
                <p>Active Visitors</p>
                <p>157,367</p>
                <svg viewBox="0 0 100 40">
                    <path d="M0,35 Q15,35 25,20 T45,25 T70,10 T100,20" />
                </svg>
</body>
</html>