
:root { --bg: #faf9f6; --fg: #2d2d2d; --accent: #8b5cf6; --muted: #71717a; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: Georgia, 'Times New Roman', serif;
    background: var(--bg); color: var(--fg);
    max-width: 42rem; margin: 0 auto; padding: 2rem 1rem;
    line-height: 1.7;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
header { border-bottom: 2px solid var(--accent); padding-bottom: 1rem; margin-bottom: 2rem; }
header h1 { font-size: 1.8rem; }
header .subtitle { color: var(--muted); font-style: italic; }
nav { margin-top: 0.5rem; font-size: 0.9rem; }
section { margin-bottom: 2.5rem; }
section h2 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.5rem; }
section h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.author { color: var(--muted); font-style: italic; margin-bottom: 1rem; }
.poem-body { white-space: pre-wrap; font-family: Georgia, serif; margin: 1rem 0; }
.summary { margin: 0.5rem 0; }
footer { border-top: 1px solid #e5e5e5; padding-top: 1rem; color: var(--muted); font-size: 0.85rem; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 0.5rem; border-bottom: 1px solid #e5e5e5; }
th { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
form { display: flex; gap: 0.5rem; margin: 1rem 0; }
input[type=email] { flex: 1; padding: 0.5rem; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; }
button { padding: 0.5rem 1.5rem; background: var(--accent); color: white; border: none; border-radius: 4px; font-size: 1rem; cursor: pointer; }
button:hover { opacity: 0.9; }
#status { color: var(--accent); font-style: italic; }
