:root{
  --bg:#0a0a0a;--text:#fff;--muted:#cfcfcf;--accent:#1a73e8;--danger:#ff3b30;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--text);font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
.wrap{min-height:100vh;display:grid;place-items:start center;padding:32px 16px 56px}
.card{width:100%;max-width:720px}
.top{display:flex;align-items:center;justify-content:space-between;margin:24px 0 8px}
.logo{height:34px;width:auto}
.date{color:#cfd3d8;font-weight:700;font-size:14px;letter-spacing:.2px}
h1{margin:8px 0 12px;font-size:26px;line-height:1.25}
.lead{margin:0 0 16px;font-size:15px;font-weight:700;color:#e8eaed;line-height:1.45}
.timer{font-weight:800;color:var(--danger);font-size:20px;letter-spacing:1px;margin:8px 0 18px}
.cta{display:block;width:100%;margin:26px 0 18px;background:var(--accent);color:#fff;text-align:center;font-weight:700;font-size:16px;padding:14px 18px;border-radius:6px;text-decoration:none;transition:filter .15s ease}
.cta:hover{filter:brightness(1.05)}
.hr{height:1px;background:#2a2c30;margin:16px 0}
@media(min-width:768px){h1{font-size:32px}.lead{font-size:16px}.timer{font-size:22px}.wrap{padding-top:64px}}
