@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;1,6..72,400;1,6..72,300&display=swap');

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --bg:           #080d18;
  --bg2:          #0e1525;
  --surface:      #131d30;
  --surface2:     #192540;
  --border:       #1c2d4a;
  --border2:      #253d60;
  --text:         #cdd8ee;
  --text-muted:   #617090;
  --text-faint:   #2e4060;
  --accent:       #00d4c8;
  --accent-dim:   #00756e;
  --accent-glow:  rgba(0,212,200,.12);
  --accent-glow2: rgba(0,212,200,.05);
  --orange:       #f5a623;
  --orange-dim:   #7a521a;
  --red:          #ff4d6a;
  --green:        #4ade80;
  --yellow:       #fde68a;
  --mono:         'IBM Plex Mono', 'Fira Code', 'Cascadia Code', monospace;
  --serif:        'Newsreader', 'Georgia', 'Times New Roman', serif;
  --r:            6px;
  --r2:           12px;
  --shadow:       0 8px 32px rgba(0,0,0,.5);
  --shadow-sm:    0 2px 8px  rgba(0,0,0,.4);
  --max:          1160px;
  --prose:        720px;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scrollbar-color: var(--border2) var(--bg); scrollbar-width: thin; }
img  { max-width: 100%; display: block; }
a    { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Body / layout ───────────────────────────────────────────────────────── */
body {
  font-family: var(--serif);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0,212,200,.06) 0%, transparent 60%),
    linear-gradient(rgba(0,212,200,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,200,.015) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
}

.page-wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Reading progress bar ────────────────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--orange));
  z-index: 1000; transition: width .1s;
}

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,13,24,.85);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 56px; display: flex; align-items: center; gap: 0;
}
.nav-logo {
  font-family: var(--mono); font-size: .88rem; font-weight: 500;
  color: var(--accent); letter-spacing: -.01em; white-space: nowrap;
  display: flex; align-items: center; gap: 6px; text-decoration: none;
  padding-right: 32px;
}
.nav-logo .prompt { color: var(--text-muted); }
.nav-logo .cursor {
  display: inline-block; width: 8px; height: 1em; background: var(--accent);
  animation: blink 1.1s step-end infinite; margin-left: 1px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a {
  font-family: var(--mono); font-size: .78rem; font-weight: 400;
  color: var(--text-muted); padding: 6px 12px; border-radius: var(--r);
  transition: color .15s, background .15s; text-decoration: none; letter-spacing: .02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent); background: var(--accent-glow2);
}
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-badge {
  font-family: var(--mono); font-size: .7rem; padding: 3px 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; color: var(--text-muted); letter-spacing: .04em;
}
.nav-badge .dot { display: inline-block; width: 6px; height: 6px; background: var(--green); border-radius: 50%; margin-right: 5px; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.8)} }

/* ── Hero / featured post ────────────────────────────────────────────────── */
.hero {
  padding: 56px 0 0;
}
.hero-label {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.hero-label::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--accent); }

.featured-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 320px;
  box-shadow: var(--shadow);
  transition: border-color .2s, box-shadow .2s;
}
.featured-card:hover {
  border-color: var(--accent-dim);
  box-shadow: var(--shadow), 0 0 0 1px var(--accent-dim), var(--shadow-accent, 0 0 24px rgba(0,212,200,.1));
  text-decoration: none;
}
.featured-card:hover .fc-title { color: var(--accent); }
.featured-body { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.featured-graphic {
  background: linear-gradient(135deg, #0e1f3a 0%, #071428 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.featured-graphic .code-bg {
  font-family: var(--mono); font-size: .65rem; line-height: 1.6;
  color: var(--text-faint); padding: 32px; white-space: pre; user-select: none;
  opacity: .7; letter-spacing: 0;
}
.featured-graphic::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0,212,200,.04));
}
.fc-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.fc-tag {
  font-family: var(--mono); font-size: .68rem; padding: 3px 8px;
  background: var(--accent-glow); border: 1px solid var(--accent-dim);
  color: var(--accent); border-radius: 4px; letter-spacing: .04em;
}
.fc-date { font-family: var(--mono); font-size: .72rem; color: var(--text-muted); }
.fc-title { font-size: 1.55rem; font-weight: 500; line-height: 1.3; color: var(--text); transition: color .15s; margin-bottom: 12px; }
.fc-excerpt { color: var(--text-muted); font-size: .97rem; line-height: 1.65; margin-bottom: 24px; }
.fc-read {
  font-family: var(--mono); font-size: .76rem; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px; letter-spacing: .02em;
}
.fc-read::after { content: '→'; transition: transform .15s; }
.featured-card:hover .fc-read::after { transform: translateX(4px); }
.fc-read-time { font-family: var(--mono); font-size: .72rem; color: var(--text-muted); margin-left: auto; }

/* ── Page layout: main + sidebar ─────────────────────────────────────────── */
.content-layout {
  display: grid; grid-template-columns: 1fr 280px; gap: 48px;
  padding: 48px 0 80px; align-items: start;
}
.content-main {}
.sidebar {}

/* ── Section header ──────────────────────────────────────────────────────── */
.section-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.section-title {
  font-family: var(--mono); font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted);
}
.section-line { flex: 1; height: 1px; background: var(--border); }

/* ── Post card grid ──────────────────────────────────────────────────────── */
.post-grid { display: flex; flex-direction: column; gap: 0; }

.post-card {
  display: grid; grid-template-columns: auto 1fr;
  gap: 0 24px; padding: 24px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit;
  transition: all .15s;
  position: relative;
}
.post-card:first-child { border-top: 1px solid var(--border); }
.post-card:hover { padding-left: 8px; }
.post-card:hover .pc-title { color: var(--accent); }
.post-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--accent); transform: scaleY(0); transition: transform .15s;
  border-radius: 0 2px 2px 0;
}
.post-card:hover::before { transform: scaleY(1); }

.pc-num {
  font-family: var(--mono); font-size: .72rem; color: var(--text-faint);
  width: 28px; padding-top: 2px; line-height: 1;
}
.pc-body { min-width: 0; }
.pc-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.pc-tag {
  font-family: var(--mono); font-size: .65rem; padding: 2px 7px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-muted); border-radius: 3px; letter-spacing: .04em;
}
.pc-tag.accent { background: var(--accent-glow); border-color: var(--accent-dim); color: var(--accent); }
.pc-date { font-family: var(--mono); font-size: .68rem; color: var(--text-faint); }
.pc-title { font-size: 1.08rem; font-weight: 500; color: var(--text); margin-bottom: 6px; line-height: 1.4; transition: color .15s; }
.pc-excerpt { font-size: .9rem; color: var(--text-muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pc-footer { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.pc-reading-time { font-family: var(--mono); font-size: .65rem; color: var(--text-faint); }

/* ── Sidebar widgets ─────────────────────────────────────────────────────── */
.widget {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 20px 22px; margin-bottom: 20px;
}
.widget-title {
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.author-widget { text-align: center; }
.author-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), #0a2a4a);
  margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 1.4rem; color: var(--accent);
  border: 2px solid var(--border2);
}
.author-name { font-weight: 500; font-size: .95rem; margin-bottom: 4px; }
.author-role { font-family: var(--mono); font-size: .72rem; color: var(--text-muted); margin-bottom: 12px; }
.author-bio { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.author-links { display: flex; justify-content: center; gap: 8px; }
.author-link {
  font-family: var(--mono); font-size: .68rem; padding: 4px 10px;
  border: 1px solid var(--border); border-radius: 4px; color: var(--text-muted);
  transition: all .15s; text-decoration: none;
}
.author-link:hover { border-color: var(--accent-dim); color: var(--accent); background: var(--accent-glow); text-decoration: none; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-pill {
  font-family: var(--mono); font-size: .68rem; padding: 4px 10px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; color: var(--text-muted); transition: all .15s;
  text-decoration: none; letter-spacing: .03em;
}
.tag-pill:hover { border-color: var(--accent-dim); color: var(--accent); background: var(--accent-glow); text-decoration: none; }

.recent-list { list-style: none; }
.recent-item { padding: 10px 0; border-bottom: 1px solid var(--border); }
.recent-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-item a { font-size: .88rem; color: var(--text); text-decoration: none; line-height: 1.4; display: block; margin-bottom: 3px; transition: color .15s; }
.recent-item a:hover { color: var(--accent); }
.recent-meta { font-family: var(--mono); font-size: .65rem; color: var(--text-faint); }

.newsletter-widget {}
.newsletter-widget p { font-size: .88rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.nl-form { display: flex; flex-direction: column; gap: 8px; }
.nl-input {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 9px 12px;
  color: var(--text); font-family: var(--mono); font-size: .78rem;
  outline: none; transition: border-color .15s;
}
.nl-input::placeholder { color: var(--text-faint); }
.nl-input:focus { border-color: var(--accent-dim); }
.nl-btn {
  background: var(--accent); color: #000; border: none;
  border-radius: var(--r); padding: 9px 16px; cursor: pointer;
  font-family: var(--mono); font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; transition: opacity .15s;
}
.nl-btn:hover { opacity: .85; }

/* ── Article / post page ─────────────────────────────────────────────────── */
.article-layout {
  display: grid; grid-template-columns: 1fr 280px; gap: 48px;
  padding: 0 0 80px; align-items: start;
}
.article-header { padding: 48px 0 36px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.article-breadcrumb {
  font-family: var(--mono); font-size: .72rem; color: var(--text-muted);
  margin-bottom: 16px; display: flex; align-items: center; gap: 6px;
}
.article-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--accent); }
.article-breadcrumb .sep { color: var(--text-faint); }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.article-tag {
  font-family: var(--mono); font-size: .68rem; padding: 3px 9px;
  background: var(--accent-glow); border: 1px solid var(--accent-dim);
  color: var(--accent); border-radius: 4px; letter-spacing: .04em;
}
.article-title { font-size: 2rem; font-weight: 400; line-height: 1.25; color: var(--text); margin-bottom: 16px; max-width: var(--prose); }
.article-subtitle { font-size: 1.08rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; max-width: var(--prose); font-style: italic; }
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.article-author { display: flex; align-items: center; gap: 10px; }
.article-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), #0a2a4a);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: .8rem; color: var(--accent);
  border: 1px solid var(--border2); flex-shrink: 0;
}
.article-author-name { font-size: .9rem; font-weight: 500; }
.article-author-role { font-family: var(--mono); font-size: .68rem; color: var(--text-muted); }
.article-date-rt { display: flex; align-items: center; gap: 12px; }
.article-date, .article-rt {
  font-family: var(--mono); font-size: .72rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 5px;
}
.article-date::before { content: '◷'; }

/* ── Prose ───────────────────────────────────────────────────────────────── */
.prose {
  font-size: 1.02rem; line-height: 1.82; color: var(--text);
  max-width: var(--prose);
}
.prose h2 {
  font-family: var(--mono); font-size: 1.05rem; font-weight: 600;
  color: var(--text); margin: 2.5em 0 .8em;
  letter-spacing: .02em; padding-bottom: .5em;
  border-bottom: 1px solid var(--border);
}
.prose h2::before { content: '## '; color: var(--accent-dim); }
.prose h3 {
  font-family: var(--mono); font-size: .93rem; font-weight: 500;
  color: var(--text-muted); margin: 2em 0 .6em; letter-spacing: .02em;
}
.prose h3::before { content: '### '; color: var(--text-faint); }
.prose p { margin-bottom: 1.3em; }
.prose strong { color: var(--text); font-weight: 600; }
.prose em { color: var(--text-muted); }
.prose a { color: var(--accent); border-bottom: 1px solid var(--accent-dim); text-decoration: none; transition: border-color .15s; }
.prose a:hover { border-color: var(--accent); text-decoration: none; }
.prose blockquote {
  border-left: 2px solid var(--accent); padding: 12px 20px 12px 24px;
  background: var(--surface); border-radius: 0 var(--r) var(--r) 0;
  margin: 1.5em 0; color: var(--text-muted); font-style: italic;
}
.prose blockquote::before { content: '"'; font-size: 2rem; color: var(--accent-dim); line-height: 0; vertical-align: -.4em; margin-right: 4px; }
.prose ul, .prose ol { padding-left: 1.4em; margin-bottom: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose ul li::marker { color: var(--accent-dim); }
.prose ol li::marker { font-family: var(--mono); color: var(--text-muted); font-size: .85em; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2.5em 0; }

.prose pre {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 20px 22px; overflow-x: auto;
  margin: 1.5em 0; position: relative;
}
.prose pre::before {
  content: attr(data-lang); position: absolute; top: 10px; right: 14px;
  font-family: var(--mono); font-size: .65rem; color: var(--text-faint);
  letter-spacing: .06em; text-transform: uppercase;
}
.prose code {
  font-family: var(--mono); font-size: .88em;
  background: var(--surface); border: 1px solid var(--border);
  padding: 2px 6px; border-radius: 3px; color: var(--orange);
}
.prose pre code {
  background: transparent; border: none; padding: 0;
  color: var(--text); font-size: .84rem; line-height: 1.7;
}

.prose .callout {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--accent); border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px; margin: 1.5em 0;
}
.prose .callout-title {
  font-family: var(--mono); font-size: .72rem; color: var(--accent);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px;
}

/* ── TOC ─────────────────────────────────────────────────────────────────── */
.toc-widget { position: sticky; top: 76px; }
.toc-list { list-style: none; }
.toc-item { padding: 3px 0; }
.toc-item a {
  font-family: var(--mono); font-size: .72rem; color: var(--text-muted);
  text-decoration: none; transition: color .15s; line-height: 1.5; display: block;
  padding: 3px 0 3px 10px; border-left: 2px solid transparent; transition: all .15s;
}
.toc-item a:hover, .toc-item a.active {
  color: var(--accent); border-left-color: var(--accent);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0; margin-top: 0;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.footer-logo { font-family: var(--mono); font-size: .8rem; color: var(--text-faint); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-family: var(--mono); font-size: .72rem; color: var(--text-faint); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-family: var(--mono); font-size: .68rem; color: var(--text-faint); }

/* ── About / Contact pages ───────────────────────────────────────────────── */
.page-header { padding: 56px 0 40px; }
.page-title { font-size: 1.8rem; font-weight: 400; margin-bottom: 8px; }
.page-subtitle { color: var(--text-muted); font-style: italic; font-size: 1.02rem; }
.page-content { display: grid; grid-template-columns: 1fr 280px; gap: 48px; padding-bottom: 80px; align-items: start; }

.about-body .prose { max-width: 100%; }
.skill-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 1.5em 0; }
.skill-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 16px;
}
.skill-card-title { font-family: var(--mono); font-size: .75rem; color: var(--accent); margin-bottom: 4px; }
.skill-card-body  { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

.timeline { list-style: none; }
.timeline-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-family: var(--mono); font-size: .72rem; color: var(--accent); white-space: nowrap; padding-top: 2px; }
.timeline-body h4 { font-size: .95rem; font-weight: 500; margin-bottom: 2px; }
.timeline-body p  { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

.contact-form { max-width: 560px; }
.form-group { margin-bottom: 18px; }
.form-label { font-family: var(--mono); font-size: .72rem; color: var(--text-muted); display: block; margin-bottom: 6px; letter-spacing: .04em; }
.form-input, .form-textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 10px 14px; color: var(--text);
  font-family: var(--serif); font-size: .95rem; outline: none;
  transition: border-color .15s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent-dim); }
.form-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-btn {
  background: var(--accent); color: #000; border: none; border-radius: var(--r);
  padding: 11px 24px; font-family: var(--mono); font-size: .82rem; font-weight: 600;
  cursor: pointer; letter-spacing: .04em; transition: opacity .15s;
}
.form-btn:hover { opacity: .85; }

/* ── 404 page ────────────────────────────────────────────────────────────── */
.error-page { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 70vh; text-align: center; padding: 40px; }
.error-code { font-family: var(--mono); font-size: 6rem; font-weight: 600; color: var(--text-faint); line-height: 1; margin-bottom: 16px; }
.error-msg  { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 8px; }
.error-hint { font-family: var(--mono); font-size: .8rem; color: var(--text-faint); margin-bottom: 28px; }
.error-back { font-family: var(--mono); font-size: .82rem; color: var(--accent); padding: 10px 20px; border: 1px solid var(--accent-dim); border-radius: var(--r); text-decoration: none; transition: all .15s; }
.error-back:hover { background: var(--accent-glow); text-decoration: none; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .featured-card { grid-template-columns: 1fr; min-height: auto; }
  .featured-graphic { display: none; }
  .content-layout, .article-layout, .page-content { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .article-title { font-size: 1.5rem; }
}
@media (max-width: 600px) {
  .nav-logo { font-size: .78rem; }
  .hero { padding-top: 32px; }
  .featured-body { padding: 28px; }
  .fc-title { font-size: 1.25rem; }
}

/* ── Utility ─────────────────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
/* honeypot: invisible link only bots will follow */
.nb-archive-link { opacity: 0; pointer-events: none; position: absolute; left: -9999px; font-size: 0; }
</style>
