:root { --primary: #2563eb; --bg: #f8fafc; --card: #ffffff; --text: #0f172a; }
* { box-sizing: border-box; margin: 0; padding: 0; font-family: system-ui, sans-serif; }
body { background: var(--bg); color: var(--text); padding: 1rem; line-height: 1.5; }
header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
h1 { font-size: 1.5rem; color: var(--primary); }
button { background: var(--primary); color: white; border: none; padding: 0.5rem 1rem; border-radius: 6px; cursor: pointer; }
button:hover { opacity: 0.9; }
.disclosure { font-size: 0.75rem; color: #64748b; margin-bottom: 1rem; }
#linksContainer { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.link-card { background: var(--card); padding: 1rem; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.link-card h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.link-card a, .link-card button { display: inline-block; margin-right: 0.5rem; margin-top: 0.5rem; text-decoration: none; }
.link-card button { background: #0f172a; font-size: 0.85rem; padding: 0.4rem 0.8rem; }
