/* Estilos del componente */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
h1 { color: #1a1a1a; margin-bottom: 1rem; }
p { color: #666; line-height: 1.6; }
button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
}
button:hover { background: #2563eb; }
