/* noxian.io — shared theme: black/grey base, vibrant red accents */
:root{
  --bg:#08090c;
  --bg-soft:#0e1015;
  --panel:#101218;
  --border:#1b1e26;
  --fg:#e7e8ec;
  --dim:#6b6d77;
  --red:#ff2b2b;
  --red-glow:rgba(255,43,43,.55);
  --red-dim:rgba(255,43,43,.14);
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;
  color:var(--fg);
  background-color:var(--bg);
  background-image:
    radial-gradient(1000px 680px at 82% -18%, rgba(255,43,43,.07), transparent 55%),
    radial-gradient(820px 560px at -5% 118%, rgba(255,43,43,.04), transparent 60%),
    linear-gradient(180deg,#0b0c10 0%,var(--bg) 100%);
  background-repeat:no-repeat;
  background-attachment:fixed;
  display:flex;
  flex-direction:column;
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
}
main{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:2rem;
  gap:1.5rem;
}
.rule{
  width:46px;height:2px;
  background:var(--red);
  box-shadow:0 0 14px var(--red-glow);
  border:0;
}
.moon{
  width:84px;height:84px;border-radius:50%;
  background:var(--red);
  position:relative;
  box-shadow:0 0 60px var(--red-dim),0 0 20px rgba(255,43,43,.30);
  overflow:hidden;
}
.moon::after{
  content:"";position:absolute;inset:0;border-radius:50%;
  background:var(--bg);transform:translate(22%,-12%);
}
h1{
  font-size:clamp(2.4rem,8vw,4rem);
  font-weight:600;letter-spacing:.12em;line-height:1;
}
h1 .dot{color:var(--red);text-shadow:0 0 22px var(--red-glow)}
.tag{max-width:36ch;color:var(--dim);font-size:1rem;line-height:1.7}
.tag b{color:var(--fg);font-weight:600}
.links{display:flex;gap:1.2rem;flex-wrap:wrap;justify-content:center;margin-top:.5rem}
.links a{
  color:var(--dim);text-decoration:none;font-size:.9rem;
  padding:.5rem .9rem;border:1px solid var(--border);border-radius:8px;
  transition:.18s ease;
}
.links a:hover{
  color:#fff;border-color:var(--red);background:var(--red-dim);
  box-shadow:0 0 18px rgba(255,43,43,.22);
}
/* blog index */
.blog-main{align-items:flex-start;text-align:left;max-width:720px;margin:0 auto;width:100%}
.blog-head{display:flex;align-items:baseline;gap:.6rem;flex-wrap:wrap}
.blog-head h1{font-size:clamp(1.8rem,5vw,2.6rem)}
.blog-head .slash{color:var(--red);text-shadow:0 0 18px var(--red-glow)}
.blog-sub{color:var(--dim);font-size:.95rem;margin-top:.4rem}
.post-list{list-style:none;margin-top:2rem;width:100%;border-top:1px solid var(--border)}
.post-list li{
  border-bottom:1px solid var(--border);
}
.post-list a{
  display:flex;justify-content:space-between;gap:1rem;
  padding:1rem .2rem;text-decoration:none;color:var(--fg);
  transition:.16s ease;
}
.post-list a:hover{color:var(--red);padding-left:.6rem}
.post-list .date{color:var(--dim);font-size:.82rem;white-space:nowrap}
.post-list .empty{padding:1.4rem .2rem;color:var(--dim)}
.post-list .empty .pulse{color:var(--red)}
.back{display:inline-flex;align-items:center;gap:.4rem;margin-top:2.2rem;
  color:var(--dim);text-decoration:none;font-size:.85rem}
.back:hover{color:var(--red)}
footer{color:var(--dim);font-size:.78rem;text-align:center;padding:1.5rem;opacity:.6}
.blink{animation:blink 1.6s steps(2,start) infinite;color:var(--red)}
@keyframes blink{50%{opacity:0}}
@media (prefers-reduced-motion:reduce){.blink{animation:none}}