const start = new Date("2024/08/25 09:42:00").getTime();
const diff = Date.now() - start;
const d = Math.floor(diff / 86400000);
const h = Math.floor((diff % 86400000) / 3600000);
const m = Math.floor((diff % 3600000) / 60000);
const s = Math.floor((diff % 60000) / 1000);
const pad = (n) => String(n).padStart(2, '0');
 
dv.container.innerHTML = `
<div style="background:linear-gradient(135deg,#fff0f3,#ffe4e9);border-radius:12px;padding:16px;text-align:center;border:1px solid #ffd1da;">
  <div style="font-weight:600;font-size:1.05em;margin-bottom:12px;color:#d44d6f;">❤️ 恋爱墙</div>
  <div style="font-size:1.2em;font-weight:600;color:var(--text-normal);margin-bottom:6px;font-variant-numeric:tabular-nums;">
    <span style="color:#fb734a;font-weight:700;">${d}</span> 天 
    <span style="color:#fb734a;font-weight:700;">${pad(h)}</span> 时 
    <span style="color:#fb734a;font-weight:700;">${pad(m)}</span> 分 
    <span style="color:#fb734a;font-weight:700;">${pad(s)}</span> 秒
  </div>
  <div style="font-size:0.8em;color:var(--text-muted);">始于 2024年8月25日</div>
</div>`;