:root{ --card-bg:#fff;--page-bg:#f3f4f6;--accent:#2eb82e; --text:#111;--muted:#6b7280;--card-radius:6px;--max-width:820px; } html,body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;} body{background:var(--page-bg);display:flex;justify-content:center;padding:32px;color:var(--text);} .card{ background:var(--card-bg);max-width:var(--max-width);width:100%; border-radius:var(--card-radius);box-shadow:0 6px 18px rgba(0,0,0,.08); border:1px solid #e6e9ee;overflow:hidden; } .meta{display:flex;align-items:center;gap:12px;padding:12px 18px; border-bottom:1px solid #f1f3f5;} .meta img{width:40px;height:40px;border-radius:6px;object-fit:cover;} .meta .info{font-size:13px;color:var(--muted);} .container{padding:28px;} h1{text-align:center;font-size:32px;margin:0 0 18px;font-weight:700;}…