﻿@font-face {
  font-family: 'VT323';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url('./assets/VT323-Regular.woff2') format('woff2'),
    url('./assets/VT323-Regular.ttf') format('truetype');
}
/* Theme: Terminal default - coordinates with the Terminal button when data-theme is removed. */
:root {
      --bg: #0a0f0a;
      --bg-elevated: #0f160f;
      --panel: #131a13;
      --panel-top: #172017;
      --border: #244224;
      --text: #00cc35;
      --text-dim: #00f045;
      --text-soft: #a7caa7;
      --text-muted: #718871;
      --accent: #00e5ff;
      --accent-2: #ffb000;
      --danger: #ff3131;
      --glow: rgba(0,204,53,0.22);
      --glow-soft: rgba(0,204,53,0.06);
      --glow-deep: rgba(0,255,65,0.04);
      --scanline: rgba(0,0,0,0.18);
      --vignette: rgba(0,0,0,0.5);
      --window-shadow:
        0 0 0 1px #0a160a,
        0 0 20px var(--glow-soft),
        0 0 60px var(--glow-deep),
        inset 0 0 40px rgba(0,0,0,0.6);
      --theme-chip-bg: rgba(255,255,255,0.02);
      --theme-chip-shadow: 0 0 18px var(--glow-soft);
    }

    /* Theme: Light - coordinates with the Light button. */
    :root[data-theme="light"] {
      --bg: #fcfcfd;
      --bg-elevated: #f4f6fb;
      --panel: rgba(255,255,255,0.88);
      --panel-top: rgba(255,255,255,0.96);
      --border: #d9dcea;
      --text: #1b1b1b;
      --text-dim: #5e6ad2;
      --text-soft: #4c5363;
      --text-muted: #646b7c;
      --accent: #1f6feb;
      --accent-2: #c77a15;
      --danger: #cf4d4d;
      --glow: rgba(94,106,210,0.18);
      --glow-soft: rgba(94,106,210,0.12);
      --glow-deep: rgba(74,84,135,0.10);
      --scanline: rgba(27,27,27,0.025);
      --vignette: rgba(94,106,210,0.08);
      --window-shadow:
        0 22px 70px rgba(74,84,135,0.10),
        0 0 0 1px rgba(201,206,225,0.65),
        inset 0 1px 0 rgba(255,255,255,0.75);
      --theme-chip-bg: rgba(94,106,210,0.06);
      --theme-chip-shadow: 0 0 18px rgba(94,106,210,0.16);
    }

    /* Theme: Fancy - coordinates with the Fancy button. */
    :root[data-theme="fancy"] {
      --bg: #1f212b;
      --bg-elevated: #282a36;
      --panel: rgba(40,42,54,0.88);
      --panel-top: rgba(46,48,61,0.96);
      --border: #45485b;
      --text: #f8f8f2;
      --text-dim: #ff79c6;
      --text-soft: #d3d7cf;
      --text-muted: #a7acbf;
      --accent: #8be9fd;
      --accent-2: #ffb86c;
      --danger: #ff6b81;
      --glow: rgba(255,121,198,0.20);
      --glow-soft: rgba(255,121,198,0.11);
      --glow-deep: rgba(8,10,16,0.42);
      --scanline: rgba(248,248,242,0.03);
      --vignette: rgba(8,10,16,0.48);
      --window-shadow:
        0 28px 80px rgba(8,10,16,0.42),
        0 0 0 1px rgba(84,87,108,0.65),
        inset 0 1px 0 rgba(255,255,255,0.03);
      --theme-chip-bg: rgba(255,121,198,0.08);
      --theme-chip-shadow: 0 0 18px rgba(255,121,198,0.18);
    }

    /* Theme: Dark/GitHub - coordinates with the Dark button. */
    :root[data-theme="github"] {
      --bg: #090d12;
      --bg-elevated: #0d1117;
      --panel: rgba(13,17,23,0.90);
      --panel-top: rgba(22,27,34,0.96);
      --border: #30363d;
      --text: #e6edf3;
      --text-dim: #58a6ff;
      --text-soft: #c2cad3;
      --text-muted: #9da7b2;
      --accent: #1f6feb;
      --accent-2: #d29922;
      --danger: #f85149;
      --glow: rgba(31,111,235,0.21);
      --glow-soft: rgba(31,111,235,0.13);
      --glow-deep: rgba(0,0,0,0.45);
      --scanline: rgba(230,237,243,0.03);
      --vignette: rgba(0,0,0,0.52);
      --window-shadow:
        0 28px 80px rgba(0,0,0,0.45),
        0 0 0 1px rgba(61,68,77,0.70),
        inset 0 1px 0 rgba(255,255,255,0.02);
      --theme-chip-bg: rgba(31,111,235,0.08);
      --theme-chip-shadow: 0 0 18px rgba(31,111,235,0.18);
    }

    /* Theme: Evergreen - coordinates with the Evergreen button. */
    :root[data-theme="evergreen"] {
      --bg: #242c31;
      --bg-elevated: #2d353b;
      --panel: rgba(45,53,59,0.90);
      --panel-top: rgba(52,60,67,0.96);
      --border: #495156;
      --text: #d3c6aa;
      --text-dim: #a7c080;
      --text-soft: #c1b89d;
      --text-muted: #9ca58f;
      --accent: #7fbbb3;
      --accent-2: #e69875;
      --danger: #e67e80;
      --glow: rgba(167,192,128,0.18);
      --glow-soft: rgba(167,192,128,0.12);
      --glow-deep: rgba(17,22,24,0.40);
      --scanline: rgba(211,198,170,0.028);
      --vignette: rgba(17,22,24,0.46);
      --window-shadow:
        0 28px 80px rgba(17,22,24,0.40),
        0 0 0 1px rgba(89,97,104,0.68),
        inset 0 1px 0 rgba(255,255,255,0.03);
      --theme-chip-bg: rgba(167,192,128,0.08);
      --theme-chip-shadow: 0 0 18px rgba(167,192,128,0.16);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; font-family: 'VT323', monospace; }

    html { font-size: 18px; }

    html, body {
      height: 100%;
      background:
        radial-gradient(circle at 8% 12%, var(--glow-soft), transparent 24%),
        radial-gradient(circle at 86% 14%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 18%),
        linear-gradient(180deg, var(--bg-elevated), var(--bg));
      color: var(--text);
      font-family:
        'VT323', monospace;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 3px,
        var(--scanline) 3px,
        var(--scanline) 4px
      );
      pointer-events: none;
      z-index: 9999;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background: radial-gradient(ellipse at center, transparent 58%, var(--vignette) 100%);
      pointer-events: none;
      z-index: 9998;
      animation: flicker 8s infinite;
    }

    @keyframes flicker {
      0%, 97%, 100% { opacity: 1; }
      98% { opacity: 0.92; }
      99% { opacity: 0.96; }
    }

    .terminal-wrap {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 2rem 1rem;
      position: relative;
      z-index: 1;
    }

    .window {
      width: 100%;
      max-width: 900px;
      overflow-x: hidden;
      background: var(--panel);
      border: 1px solid var(--border);
      box-shadow: var(--window-shadow);
      border-radius: 14px;
      overflow: hidden;
      animation: fadeIn 0.4s ease;
      backdrop-filter: blur(12px);
    }

    @keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

    .titlebar {
      background: linear-gradient(180deg, var(--panel-top), var(--panel));
      border-bottom: 1px solid var(--border);
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      user-select: none;
      flex-wrap: wrap;
    }

    .dots { display: flex; gap: 5px; align-items: center; }
    .dot {
      width: 26px; height: 18px;
      border-radius: 4px;
      border: 1px solid var(--border);
      background: var(--theme-chip-bg);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted);
      cursor: pointer;
      user-select: none;
      transition: background .15s ease;
    }
    .dot:hover { background: rgba(128,128,128,0.18); }
    .dot svg { width: 9px; height: 9px; }

    .titlebar-label {
      flex: 0 1 auto;
      text-align: center;
      font-size: 0.78rem;
      color: var(--text-muted);
      letter-spacing: 2px;
      text-transform: uppercase;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .theme-picker {
      display: flex;
      align-items: center;
      gap: 5px;
      flex-wrap: nowrap;
      margin-left: auto;
      min-width: 0;
      overflow-x: clip;
      padding: 2px 0;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .theme-picker::-webkit-scrollbar { display: none; }

    .theme-label {
      font-size: 0.66rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .theme-btn {
      appearance: none;
      border: 1px solid var(--border);
      background: var(--theme-chip-bg);
      color: var(--text-muted);
      font: inherit;
      font-size: 0.68rem;
      letter-spacing: 0.06em;
      border-radius: 999px;
      padding: 4px 9px;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
      transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
    }

    .theme-btn:hover,
    .theme-btn:focus-visible,
    .theme-btn[aria-pressed="true"] {
      border-color: var(--accent);
      color: var(--text);
      background: color-mix(in srgb, var(--accent) 12%, transparent);
      transform: translateY(-1px);
      box-shadow: var(--theme-chip-shadow);
      outline: none;
    }

    .term-body { padding: 1.6rem 1.8rem 2rem; }

    .logo-row {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin-bottom: 1.2rem;
      padding-bottom: 1.2rem;
      border-bottom: 1px solid var(--border);
    }

    .logo-img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      filter: drop-shadow(0 0 10px color-mix(in srgb, var(--accent) 35%, transparent));
      flex-shrink: 0;
      border-radius: 10px;
    }

    .logo-text h1 {
      font-family: 'VT323', monospace;
      font-size: 2.55rem;
      color: var(--text);
      text-shadow: 0 0 8px var(--glow), 0 0 20px color-mix(in srgb, var(--accent) 18%, transparent);
      letter-spacing: 3px;
      line-height: 1;
    }

    .logo-text .tagline {
      font-size: 0.7rem;
      color: var(--accent-2);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .prompt-line {
      display: flex;
      align-items: flex-start;
      gap: 0;
      margin-bottom: 0.15rem;
      font-size: 0.90rem;
      line-height: 1.5;
      flex-wrap: wrap;
    }

    .ps1 { color: var(--text-dim); white-space: nowrap; }
    .ps1 .user { color: var(--accent); }
    .ps1 .at, .ps1 .sep { color: var(--text-muted); }
    .ps1 .host { color: var(--text); }
    .ps1 .path { color: var(--accent-2); }
    .cmd { color: var(--text-soft); margin-left: 6px; }

    .output-block {
      margin: 0.5rem 0 1rem 0;
      padding-left: 1.4rem;
      padding-right: 1.4rem;
      border-left: 2px solid var(--border);
      border-right: 2px solid var(--border);
    }

    .output-line {
      font-size: 0.88rem;
      line-height: 1.6;
      color: var(--text-soft);
    }

    .output-line .key { color: var(--text-dim); }
    .output-line .val { color: var(--text); }
    .output-line .comment { color: var(--text-muted); }

    .divider {
      border: none;
      border-top: 1px dashed var(--border);
      margin: 1rem 0;
    }

    .section-cmd { margin-top: 0.8rem; }

    .links-grid {
      margin: 0.6rem 0 0 1.4rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .link-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      text-decoration: none;
      color: var(--text-soft);
      transition: color 0.15s, text-shadow 0.15s, transform 0.15s;
      padding: 5px 0;
    }

    .link-item:hover {
      color: var(--text);
      text-shadow: 0 0 8px var(--glow);
      transform: translateX(2px);
    }

    .link-item:hover .link-arrow { color: var(--accent); }

    .link-icon {
      width: 16px;
      text-align: center;
      color: var(--text);
      opacity: 0.38;
      flex-shrink: 0;
      transition: opacity .15s ease;
    }
    .link-item:hover .link-icon { opacity: 0.75; }

    .link-label { color: var(--text-soft); min-width: 160px; }
    .link-url { color: var(--text-muted); font-size: 0.78rem; }
    .link-arrow { color: var(--text-dim); margin-left: auto; }

    .cursor {
      display: inline-block;
      width: 8px;
      height: 1em;
      background: var(--text);
      vertical-align: middle;
      margin-left: 4px;
      box-shadow: 0 0 6px var(--glow);
      animation: blink 1.1s step-end infinite;
    }

    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

    .statusbar {
      background: var(--panel);
      border-top: 1px solid var(--border);
      padding: 7px 14px;
      display: flex;
      align-items: center;
      font-size: 0.68rem;
      color: var(--text-muted);
      letter-spacing: 1.2px;
      text-transform: uppercase;
      gap: 6px;
    }
    
    .statusbar > * { flex: 1; min-width: 0; }
    .statusbar-copy {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      white-space: nowrap;
    }
    #clock { text-align: right; white-space: nowrap; }
    .statusbar-email {
      color: var(--text-muted);
      opacity: 0.45;
      text-decoration: none;
      transition: opacity .15s;
      display: flex;
      align-items: center;
    }
    .statusbar-email:hover { opacity: 0.85; }
    .statusbar-link {
      color: var(--text-muted);
      text-decoration: none;
      transition: color .15s;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }
    .statusbar-link:hover { color: var(--text-soft); }
    .status-ok { color: var(--text-dim); }
    .status-warn { color: var(--accent-2); }

    .boot-line {
      opacity: 0;
      animation: appear 0.1s ease forwards;
    }

    .boot-line:nth-child(1) { animation-delay: 0.1s; }
    .boot-line:nth-child(2) { animation-delay: 0.3s; }
    .boot-line:nth-child(3) { animation-delay: 0.55s; }
    .boot-line:nth-child(4) { animation-delay: 0.75s; }
    .boot-line:nth-child(5) { animation-delay: 1.0s; }
    .boot-line:nth-child(6) { animation-delay: 1.2s; }
    .boot-line:nth-child(7) { animation-delay: 1.45s; }
    .boot-line:nth-child(8) { animation-delay: 1.65s; }
    .boot-line:nth-child(9) { animation-delay: 1.85s; }
    .boot-line:nth-child(10) { animation-delay: 2.1s; }
    .boot-line:nth-child(11) { animation-delay: 2.3s; }
    .boot-line:nth-child(12) { animation-delay: 2.5s; }
    .boot-line:nth-child(13) { animation-delay: 2.7s; }
    .boot-line:nth-child(14) { animation-delay: 2.9s; }
    .boot-line:nth-child(15) { animation-delay: 3.1s; }
    .boot-line:nth-child(16) { animation-delay: 3.3s; }
    .boot-line:nth-child(17) { animation-delay: 3.5s; }
    .boot-line:nth-child(18) { animation-delay: 3.7s; }
    .boot-line:nth-child(19) { animation-delay: 3.9s; }
    .boot-line:nth-child(20) { animation-delay: 4.1s; }
    .boot-line:nth-child(21) { animation-delay: 4.3s; }
    .boot-line:nth-child(22) { animation-delay: 4.5s; }

    @keyframes appear { to { opacity: 1; } }

    .releases-grid {
      margin: 0.6rem 0 0 1.4rem;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .release-card {
      border: 1px solid var(--border);
      border-left: 3px solid var(--text-dim);
      padding: 0.55rem 0.85rem;
      background: color-mix(in srgb, var(--accent) 4%, transparent);
      transition: border-color 0.15s, background 0.15s, box-shadow 0.15s, transform 0.15s;
      text-decoration: none;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 6px;
      border-radius: 8px;
      position: relative;
    }

    .release-card.has-domain {
      padding-bottom: 0.55rem;
    }

    .rel-card-footer {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 10px;
      margin-top: 2px;
      min-width: 0;
    }

    .rel-card-footer .rel-platforms {
      margin-top: 0;
      min-width: 0;
      overflow: visible;
      flex-wrap: wrap;
    }

    .rel-domain {
      margin-left: auto;
      font-size: 0.7rem;
      letter-spacing: 0.04em;
      color: var(--accent);
      opacity: 0.72;
      text-decoration: none;
      pointer-events: none;
      white-space: nowrap;
      flex: 0 0 auto;
    }

    .release-card:hover {
      border-left-color: var(--accent);
      background: color-mix(in srgb, var(--accent) 8%, transparent);
      box-shadow: 0 0 12px color-mix(in srgb, var(--accent) 15%, transparent);
      transform: translateY(-1px);
    }

    .release-card:hover .rel-name { color: var(--accent); text-shadow: 0 0 8px color-mix(in srgb, var(--accent) 40%, transparent); }

    .rel-row1 {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 8px 10px;
      margin-bottom: 0;
      min-width: 0;
    }

    .rel-badge {
      font-size: 0.6rem;
      padding: 1px 6px;
      border: 1px solid currentColor;
      border-radius: 2px;
      letter-spacing: 1px;
      text-transform: uppercase;
      flex-shrink: 0;
    }

    .rel-badge.gh  { color: var(--text-dim); }
    .rel-badge.ext { color: var(--accent-2); }
    .rel-badge.game { color: var(--accent); }
    .rel-badge.pre { color: var(--danger); }

    .rel-name {
      color: var(--text);
      font-size: 0.90rem;
      transition: color 0.15s;
      min-width: 0;
    }

    .rel-ver {
      font-size: 0.7rem;
      color: var(--accent-2);
      flex-shrink: 0;
    }

    .rel-row2 {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 8px 14px;
      min-width: 0;
    }

    .rel-desc {
      font-size: 0.78rem;
      color: var(--text-soft);
      min-width: 0;
    }

    .rel-app-icon {
      width: 58px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: color-mix(in srgb, var(--accent) 7%, transparent);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 0 14px color-mix(in srgb, var(--accent) 10%, transparent);
      justify-self: end;
    }

    .rel-app-icon img {
      width: 42px;
      height: 42px;
      object-fit: contain;
      filter: drop-shadow(0 0 7px color-mix(in srgb, var(--accent) 28%, transparent));
    }


    
    .bio-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 20px;
      margin: 12px 0 4px 1.4rem;
      align-items: flex-start;
    }
    .bio-stack-group {
      display: flex;
      flex: 1 1 210px;
      min-width: 0;
      flex-direction: column;
      gap: 7px;
    }
    .bio-stack-label {
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      opacity: 0.6;
    }
    .bio-stack-icons {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(52px, 1fr));
      gap: 10px 12px;
      align-items: end;
      width: 100%;
      max-width: 100%;
      min-width: 0;
    }
    .bio-stack-divider {
      width: 1px;
      align-self: stretch;
      background: var(--border);
      opacity: 0.5;
      margin: 0 2px;
      flex-shrink: 0;
    }
    .bio-stack-icon {
      display: flex;
      min-width: 0;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      opacity: 0.4;
      transition: opacity .2s ease;
      cursor: default;
    }
    .bio-stack-icon:hover { opacity: 0.85; }
    .bio-stack-icon svg {
      width: 20px;
      height: 20px;
      color: var(--text);
    }
    .bio-stack-icon span {
      font-size: 0.58rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text-muted);
      white-space: nowrap;
    }
    
    .rel-platforms {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      margin-top: 2px;
      min-width: 0;
      max-width: 100%;
    }
    .rel-chip {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 2px 7px 2px 5px;
      border-radius: 5px;
      border: 1px solid color-mix(in srgb, var(--border) 80%, var(--text) 20%);
      background: color-mix(in srgb, var(--accent) 7%, transparent);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--text-soft);
      white-space: nowrap;
      min-width: 0;
    }
    .rel-chip svg { width: 11px; height: 11px; flex-shrink: 0; }

    
    .section-label {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin: 0.6rem 0 0.5rem 1.4rem;
    }

    .releases-grid > .section-label {
      margin-left: 0;
    }

    
    .chat-stack {
      position: fixed;
      bottom: 28px;
      right: 28px;
      display: flex;
      flex-direction: column-reverse;
      gap: 8px;
      align-items: flex-end;
      z-index: 9999;
      pointer-events: none;
    }
    .chat-bubble {
      max-width: 260px;
      width: max-content;
      background: var(--panel-top);
      border: 1px solid var(--border);
      border-radius: 14px 14px 2px 14px;
      padding: 10px 32px 10px 14px;
      font-family: inherit;
      font-size: 0.90rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.35);
      display: flex;
      flex-direction: column;
      gap: 6px;
      position: relative;
      opacity: 0;
      transform: translateY(8px) scale(0.96);
      transition: opacity 0.22s ease, transform 0.22s ease;
      pointer-events: none;
    }
    .chat-bubble.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .chat-bubble-header {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.66rem;
      color: var(--text-muted);
      letter-spacing: 0.06em;
    }
    .chat-bubble-avatar {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      flex-shrink: 0;
    }
    .chat-bubble-text {
      color: var(--text);
      line-height: 1.45;
    }
    .bubble-link {
      color: var(--accent);
      text-decoration: none;
      transition: opacity .15s;
    }
    .bubble-link:hover { opacity: 0.75; }
    .chat-bubble-close {
      position: absolute;
      top: 7px;
      right: 8px;
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 0.7rem;
      cursor: pointer;
      padding: 2px 4px;
      line-height: 1;
      opacity: 0.4;
      transition: opacity .15s;
    }
    .chat-bubble-close:hover { opacity: 1; }


    
    /* Theme: Terminal overrides - coordinates with the Terminal button. */
    :root:not([data-theme]) .bio-stack-label,
    :root:not([data-theme]) .link-url,
    :root:not([data-theme]) .section-label,
    :root:not([data-theme]) .statusbar,
    :root:not([data-theme]) .statusbar-link,
    :root:not([data-theme]) .statusbar-email,
    :root:not([data-theme]) .titlebar-label,
    :root:not([data-theme]) .theme-label {
      color: var(--text-muted);
      opacity: 0.92;
    }

    :root:not([data-theme]) .bio-stack-icon { opacity: 0.62; }
    :root:not([data-theme]) .bio-stack-icon:hover { opacity: 0.95; }
    :root:not([data-theme]) .link-icon { opacity: 0.62; }
    :root:not([data-theme]) .link-item:hover .link-icon { opacity: 0.95; }

    @media (max-width: 700px) {
      .titlebar-label { order: 2; text-align: left; width: 100%; }
      .theme-picker { order: 3; margin-left: 0; max-width: 100%; }
    }

    @media (max-width: 500px) {
      .term-body          { padding: 0.8rem 0.9rem 1.2rem; }
      .logo-row           { align-items: flex-start; }
      .logo-text h1       { font-size: 2.0rem; }
      .link-url           { display: none; }
      .link-label         { min-width: unset; }
      .statusbar          { justify-content: flex-start; }
      
      .output-block       { padding-left: 0.6rem; padding-right: 0.6rem; }
      .releases-grid      { margin-left: 0.4rem; grid-template-columns: 1fr; }
      .section-label      { margin-left: 0.4rem; }
      .bio-stack          { margin-left: 0.4rem; }
      .rel-row1           { grid-template-columns: auto minmax(0, 1fr); gap: 6px 8px; }
      .rel-name           { grid-column: 1 / -1; font-size: 0.84rem; }
      .rel-ver            { font-size: 0.72rem; justify-self: start; }
      .rel-row2           { grid-template-columns: 1fr; }
      .rel-desc           { font-size: 0.74rem; }
      .rel-app-icon       { justify-self: start; width: 52px; height: 52px; }
      .rel-app-icon img   { width: 38px; height: 38px; }
      .rel-card-footer    { grid-template-columns: 1fr; gap: 7px; }
      .rel-card-footer .rel-platforms { overflow: visible; }
      .rel-platforms      {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
        width: 100%;
      }
      .rel-chip           { justify-content: center; font-size: 0.62rem; padding: 2px 5px 2px 4px; }
      .rel-domain         { margin-left: 0; font-size: 0.62rem; white-space: normal; justify-self: start; }
      .bio-stack          { gap: 10px 12px; }
      .bio-stack-icons    { grid-template-columns: repeat(auto-fit, minmax(44px, 1fr)); }
      .bio-stack-divider  {
        width: 100%;
        height: 1px;
        align-self: auto;
        margin: 2px 0;
      }
    }
.svg-sprite { display: none; }
.statusbar-email-icon { width: 13px; height: 13px; }

