:root{
  --bg:#070b10;
  --bg2:#0b0f14;
  --text:#e6edf3;
  --muted:#9fb0c0;
  --accent:#00d084;
  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.10);
  --shadow: 0 16px 60px rgba(0,0,0,.45);
  --nav-green: #00d084; /* <-- swap to match your nav exactly */
}

html, body {
  margin: 0;
  padding: 0;
  background: #070a0c;
  color: #d6dde3;
}

*{box-sizing:border-box}
html,body{height:100%}
body.z-body{
  margin:0;
  font: 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 30% -10%, rgba(0,208,132,.12), transparent 55%),
    radial-gradient(900px 600px at 90% 20%, rgba(0,208,132,.08), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit}
code{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}
.z-container{max-width:1100px;margin:0 auto;padding:0 20px}
.z-main{min-height:70vh}

/* NAV */
.z-nav{
  position:sticky;top:0;z-index:40;
  backdrop-filter: blur(10px);
  background: rgba(7,11,16,.58);
  border-bottom:1px solid var(--border);
  padding: 14px 0;
}
.z-nav__inner{display:flex;align-items:center;justify-content:space-between;min-height:64px;gap:14px}
.z-brand__logo{
  height: 34px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(0,208,132,.15));
}


.z-nav__links{display:flex;gap:18px;align-items:center}
.z-nav__link{color:var(--muted);text-decoration:none;font-weight:700;font-size:14px;letter-spacing:.02em;padding:8px 10px;border-radius:10px}
.z-nav__link:hover,.z-nav__link.is-active{color:var(--text);background:rgba(255,255,255,.04)}
.z-nav__burger{display:none;background:transparent;border:0;color:var(--text);padding:10px;border-radius:12px;border:1px solid rgba(255,255,255,.08)}
.z-nav__burger span{display:block;width:22px;height:2px;background:var(--text);margin:5px 0;opacity:.9;border-radius:2px}
body.nav-open .z-nav__links{
  display:flex;flex-direction:column;position:absolute;left:20px;right:20px;top:68px;
  padding:12px;border-radius:16px;background: rgba(7,11,16,.92);
  border:1px solid rgba(255,255,255,.12);
}

/* HERO */
.z-hero{
  position:relative;
  padding:88px 0 44px;
  background:
    linear-gradient(180deg, rgba(7,11,16,.55), rgba(7,11,16,.92)),
    var(--hero-bg) center/cover no-repeat;
  border-bottom:1px solid var(--border);
  overflow:hidden;
}
.z-hero__overlay{
  position:absolute;inset:-60px;
  background:
    radial-gradient(700px 400px at 50% 20%, rgba(0,208,132,.14), transparent 60%),
    radial-gradient(800px 500px at 20% 80%, rgba(0,208,132,.08), transparent 60%),
    linear-gradient(90deg, rgba(0,208,132,.06), transparent 40%, rgba(0,208,132,.06));
  mix-blend-mode: screen;
  pointer-events:none;
  transform: rotate(-2deg);
}
.z-hero__inner{position:relative;text-align:center}

.z-hero__topline {
  font-size: 30px;font-size: clamp(20px, 2vw, 32px);
  letter-spacing: 6px;
  font-weight: 600;
  color: var(--accent);
  text-shadow:
    0 0 6px rgba(0,255,170,.4),
    0 0 14px rgba(0,255,170,.2);
}

.z-hero__name{margin:0;font-size:54px;line-height:1.05}
.z-hero__cred{margin-top:10px;color:var(--accent);font-weight:800;letter-spacing:.08em}
.z-hero__headline{margin-top:16px;color:#b9c7d6;font-size:18px;font-weight:650}

.z-hero__cta{margin-top:24px;display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.z-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;border-radius:14px;
  text-decoration:none;font-weight:850;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 35px rgba(0,0,0,.25);
}
.z-btn--primary{background:rgba(0,208,132,.16);border-color: rgba(0,208,132,.35)}
.z-btn--primary:hover{background:rgba(0,208,132,.22)}
.z-btn--ghost{background:rgba(255,255,255,.04)}
.z-btn--ghost:hover{background:rgba(255,255,255,.07)}

.z-hero__cards{margin-top:32px}

/* CARD GRID */
.z-cardgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.z-card{
  display:block;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px;
  text-decoration:none;
  color:var(--text);
  box-shadow: var(--shadow);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  position:relative;
  overflow:hidden;
}
.z-card::after{
  content:"";
  position:absolute;inset:-60px;
  background: radial-gradient(420px 220px at 30% 20%, rgba(0,208,132,.18), transparent 60%);
  opacity:.0;
  transition: opacity .15s ease;
}
.z-card:hover{transform: translateY(-2px);border-color: rgba(0,208,132,.35)}
.z-card:hover::after{opacity:1}
.z-card__title{font-weight:900;letter-spacing:.01em}
.z-card__sub{margin-top:6px;color:var(--muted);font-size:13px}
.z-card__meta{margin-top:10px;color:#b9c7d6;font-size:12px}

/* SECTIONS */
.z-section{padding:44px 0}
.z-section--alt{background: rgba(255,255,255,.02); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06)}
.z-section__head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:16px}
.z-section__title{margin:0;font-size:22px;letter-spacing:.08em;text-transform:uppercase;color:#cfe2f0}
.z-section__more{color:var(--muted);text-decoration:none;font-weight:800;font-size:13px;letter-spacing:.05em}
.z-section__more:hover{color:var(--text)}

/* POSTS */
.z-grid{display:grid;gap:14px}
.z-grid--3{grid-template-columns:repeat(3,1fr)}
.z-post{
  display:block;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:16px;
  text-decoration:none;
  transition: transform .15s ease, border-color .15s ease;
}
.z-post:hover{transform: translateY(-2px);border-color: rgba(0,208,132,.30)}
.z-post__meta{color:var(--muted);font-size:12px;margin-bottom:8px}
.z-post__title{font-weight:900;margin-bottom:8px}
.z-post__excerpt{color:#b9c7d6;font-size:13px}
.z-empty{color:var(--muted);padding:18px;border:1px dashed rgba(255,255,255,.18);border-radius:16px}

/* FOCUS */
.z-focus{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:18px}
.z-focus__item{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:16px;
}
.z-focus__k{font-weight:900;color:var(--accent);letter-spacing:.04em}
.z-focus__d{margin-top:8px;color:#b9c7d6;font-size:13px}

/* PAGE */
.z-page{padding:28px 0 40px}
.z-page__title{margin:0 0 12px;font-size:34px}
.z-page__content{color:#c9d7e6}
.z-page__content a{color:var(--accent)}

/* FOOTER */
.z-footer{border-top:1px solid rgba(255,255,255,.10);padding:28px 0;background:rgba(0,0,0,.20)}
.z-footer__inner{text-align:center}
.z-footer__icons{display:flex;gap:10px;justify-content:center;margin-bottom:10px;flex-wrap:wrap}
.z-icon{
  padding:10px 12px;border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  text-decoration:none;
  color:var(--text);
  background:rgba(255,255,255,.04);
  font-weight:850;
  font-size:13px;
}
.z-icon:hover{border-color: rgba(0,208,132,.28)}
.z-footer__tag{color:var(--accent);font-weight:850;letter-spacing:.08em;margin-top:8px;text-transform:uppercase;font-size:12px}
.z-footer__copy{color:var(--muted);font-size:12px;margin-top:8px}

/* GLITCH */
.glitch{position:relative;text-shadow:
  0 0 4px rgba(0,208,132,.35),
  0 0 10px rgba(0,208,132,.15);
}
.glitch::before,.glitch::after{
  content: attr(data-glitch);
  position:absolute;left:0;top:0;width:100%;
  opacity:0;pointer-events:none;
}
.glitch.is-glitching::before{
  opacity:.65;transform: translate(-1px, 0);
  clip-path: polygon(0 20%, 100% 20%, 100% 38%, 0 38%);
  color: rgba(0,208,132,.85);
  text-shadow: -2px 0 rgba(0,208,132,.2);
}
.glitch.is-glitching::after{
  opacity:.55;transform: translate(1px, 0);
  clip-path: polygon(0 58%, 100% 58%, 100% 78%, 0 78%);
  color: rgba(255,255,255,.85);
  text-shadow: 2px 0 rgba(0,0,0,.35);
}
/* ---- B+C: Professional content styling ---- */
.z-head { margin-bottom: 18px; text-align: left; }
.z-page__subtitle { color: #b9c7d6; margin-top: 6px; }

.z-chiprow { display:flex; gap:8px; flex-wrap:wrap; margin-top: 10px; }
.z-chip {
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-weight:800;
  font-size:12px;
  letter-spacing:.02em;
}

.z-case__head { padding: 10px 0 18px; border-bottom:1px solid rgba(255,255,255,.10); margin-bottom: 22px; }
.z-case__title { margin:0; font-size: 38px; line-height: 1.1; margin-bottom: 8px; }
.z-case__summary { color:#c9d7e6; margin: 12px 0 0; max-width: 70ch; margin-bottom: 10px; }
.z-case__meta { display:flex; gap:14px; flex-wrap:wrap; margin-top: 10px; color:#b9c7d6; font-size:13px; }
.z-meta strong { color: rgba(0,208,132,.95); font-weight:900; }

.z-case__grid { display:grid; grid-template-columns: 320px 1fr; gap: 22px; margin-top: 18px; }
.z-panel {
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 14px;
}
.z-panel__title { font-weight: 950; letter-spacing:.08em; text-transform: uppercase; font-size: 12px; color:#cfe2f0; margin-bottom: 8px; }
.z-list { margin: 10px 0 0; padding-left: 18px; color:#c9d7e6; }
.z-list li { margin: 6px 0; }
.z-panel a { color: rgba(0,208,132,.95); text-decoration: none; }
.z-panel a:hover { text-decoration: underline; }
.z-panel + .z-panel {
  margin-top: 14px;
}

.z-article__head { padding: 10px 0 18px; border-bottom:1px solid rgba(255,255,255,.10); margin-bottom: 18px; }
.z-article__title { margin:0; font-size: 38px; line-height: 1.1; }
.z-article__meta { margin-top: 10px; color:#b9c7d6; font-size: 13px; display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.z-dot { opacity:.7; }

.z-article__tldr {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,208,132,.22);
  background: rgba(0,208,132,.06);
  color:#cfe2f0;
}

/* Prose (markdown content) */
.prose { color:#c9d7e6; max-width: 78ch; }
.prose h2 { margin-top: 28px; font-size: 20px; letter-spacing:.06em; text-transform: uppercase; color:#cfe2f0; }
.prose h3 { margin-top: 22px; font-size: 17px; color:#e6edf3; }
.prose a { color: rgba(0,208,132,.95); }

/* Code blocks (restrained neon) */
.prose pre, .prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.prose pre {
  margin: 16px 0;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  overflow:auto;
}
.prose code {
  padding: 2px 6px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

/* Responsive */
@media (max-width: 960px){
  .z-case__grid { grid-template-columns: 1fr; }
  .prose { max-width: 100%; }
}

/* RESPONSIVE */
@media (max-width: 960px){
  .z-hero__name{font-size:30px}
  .z-cardgrid,.z-grid--3,.z-focus{grid-template-columns:1fr}
  .z-nav__links{display:none}
  .z-nav__burger{display:block}
}

/* =======================================
   GLOBAL DARK SITE FOUNDATION
   ======================================= */

html, body {
  margin: 0;
  padding: 0;
  background-color: #070a0c;
  color: #d6dde3;
}

.z-main {
  background-color: transparent;
  min-height: 100vh;
}

.z-page {
  background-color: #070a0c;
}

.z-container {
  background: transparent;
}

/* Nav border correction */
.z-nav,
header {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Z_FORCE_DARK — if you can't find this in the loaded CSS, you're editing the wrong file. */

html, body {
  background: #070a0c !important;
  color: #d6dde3 !important;
}

.z-main, .z-page, .z-container {
  background: transparent !important;
}

.z-page {
  background: #070a0c !important;
}

.z-case, .z-article {
  background: transparent !important;
  color: #d6dde3 !important;
}

.prose, .prose p, .prose li, .prose h1, .prose h2, .prose h3, .prose h4 {
  color: #c9d7e6 !important;
}

.prose h2, .prose h3 {
  color: #e6edf3 !important;
}

/* panels/cards */
.z-panel, .z-card, .z-post {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  color: #d6dde3 !important;
}

/* links */
a, a:visited {
  color: rgba(0,208,132,.95) !important;
}

/* nav: remove harsh white border */
.z-nav {
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: none !important;
}

.z-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.z-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,208,132,.25);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}

.z-article {
  padding: 20px 0 40px;
  max-width: 760px;
}
.z-article__title {
  text-shadow: 0 8px 30px rgba(0,0,0,.45);
}
.prose pre {
  border: 1px solid rgba(0,208,132,.18);
}
.prose pre:hover {
  border-color: rgba(0,208,132,.28);
}

.z-case__body h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.z-case__body p {
  margin-bottom: 14px;
}

.z-case__body {
  max-width: 760px;
}
.z-article h2 {
  margin-top: 26px;
  margin-bottom: 8px;
}

.z-article p {
  margin-bottom: 14px;
}


/* =========================
   PORTFOLIO PAGE TIGHTENING
   ========================= */

.z-case__head {
  margin-bottom: 18px;
}

.z-case__grid {
  gap: 18px;
}

.z-panel {
  padding: 12px 14px;
  border-radius: 12px;
}

.z-panel + .z-panel {
  margin-top: 12px;
}

.z-panel__title {
  font-size: 11px;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.z-case__body {
  max-width: 720px;
}

.z-case__body h2 {
  margin-top: 22px;
  margin-bottom: 6px;
}

.z-case__body p {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* subtle column anchoring */
.z-case__side {
  border-right: 1px solid rgba(255,255,255,.05);
  padding-right: 18px;
}

.z-case__body {
  padding-left: 18px;
}

/* =========================
   JOURNAL PAGE TIGHTENING
   ========================= */

.z-article {
  padding: 18px 0 32px;
  max-width: 720px;
}

.z-article h2 {
  margin-top: 20px;
  margin-bottom: 6px;
}

.z-article p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.z-article .z-chiprow {
  margin-bottom: 10px;
}

.z-article hr {
  margin: 16px 0;
}

.z-page {
  padding: 22px 0 32px;
}
.prose pre {
  background: #0d1117;
  padding: 16px;
  border-radius: 14px;
  overflow-x: auto;
  border: 1px solid rgba(0,208,132,.18);
}

.prose code {
  font-family: "Fira Code", monospace;
  font-size: 14px;
}

.prose pre code {
  background: none;
  padding: 0;
}
:not(pre) > code{
  padding: 2px 6px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}


/* === Content frame around the whole page content === */
.z-main{
  max-width: 900px;
  margin: 28px auto 48px;
  padding: 24px 22px 30px;
  border: 1px solid rgba(0,208,132,.35);  /* nav green, subtle */
  border-radius: 14px;

  /* IMPORTANT: keep it transparent so your main background stays visible */
  background: transparent;
}

.z-article{
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 22px 30px;

}

/* =========================================================
   PRISM / CODE BLOCKS — terminal hacker, professional
   (No green border here; frame is on .z-article)
   ========================================================= */

/* Fenced blocks (Prism) */
pre[class*="language-"]{
  margin: 16px 0;
  padding: 16px;
  border-radius: 14px;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.10);
  overflow-x: auto;
}

/* Remove inner code pill/outline */
pre[class*="language-"] > code{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}


/* Keep all images inside content frame */
.z-main img,
.z-article img,
.prose img {
  max-width: 100%;
  height: auto;
  display: block;
}
.prose img {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  margin: 20px auto;
}

.prose img {
  max-width: 720px;
  width: 100%;
  margin: 28px auto;
  border-radius: 16px;
  border: 1px solid rgba(0,208,132,.18);
}

.journal-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #00ffcc;
  box-sizing: border-box;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}
.journal-card {
  overflow: hidden;
  word-break: break-word;
}
code {
  word-break: break-all;
}
.journal-card code {
  overflow-wrap: anywhere;
}
/* Prevent long code strings from breaking layout */
.journal-card code {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Ensure grid doesn't overflow container */
.journal-grid {
  width: 100%;
}

/* Safety: prevent cards from stretching outside */
.journal-card {
  box-sizing: border-box;
  overflow: hidden;
}

/* 1) Make sure the bordered container never lets children spill out */
.journal-wrapper {
  box-sizing: border-box;
  overflow: hidden; /* hard stop */
}

/* 2) Grid must be allowed to shrink inside its container */
.journal-grid {
  width: 100%;
  box-sizing: border-box;
  min-width: 0; /* critical */
}

/* 3) Grid/Flex children must be allowed to shrink (critical in CSS grid!) */
.journal-grid > * {
  min-width: 0; /* critical */
}

/* 4) Prevent long strings/paths from forcing width */
.journal-card,
.journal-card * {
  overflow-wrap: anywhere;
  word-break: break-word;
}
/* Journal grid: prevent items from forcing overflow */
.z-container {
  box-sizing: border-box;
  overflow: hidden; /* keeps cards inside the green border */
}

/* Make the grid obey the container width */
.z-grid {
  width: 100%;
  box-sizing: border-box;
  min-width: 0; /* critical in grid/flex contexts */
}

/* Allow each grid item (your <a class="z-post">) to shrink */
.z-grid > .z-post {
  min-width: 0;            /* critical */
  max-width: 100%;
  box-sizing: border-box;
}

/* Stop long strings (like file paths / code) from stretching the card */
.z-post,
.z-post * {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* =========================
   PRISM FIX: let theme color tokens
   ========================= */

/* Keep your terminal-ish container look */
pre[class*="language-"]{
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 16px;
  overflow-x: auto;
}

/* Do NOT set a text color on code inside Prism blocks */
pre[class*="language-"] > code{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: unset !important; /* <— important: stops flattening */
}

/* Prism block container (terminal-ish, but doesn't touch token colors) */
pre[class*="language-"]{
  margin: 16px 0;
  padding: 16px;
  border-radius: 14px;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.10);
  overflow-x: auto;
}

pre[class*="language-"] > code{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ========================================= */
/* RESOURCES PAGE STYLING                    */
/* ========================================= */

/* Center and style page title */
.z-container > h1 {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 3rem 0 2rem 0;
  position: relative;
}

/* Subtle divider under title */
.z-container > h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 1rem auto 0 auto;
  background: linear-gradient(
    to right,
    rgba(0, 255, 170, 0.3),
    rgba(0, 255, 170, 0.05)
  );
}

/* ========================================= */
/* TWO COLUMN LAYOUT                         */
/* ========================================= */

.z-two-col {
  display: flex;
  gap: 4rem;
  margin: 4rem 0;
}

.z-two-col > div {
  flex: 1;
  min-width: 0;
}

/* Stack columns on mobile */
@media (max-width: 768px) {
  .z-two-col {
    flex-direction: column;
  }
}

/* ========================================= */
/* TERMINAL-STYLE SECTION LABELS             */
/* ========================================= */

.z-label {
  font-family: monospace;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: rgba(0, 255, 170, 0.9);
  margin-bottom: 1rem;
  margin-top: 0.5rem;

  position: relative;

  /* faint glow */
  text-shadow: 0 0 6px rgba(0, 255, 170, 0.35);
}

/* Terminal prefix */
.z-label::before {
  content: "> ";
  color: rgba(0, 255, 170, 0.6);
}

/* subtle underline separation */
.z-label {
  border-bottom: 1px solid rgba(0, 255, 170, 0.15);
  padding-bottom: 0.4rem;
}


/* ========================================= */
/* DIVIDER LINE                              */
/* ========================================= */

.z-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(0, 255, 170, 0.25),
    rgba(0, 255, 170, 0.05)
  );
  margin: 2rem 0;
}

/* ========================================= */
/* RESOURCE LIST STYLING                     */
/* ========================================= */

.z-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.z-list li {
  margin-bottom: 0.2rem;
}

.z-list a {
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}
.z-list li {
  margin-bottom: 0.2rem;
}


.z-list a:hover {
  color: #00ffaa;
}

/* Optional description text under links */
.z-note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.25rem;
  line-height: 1.35;
}

/* ========================================= */
/* CENTER ALL PAGE TITLES                    */
/* ========================================= */

.z-container h1 {
  text-align: center;
  margin: 3rem 0 2rem 0;
  letter-spacing: 0.06em;
}
.z-container h2 {
  text-align: center;
  margin: 3rem 0 2rem 0;
  letter-spacing: 0.06em;
}
/* Optional subtle divider under every title */
.z-container h1::after,
.z-container h2::after,
.z-container h3::after,
.z-container h4::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 1rem auto 0 auto;
  background: linear-gradient(
    to right,
    rgba(0, 255, 170, 0.3),
    rgba(0, 255, 170, 0.05)
  );
}

/* ===========================================*/
/* CENTER/FORMAT SUBTITLE*/
/* ===========================================*/
.z-page__subtitle {
  text-align: center;
  font-family: monospace;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}

