<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Camera Connect - Photo Sharing</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #0d1b2a, #1b2838);
            color: #fff; min-height: 100vh;
            display: flex; align-items: center; justify-content: center;
            flex-direction: column; gap: 20px; padding: 24px; text-align: center;
        }
        .icon { font-size: 72px; }
        h1 { font-size: 28px; background: linear-gradient(135deg, #42a5f5, #1565c0);
             -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        p { color: #90a4ae; max-width: 400px; line-height: 1.6; }
        .badge { background: #1a237e; padding: 8px 16px; border-radius: 20px;
                 font-size: 13px; color: #64b5f6; }
    </style>
</head>
<body>
    <div class="icon">📷</div>
    <h1>Camera Connect</h1>
    <p>Instantly share photos from your camera to anyone. Upload from the Camera Connect app and share the link.</p>
    <div class="badge">API Endpoint Active ✓</div>
</body>
</html>