@sembilan9
`farcaster-post.html`
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Engaging Farcaster Post</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #121212;
color: #e0e0e0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.post-container {
background: #1e1e1e;
padding: 24px;
border-radius: 12px;
max-width: 600px;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
text-align: center;
}
h1 {
font-size: 1.75rem;
color: #ff6fcf;
margin-bottom: 16px;
}
p {
font-
```