<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Welcome - FY Assist</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, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .container {
            text-align: center;
            color: white;
            padding: 2rem;
        }
        h1 { font-size: 3rem; margin-bottom: 1rem; }
        p { font-size: 1.25rem; opacity: 0.9; }
        .status { margin-top: 2rem; padding: 1rem 2rem; background: rgba(255,255,255,0.2); border-radius: 8px; }
    </style>
</head>
<body>
    <div class="container">
        <h1>Welcome to FY Assist</h1>
        <p>Your AI-powered assistant platform</p>
        <div class="status">Service is running</div>
    </div>
</body>
</html>