/* =============================================================================
   elif else  —  elifelse.com
   Retro-terminal light theme  ·  Source Code Pro + Space Mono
   Palette: #5ec740 (green) · #869b9f (grey) · #1e2521 (near-black)
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --bg:              #e0e7e4;
  --bg-surface:      #edf2f0;
  --bg-warm:         #d2dcd8;
  --bg-terminal:     #363b3e;
  --bg-terminal-s:   #2d3134;

  --text:            #1e2521;
  --text-secondary:  #5c6b6e;
  --text-dim:        #869b9f;
  --text-terminal:   #b2f86b;
  --text-terminal-d: #7bc44a;

  --accent:          #4fad38;
  --accent-bright:   #5ec740;
  --accent-light:    #e0f5d4;
  --accent-hover:    #43962e;

  --grey:            #859b9f;
  --grey-light:      #d5deda;
  --grey-dark:       #5a6b6f;

  --amber:           #c49b3c;
  --amber-light:     #faf3e0;
  --blue:            #3b7dd8;
  --blue-light:      #e7f0fa;

  --border:          #a5b3b0;
  --border-hover:    #859b9f;
  --shadow:          0 2px 8px rgba(0,0,0,.06);
  --shadow-hover:    0 4px 16px rgba(0,0,0,.10);
  --radius:          6px;

  --font-body:       'Space Mono', 'Courier New', monospace;
  --font-display:    'Source Code Pro', 'Courier New', monospace;

  --max-width:       1000px;
  --nav-height:      56px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
}
h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
a  { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }
strong { font-weight: 700; }
code {
  font-family: var(--font-body);
  font-size: 13px;
  background: var(--bg-warm);
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--border);
}

/* ---------- layout ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section   { padding: 15px 0; }
.section + .section { padding-top: 0; }

/* ---------- status pill (in nav) ---------- */
.site-nav .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  color: var(--text-dim);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  margin-left: 8px;
}
.site-nav .status-pill:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-light);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--grey);
  z-index: 100;
  height: var(--nav-height);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--grey);
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color 400ms cubic-bezier(0.65, 0, 0.35, 1);
}
.logo:hover { color: var(--accent-bright); }
.logo .l { display: inline-block; }
.logo .l-f { transition: transform 550ms cubic-bezier(0.65, 0, 0.35, 1); }
.logo:hover .l-f { transform: translateX(1ch); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  font-size: 13px;
  text-transform: lowercase;
  letter-spacing: .5px;
  padding: 6px 14px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
  background: var(--accent-light);
}

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

/* ---------- hero ---------- */
.hero { padding: 64px 0 48px; }
.hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: -1px 0 rgba(255,40,40,0.15), 1px 0 rgba(0,200,255,0.15);
}
.hero-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}
.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* hero with image */
.hero-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero-image {
  width: 340px;
  height: 340px;
  border-radius: var(--radius);
  border: 2px solid var(--grey);
  object-fit: cover;
  background: var(--bg-warm);
  box-shadow: var(--shadow);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  background: var(--bg-surface);
  color: var(--text);
}
.btn:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
  color: var(--text);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent-light);
  color: var(--accent);
}

/* ---------- cards ---------- */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .2s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-link:hover { color: inherit; }

/* ---------- tags ---------- */
.tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.8;
}
.tag-green  { background: var(--accent-light); color: var(--accent); }
.tag-amber  { background: var(--amber-light);  color: var(--amber); }
.tag-blue   { background: var(--blue-light);   color: var(--blue); }
.tag-grey   { background: var(--grey-light);   color: var(--grey-dark); }

/* ---------- terminal block ---------- */
.terminal {
  background: var(--bg-terminal);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 13px;
  box-shadow: -2px 0 6px rgba(255,40,40,0.08), 2px 0 6px rgba(0,200,255,0.08);
}
.terminal-header {
  background: var(--bg-terminal-s);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.terminal-title {
  color: var(--grey);
  font-size: 11px;
  font-family: var(--font-body);
}
.terminal-body {
  padding: 16px;
  color: var(--text-terminal);
  font-family: var(--font-body);
  line-height: 1.7;
}
.terminal-body .line { margin-bottom: 4px; }
.terminal-body .prompt-char {
  color: var(--text-terminal-d);
  user-select: none;
}
.terminal-body .output {
  color: var(--text-terminal);
  opacity: .85;
}
.terminal-body .comment {
  color: var(--grey);
}
.terminal-body .accent-pink {
  color: #ff79c6;
}
.terminal-body .cursor-block {
  display: inline-block;
  color: var(--text-terminal);
  animation: blink 1s step-end infinite;
}

/* status widget (eli's corner) */
.status-widget {
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  overflow: hidden;
}
.status-widget .terminal { border-radius: 0; }
.status-gif-container {
  background: var(--bg-terminal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.status-gif {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 4px;
}
.status-label {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-terminal);
  text-align: center;
  padding: 8px;
  background: var(--bg-terminal-s);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------- section header ---------- */
.section-header {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.section-title { font-size: 28px; }
.section-link {
  font-size: 13px;
  text-transform: lowercase;
  letter-spacing: .5px;
}

/* ---------- post cards ---------- */
.post-list { display: flex; flex-direction: column; gap: 16px; }
.post-card { padding: 20px; }
.post-date {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.post-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.2;
}
.post-excerpt {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
}
.post-tags { margin-top: 10px; display: flex; gap: 6px; flex-wrap: wrap; }

/* ---------- project grid ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.project-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.project-preview {
  height: 160px;
  background: var(--bg-terminal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-terminal);
  font-family: var(--font-display);
  font-size: 22px;
  border-bottom: 1px solid var(--border);
}
.project-info { padding: 18px; flex: 1; }
.project-name {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 6px;
}
.project-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.project-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.project-repo-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding: 3px 10px;
  font-size: 12px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .2s;
}
.project-repo-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-light);
}

/* ---------- link grid (eli's corner, dev corner) ---------- */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  text-decoration: none;
  color: var(--text);
  transition: all .2s;
}
.link-card:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--text);
  box-shadow: var(--shadow);
}
.link-card-icon {
  font-size: 28px;
  color: var(--grey);
}
.link-card-icon.material-symbols-outlined {
  font-size: 32px;
}
.link-card-label {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
}
.link-card-desc {
  font-size: 12px;
  color: var(--text-dim);
}

/* ---------- dashboard grid (eli's corner) ---------- */
.dashboard-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}
.specs-list {
  font-size: 13px;
  color: var(--text-secondary);
}
.specs-list dt {
  color: var(--text-dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}
.specs-list dt:first-child { margin-top: 0; }
.specs-list dd { margin-left: 0; margin-bottom: 4px; }

/* (stream notification removed) */

/* ---------- ask eli ---------- */
.ask-form { max-width: 520px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  color: var(--text);
  transition: border-color .2s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.form-textarea { min-height: 100px; resize: vertical; }

.qa-list { display: flex; flex-direction: column; gap: 20px; }
.qa-item {
  border-left: 3px solid var(--accent-bright);
  padding-left: 16px;
}
.qa-question { font-weight: 700; margin-bottom: 6px; font-size: 14px; }
.qa-answer { color: var(--text-secondary); font-size: 13px; }
.qa-date { font-size: 11px; color: var(--text-dim); margin-top: 4px; }

/* ---------- about page sections ---------- */
.about-section {
  margin-bottom: 40px;
}
.about-section h2 {
  margin-bottom: 12px;
}
.about-section p {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 640px;
}

/* feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.feature-card {
  padding: 16px;
  border-left: 3px solid var(--accent-bright);
}
.feature-card h4 { font-size: 18px; margin-bottom: 4px; }
.feature-card p { font-size: 12px; margin: 0; color: var(--text-secondary); }

/* state diagram */
.state-diagram {
  margin: 24px 0;
  padding: 24px;
  background: var(--bg-terminal);
  border-radius: var(--radius);
  color: var(--text-terminal);
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.5;
  overflow-x: auto;
  white-space: pre;
}

/* ---------- story card ---------- */
.story-card { padding: 20px; }
.story-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.story-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 6px;
}
.story-excerpt {
  color: var(--text-secondary);
  font-size: 13px;
  font-style: italic;
  line-height: 1.7;
}
.story-word-count {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ---------- garden ---------- */
.garden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.garden-card {
  padding: 18px;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
}
.garden-emoji { font-size: 32px; margin-bottom: 6px; }
.garden-card h4 { font-size: 16px; margin-bottom: 4px; }
.garden-card p { font-size: 12px; color: var(--text-dim); }

/* ---------- article pages ---------- */
.article-header { padding: 48px 0 24px; }
.article-header .container { position: relative; }
.article-header .vote-widget {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-top: 0;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.article-back, .back-link {
  display: inline-block;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.article-back:hover, .back-link:hover { color: var(--accent); }
.article-body {
  padding-bottom: 48px;
  color: var(--text-secondary);
}
.article-body h2, .article-body h3, .article-body h4 {
  color: var(--text);
}
.article-body h2 {
  font-size: 26px;
  margin-top: 36px;
  margin-bottom: 12px;
}
.article-body p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 1em;
}
.article-body ul, .article-body ol {
  list-style: revert;
  padding-left: 24px;
  margin: 12px 0;
}
.article-body li {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.8;
}
.article-body blockquote {
  border-left: 3px solid var(--accent-bright);
  padding: 10px 18px;
  margin: 20px 0;
  background: var(--accent-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}
.article-body .terminal { margin: 20px 0; }

/* story body */
.story-body {
  max-width: 640px;
  padding-bottom: 48px;
  color: var(--text-secondary);
}
.story-body h2, .story-body h3, .story-body h4 {
  color: var(--text);
}
.story-body p {
  font-size: 14px;
  line-height: 2;
  text-indent: 2em;
  margin-bottom: 1em;
}
.story-body ul, .story-body ol {
  list-style: revert;
  padding-left: 24px;
  margin: 12px 0;
}
.story-body li {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.8;
}
.story-body p:first-of-type { text-indent: 0; }
.story-body .scene-break {
  text-align: center;
  color: var(--text-dim);
  margin: 28px 0;
  letter-spacing: 8px;
  text-indent: 0;
}

/* ---------- page header ---------- */
.page-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--grey);
  margin-bottom: 40px;
}
.page-title {
  font-size: 38px;
  margin-bottom: 8px;
  text-shadow: -1px 0 rgba(255,40,40,0.12), 1px 0 rgba(0,200,255,0.12);
}
.page-desc {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 560px;
}

/* ---------- empty state ---------- */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--text-dim);
}
.empty-state p { font-size: 14px; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--grey);
  padding: 36px 0;
  margin-top: 64px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--grey);
  display: inline-block;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color 400ms cubic-bezier(0.65, 0, 0.35, 1);
}
.footer-logo .l { display: inline-block; }
.footer-logo .l-f { transition: transform 550ms cubic-bezier(0.65, 0, 0.35, 1); }
.footer-logo:hover { color: var(--accent-bright); }
.footer-logo:hover .l-f { transform: translateX(1ch); }
.footer-tagline {
  color: var(--text-dim);
  font-size: 12px;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-links a { font-size: 13px; color: var(--text-secondary); }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 11px; color: var(--text-dim); }

/* ---------- terminal light variant (papers / activity gif) ---------- */
.terminal.terminal-light {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  box-shadow: none;
}
.terminal.terminal-light .terminal-header {
  background: var(--bg-warm);
  border-bottom-color: var(--border);
}
.terminal.terminal-light .terminal-title {
  color: var(--text-secondary);
}
.terminal.terminal-light .terminal-body {
  color: var(--text-secondary);
}
.terminal.terminal-light .terminal-body .prompt-char {
  color: var(--accent);
}
.terminal.terminal-light .terminal-body .output {
  color: var(--text);
  opacity: 1;
}
.terminal.terminal-light .terminal-body .comment {
  color: var(--text-dim);
}

.status-widget-light .status-gif-container {
  background: var(--bg-surface);
}
.status-widget-light .terminal {
  background: var(--bg-surface);
}
.status-widget-light .terminal .terminal-header {
  background: var(--bg-warm);
  border-bottom-color: var(--border);
}
.status-widget-light .terminal .terminal-title {
  color: var(--text-secondary);
}
.status-widget-light .terminal .terminal-body {
  color: var(--text);
}
.status-widget-light .terminal .terminal-body .prompt-char {
  color: var(--accent);
}
.status-widget-light .terminal .terminal-body .output {
  color: var(--text-secondary);
  opacity: 1;
}
.status-widget-light .status-label {
  background: var(--bg-warm);
  color: var(--text);
}

/* ---------- animations ---------- */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn .3s ease-out; }

@media (prefers-reduced-motion: reduce) {
  .logo,
  .logo .l-f,
  .footer-logo,
  .footer-logo .l-f {
    transition: none;
  }
  .logo:hover,
  .footer-logo:hover {
    color: var(--grey);
  }
  .logo:hover .l-f,
  .footer-logo:hover .l-f {
    transform: none;
  }
}

main { position: relative; }

/* ---------- scrollbar ---------- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-hover); }

/* ---------- comments widget ---------- */
.comments-title {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.comment-user-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
}
.comment-user-name { color: var(--text-secondary); }
.comment-signout {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-dim);
}
.comment-signout:hover { color: var(--accent); }

.comment-login {
  padding: 24px;
  text-align: center;
  background: var(--bg-surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.comment-login-btn {
  gap: 8px;
}

.comment-form {
  margin-bottom: 20px;
}
.comment-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.comment-form-display-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.comment-form-label {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 11px;
}
.display-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
}
.display-toggle input { cursor: pointer; }
.comment-textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  color: var(--text);
  resize: vertical;
  min-height: 60px;
  transition: border-color .2s;
}
.comment-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.comment-form-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 8px;
  gap: 8px;
}

.comment-empty {
  color: var(--text-dim);
  font-size: 13px;
  text-align: center;
  padding: 24px 0;
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comment-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.comment-avatar {
  border-radius: 50%;
  flex-shrink: 0;
}
.comment-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.comment-time {
  font-size: 11px;
  color: var(--text-dim);
}
.comment-delete {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 14px;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1;
}
.comment-delete:hover {
  color: #c44;
  background: rgba(204,68,68,.08);
}

.comment-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* ---------- vote widget (post/story pages) ---------- */
.vote-widget {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.vote-arrow {
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-dim);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: all .15s;
}
.vote-arrow:hover:not(.disabled) {
  border-color: var(--grey-dark);
  color: var(--text);
  background: var(--grey-light);
}
.vote-arrow.active-up {
  border-color: var(--grey-dark);
  color: var(--text);
  background: var(--grey-light);
}
.vote-arrow.active-down {
  border-color: var(--grey-dark);
  color: var(--text);
  background: var(--grey-light);
}
.vote-arrow.disabled {
  cursor: default;
  opacity: .5;
}
.vote-score {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  min-width: 20px;
  text-align: center;
}

/* ---------- card vote badge (listing pages) ---------- */
.card-vote-badge {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-dim);
  padding: 3px 10px;
  border-radius: 3px;
  background: var(--bg-warm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.card-vote-up { color: var(--text-secondary); }
.card-vote-down { color: var(--text-secondary); }
.card-comment-badge {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-dim);
  padding: 3px 10px;
  border-radius: 3px;
  background: var(--bg-warm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

/* ---------- comment votes (inline on comments/replies) ---------- */
.comment-vote {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.comment-vote-arrow {
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-dim);
  font-size: 10px;
  cursor: pointer;
  padding: 1px 5px;
  line-height: 1;
  transition: all .15s;
}
.comment-vote-arrow:hover:not(.disabled) {
  border-color: var(--grey-dark);
  color: var(--text);
  background: var(--grey-light);
}
.comment-vote-arrow.active-up {
  border-color: var(--grey-dark);
  color: var(--text);
  background: var(--grey-light);
}
.comment-vote-arrow.active-down {
  border-color: var(--grey-dark);
  color: var(--text);
  background: var(--grey-light);
}
.comment-vote-arrow.disabled {
  cursor: default;
  opacity: .5;
}
.comment-vote-score {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  min-width: 14px;
  text-align: center;
}

.comment-reply-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  padding: 2px 6px;
}
.comment-reply-btn:hover { color: var(--accent); }

.comment-replies {
  margin-top: 12px;
  padding-left: 20px;
  border-left: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reply-card {
  padding: 10px 0;
}
.reply-card .comment-avatar { width: 24px; height: 24px; }
.reply-card .comment-body { margin-bottom: 4px; }

.reply-form {
  margin-top: 12px;
  margin-bottom: 0;
  padding-left: 20px;
}

.comment-cancel-reply {
  font-size: 12px;
}

/* ---------- responsive ---------- */
@media (max-width: 768px) {
  :root { --nav-height: 52px; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-hover);
    flex-direction: column;
    padding: 8px 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 24px; border-radius: 0; }
  .nav-toggle { display: flex; }
  .site-nav .status-pill {
    border-radius: 0;
    margin-left: 0;
    padding: 12px 24px;
    border: none;
    border-top: 1px solid var(--border);
    background: none;
  }
  .hero { padding: 40px 0 32px; }
  .hero-title { font-size: 36px; }
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-split .hero-image { margin: 0 auto 16px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .link-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .garden-grid { grid-template-columns: 1fr 1fr; }
  .ask-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  body { font-size: 13px; }
  .hero-title { font-size: 28px; }
  .container { padding: 0 16px; }
  .link-grid { grid-template-columns: 1fr; }
  .garden-grid { grid-template-columns: 1fr; }
  .chess-board { width: 210px; height: 210px; }
  .chess-piece { font-size: 20px; }
}

/* ---------- live chess board ---------- */
.chess-terminal { padding: 12px 14px; }
.chess-score { text-align: left; margin-bottom: 8px; }
.chess-record { font-family: var(--font-body); font-size: 12px; color: var(--text-dim); letter-spacing: .5px; }
.chess-record .win-count { color: var(--accent); font-weight: 700; }
.chess-record .loss-count { color: #c44; font-weight: 700; }
.chess-board { display: grid; grid-template-columns: repeat(8, 1fr); grid-template-rows: repeat(8, 1fr); aspect-ratio: 1; width: 280px; max-width: 100%; margin: 0 auto; border: 2px solid var(--border-hover); border-radius: 2px; overflow: hidden; }
.chess-sq { display: flex; align-items: center; justify-content: center; position: relative; }
.chess-light { background: #f0d9b5; }
.chess-dark { background: #b58863; }
.chess-sq.chess-highlight::after { content: ''; position: absolute; inset: 0; background: rgba(126, 231, 135, 0.30); pointer-events: none; }
.chess-piece { font-size: 28px; line-height: 1; user-select: none; position: relative; z-index: 1; }
.white-piece { color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.65); }
.black-piece { color: #1a1a2e; text-shadow: 0 0 2px rgba(255,255,255,.15); }
.chess-info { margin-top: 8px; }
.chess-move-display { font-family: var(--font-body); font-size: 13px; color: var(--text-dim); }
.chess-thinking { font-size: 12px; color: var(--text-dim); font-style: italic; margin-top: 4px; min-height: 16px; }
.stat-value { font-weight: 700; transition: color .3s; }
.stat-value.temp-cool { color: var(--accent); }
.stat-value.temp-warm { color: var(--amber); }
.stat-value.temp-hot  { color: #c44; }

/* ---------- dnd state (napping with do-not-disturb) ---------- */
.status-pill.dnd .status-dot {
  background: #c44;
  animation: pulse-dot 2s ease-in-out infinite;
}
.status-pill.dnd {
  color: #c44;
}
.site-nav .status-pill.dnd:hover {
  color: #c44;
  border-color: #c44;
  background: #fde8e8;
}

/* ---------- offline state ---------- */
.status-pill.offline .status-dot {
  background: #888;
  animation: none;
}
.status-pill.offline {
  color: var(--text-dim);
}
.status-label.offline {
  background: var(--grey-light);
  color: var(--text-dim);
}

/* ---------- game viewer container ---------- */
#game-viewer-container:empty { display: none; }
#game-viewer-container:not(:empty) { margin-top: 16px; margin-bottom: 16px; }

/* ---------- game viewer: connect four ---------- */
.game-viewer-c4 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
  background: #2655a3;
  border-radius: 6px;
  padding: 8px;
  max-width: 300px;
  margin: 0 auto;
}
.c4-cell {
  aspect-ratio: 1;
  border-radius: 50%;
  background: #1a3d7a;
}
.c4-red { background: #d44; }
.c4-yellow { background: #dd4; }
.c4-last { box-shadow: 0 0 0 2px #fff; }

/* ---------- game viewer: terminal (poker/udr/rpg) ---------- */
.game-viewer-terminal {
  max-height: 320px;
  overflow-y: auto;
  font-size: 12px;
  line-height: 1.6;
}

/* text RPG specific */
.rpg-command {
  color: var(--accent-bright);
  font-weight: 700;
}
.rpg-output {
  color: var(--text-terminal);
  opacity: 0.8;
}

/* ---------- game viewer: pokemon stream ---------- */
.pokemon-stream-target {
  max-width: 480px;
  margin: 0 auto;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 13px;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}
.pokemon-stream-target video {
  border-radius: 4px;
}

/* ---------- game viewer: mirror ---------- */
.mirror-body {
  background: #bbcbc8;
  padding: 12px;
}
.game-viewer-mirror-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 400px;
  border-radius: 4px;
  object-fit: contain;
}

/* ---------- project viewer page ---------- */
.project-viewer {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.project-viewer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.project-viewer-header h1 {
  font-size: 28px;
  margin: 0;
}
.project-viewer-links {
  display: flex;
  gap: 10px;
  font-size: 13px;
}
.version-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 13px;
}
.version-nav .version-arrow {
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 10px;
  transition: all .15s;
}
.version-nav .version-arrow:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.version-nav .version-arrow:disabled {
  opacity: .3;
  cursor: default;
}
.version-nav .version-label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
}
.version-nav .version-date {
  color: var(--text-dim);
  font-size: 12px;
}
.project-iframe {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}
.version-badge {
  font-size: 11px;
  color: var(--text-dim);
  background: var(--bg-warm);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
}

/* ---------- responsive: game viewers ---------- */
@media (max-width: 480px) {
  .game-viewer-c4 { max-width: 240px; }
  .game-viewer-terminal { max-height: 240px; font-size: 11px; }
  .game-viewer-mirror-img { max-height: 300px; }
  .project-viewer-header { flex-direction: column; align-items: flex-start; }
  .project-iframe { height: 50vh; min-height: 300px; }
}

/* ---------- fan art gallery ---------- */
.fan-art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.fan-art-card {
  padding: 0;
  overflow: hidden;
}
.fan-art-thumb {
  height: 180px;
  background: var(--bg-terminal);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.fan-art-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fan-art-info {
  padding: 14px;
}
.fan-art-title {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 4px;
}
.fan-art-artist {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 4px;
}

/* fan art dropzone */
.fan-art-dropzone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  color: var(--text-dim);
  font-size: 13px;
  transition: border-color .2s, background .2s;
}
.fan-art-dropzone:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

@media (max-width: 768px) {
  .fan-art-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .fan-art-thumb { height: 140px; }
}

/* ── Music Player Styles ──────────────────────────────────────────────────── */

.music-card { margin-bottom: 20px; }
.music-card-title { margin-bottom: 4px; }
.music-card-date { font-size: 13px; color: var(--text-secondary); }

.global-music-player {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  max-width: 240px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: border-color .2s, background .2s;
}

.global-music-player:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.global-music-btn {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 3px;
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

.global-music-btn:hover {
  color: var(--accent-hover);
}

.global-music-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-dim);
  cursor: pointer;
  min-width: 0;
}

.global-music-title:hover {
  color: var(--accent);
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-secondary);
  padding: 48px 0;
  font-size: 15px;
}

@media (max-width: 600px) {
  .global-music-player {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .logo .l-f {
    animation: logo-slide 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  }
  .logo:hover .l-f {
    transform: none;
  }
}

@keyframes logo-slide {
  0%, 60% { transform: translateX(0); }
  70%, 90% { transform: translateX(1ch); }
  100% { transform: translateX(0); }
}

/* ── Side-by-side columns ─────────────────────────────────────────────────── */

.side-by-side { display: flex; gap: 24px; margin: 1em 0; }
.side-by-side .col { flex: 1; min-width: 0; }

@media (max-width: 600px) {
  .side-by-side { flex-direction: column; }
}

/* ---------- newsletter ---------- */
.footer-newsletter-link {
  font-size: 11px;
  color: var(--text-dim);
  cursor: pointer;
  transition: color .2s;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.footer-newsletter-link:hover { color: var(--accent); }

.nl-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(30,37,33,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.nl-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nl-modal {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 400px;
  width: calc(100% - 32px);
  box-shadow: var(--shadow-hover);
  transform: translateY(8px);
  transition: transform .2s;
}
.nl-overlay.open .nl-modal {
  transform: translateY(0);
}
.nl-modal-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.nl-modal-note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.nl-form {
  display: flex;
  gap: 8px;
}
.nl-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  background: var(--bg-surface);
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.nl-input:focus { border-color: var(--accent); }
.nl-submit {
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.nl-submit:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.nl-submit:disabled { opacity: .5; cursor: default; }
.nl-msg {
  font-size: 12px;
  margin-top: 10px;
  min-height: 18px;
}
.nl-msg.ok { color: var(--accent); }
.nl-msg.err { color: #c44a4a; }

/* dev-blog inline newsletter box */
.nl-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.nl-box-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.nl-box-note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

@media (max-width: 480px) {
  .nl-form { flex-direction: column; }
  .nl-modal { padding: 22px 20px; }
}

/* ===== Stats Dashboard (dev/logs) ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.stat-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
}
.stat-card-header .material-symbols-outlined {
  font-size: 16px;
  color: var(--text-secondary);
}
.stat-value {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}
.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}
.stat-sublabel {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.stat-row:last-child {
  border-bottom: none;
}
.stat-row-label {
  font-size: 12px;
  color: var(--text-secondary);
}
.stat-row-value {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
}

/* Log viewer on Eli's Corner */
.log-viewer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 16px;
}
.log-viewer-container:hover {
  opacity: 0.88;
}
.log-specs-panel, .log-scroll-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  overflow: hidden;
}
.log-specs-panel h4, .log-scroll-panel h4 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin: 0 0 10px 0;
  font-weight: 400;
}
.log-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.log-spec-label { color: var(--text-dim); }
.log-spec-value { color: var(--text); }
.log-entry {
  padding: 3px 0;
  line-height: 1.4;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-secondary);
}
.log-entry-ts {
  color: var(--text-dim);
  margin-right: 6px;
}
.log-scroll-panel {
  overflow-y: auto;
}

/* Recent activity (logs page) */
.recent-activity-wide {
  margin-bottom: 32px;
  min-height: 300px;
}
.recent-activity-stacked {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.recent-activity-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 12px;
  color: var(--text-secondary);
}
.recent-activity-item:last-child {
  border-bottom: none;
}
.recent-activity-ts {
  color: var(--text-dim);
  margin-right: 8px;
  font-size: 11px;
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .log-viewer-container { grid-template-columns: 1fr; height: auto; }
}
