/* =========================================
   CVESearch — Main Stylesheet
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Dark theme (default) --- */
:root {
  --bg:           #09090f;
  --bg-surface:   #0f0f1a;
  --bg-elevated:  #141422;
  --border:       #1e1e30;
  --border-light: #2a2a40;

  --accent:       #00d4aa;
  --accent-dim:   rgba(0, 212, 170, 0.12);
  --accent-glow:  rgba(0, 212, 170, 0.3);
  --indigo:       #6366f1;
  --indigo-dim:   rgba(99, 102, 241, 0.12);
  --indigo-text:  #818cf8;

  --text:         #e2e8f0;
  --text-muted:   #64748b;
  --text-dim:     #94a3b8;

  --nav-scroll-bg:   rgba(9, 9, 15, 0.88);
  --nav-mobile-bg:   rgba(9, 9, 15, 0.97);
  --hero-glow:       rgba(0, 212, 170, 0.08);
  --hero-grid-color: rgba(0, 212, 170, 0.04);

  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;

  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
}

/* --- Light theme overrides --- */
html[data-theme="light"] {
  --bg:           #ffffff;
  --bg-surface:   #f8fafc;
  --bg-elevated:  #f1f5f9;
  --border:       #e2e8f0;
  --border-light: #cbd5e1;

  --accent:       #00977a;
  --accent-dim:   rgba(0, 151, 122, 0.10);
  --accent-glow:  rgba(0, 151, 122, 0.20);
  --indigo:       #4f46e5;
  --indigo-dim:   rgba(79, 70, 229, 0.10);
  --indigo-text:  #4f46e5;

  --text:         #0f172a;
  --text-muted:   #94a3b8;
  --text-dim:     #475569;

  --nav-scroll-bg:   rgba(255, 255, 255, 0.90);
  --nav-mobile-bg:   rgba(255, 255, 255, 0.98);
  --hero-glow:       rgba(0, 151, 122, 0.06);
  --hero-grid-color: rgba(0, 151, 122, 0.06);

  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
}

/* Override nav-links specificity for primary button — ensures white text in both themes */
.nav-links .btn-primary,
.nav-links .btn-primary:hover {
  color: #fff;
}

/* --- Theme toggle icons --- */
.icon-moon { display: block; }
.icon-sun  { display: none; }
html[data-theme="light"] .icon-moon { display: none; }
html[data-theme="light"] .icon-sun  { display: block; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.2s, color 0.2s;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--text);
}

/* --- Utility --- */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.inline-code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

html[data-theme="light"] .btn-primary {
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.1);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  background: var(--bg-elevated);
  color: var(--text);
  border-color: var(--border-light);
}

.btn-sm {
  font-size: 13px;
  padding: 7px 14px;
}

.btn-lg {
  font-size: 15px;
  padding: 13px 24px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: var(--nav-scroll-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
}

.logo-bracket {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
}

.nav-links a:hover {
  color: var(--text);
}

/* Right side of nav: theme toggle + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--text);
  background: var(--bg-elevated);
  border-color: var(--border-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dim);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-color) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--hero-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
}

.hero-title {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.stat-label {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* --- Demo Section --- */
.demo-section {
  padding: 96px 0;
  background: linear-gradient(180deg, transparent 0%, var(--accent-dim) 50%, transparent 100%);
}

.demo-section .section-sub {
  margin-bottom: 40px;
}

.terminal-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.terminal-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1px;
}

.terminal-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 9px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-btn.active {
  background: #0d1117;
  color: var(--accent);
  border-color: var(--border-light);
}

.tab-btn:hover:not(.active) {
  color: var(--text-dim);
}

/* Terminal always dark */
.terminal {
  background: #0d1117;
  border: 1px solid var(--border-light);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #161b22;
  border-bottom: 1px solid #30363d;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #8b949e;
  margin-left: 4px;
}

.terminal-body {
  padding: 20px 24px 28px;
  min-height: 300px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.6;
}

.terminal-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.prompt {
  color: var(--accent);
  font-weight: 700;
  user-select: none;
  flex-shrink: 0;
  margin-top: 1px;
}

.cmd {
  color: #e6edf3;
  white-space: pre-wrap;
  word-break: break-all;
}

.cursor {
  display: inline-block;
  color: var(--accent);
  animation: blink 1s step-end infinite;
  font-weight: 300;
}

.cursor.hidden { visibility: hidden; }

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.terminal-output {
  margin-top: 4px;
  white-space: pre;
  color: #8b949e;
  font-size: 12.5px;
  line-height: 1.55;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #30363d transparent;
}

.terminal-output::-webkit-scrollbar { height: 4px; }
.terminal-output::-webkit-scrollbar-track { background: transparent; }
.terminal-output::-webkit-scrollbar-thumb { background: #30363d; border-radius: 4px; }

.terminal-output .key              { color: #79c0ff; }
.terminal-output .str              { color: #a5d6ff; }
.terminal-output .num              { color: #f2cc60; }
.terminal-output .bool             { color: #ff7b72; }
.terminal-output .null             { color: #8b949e; }
.terminal-output .cve-id           { color: #00d4aa; font-weight: 600; }
.terminal-output .severity-critical{ color: #ff7b72; font-weight: 700; }
.terminal-output .severity-high    { color: #f2cc60; font-weight: 700; }

/* --- Features --- */
.features-section {
  padding: 96px 0;
}

.features-section .section-sub {
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* --- Code Section --- */
.code-section {
  padding: 96px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.code-section .section-sub {
  margin-bottom: 40px;
}

.code-tabs-wrapper {
  margin-bottom: 48px;
}

.code-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.code-tabs::-webkit-scrollbar { display: none; }

.code-tab-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Code blocks always dark */
.code-tab-btn.active {
  background: #0d1117;
  color: var(--accent);
  border-color: var(--border-light);
}

.code-tab-btn:hover:not(.active) {
  color: var(--text-dim);
}

.code-pane { display: none; }
.code-pane.active { display: block; }

.code-block {
  position: relative;
  background: #0d1117;
  border: 1px solid var(--border-light);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.code-block pre {
  padding: 28px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.7;
  scrollbar-width: thin;
  scrollbar-color: #30363d transparent;
}

.code-block pre::-webkit-scrollbar { height: 4px; }
.code-block pre::-webkit-scrollbar-thumb { background: #30363d; border-radius: 4px; }

.code-block code { color: #e6edf3; }

.code-block .kw  { color: #ff7b72; }
.code-block .str { color: #a5d6ff; }
.code-block .op  { color: #79c0ff; }

.copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: var(--radius);
  color: #8b949e;
  cursor: pointer;
  transition: all 0.15s;
}

.copy-btn:hover { color: #e6edf3; }
.copy-btn.copied { color: #00d4aa; border-color: rgba(0,212,170,0.4); }

/* --- API Reference --- */
.api-ref { margin-top: 16px; }

.api-ref-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.api-ref-table {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.api-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 16px;
  padding: 14px 20px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.api-row:last-child { border-bottom: none; }

.api-row-header {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--bg-elevated);
}

.api-row code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-dim);
}

.api-row span:last-child { color: var(--text-dim); }

.api-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--indigo-dim);
  color: var(--indigo-text);
  border: 1px solid rgba(99,102,241,0.2);
}

.api-endpoint {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
}

.method {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: 4px;
}

.api-endpoint code {
  font-family: var(--font-mono);
  color: var(--text-dim);
  font-size: 13px;
}

.api-auth {
  color: var(--text-muted);
  font-size: 13px;
  margin-left: auto;
}

.api-auth code {
  font-family: var(--font-mono);
  color: var(--text-dim);
}

/* --- CTA Section --- */
.cta-section { padding: 120px 0; }

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
}

.cta-hint a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-hint a:hover { color: var(--text); }

.coffee-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 32px;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s;
}

.coffee-link:hover {
  color: var(--text);
  border-color: var(--border-light);
  background: var(--bg-surface);
}

/* --- Footer --- */
.footer-left { flex: 1; }
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

/* =========================================
   Responsive
   ========================================= */

/* Tablet */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile nav + layout */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--nav-mobile-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
  }

  .nav-toggle { display: flex; }

  /* Sections */
  .hero          { padding: 120px 0 64px; }
  .demo-section  { padding: 64px 0; }
  .features-section { padding: 64px 0; }
  .code-section  { padding: 64px 0; }
  .cta-section   { padding: 80px 0; }

  .section-sub { margin-bottom: 40px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .features-section .section-sub { margin-bottom: 40px; }

  /* Terminal */
  .terminal-body {
    padding: 16px 16px 24px;
    font-size: 12px;
    min-height: 260px;
  }

  .terminal-output { font-size: 11px; }

  /* API ref table */
  .api-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 16px;
  }

  .api-row-header { display: none; }
  .api-auth { margin-left: 0; }

  .api-endpoint {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { gap: 16px; }

  /* Stats */
  .stat { padding: 0 20px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero { padding: 100px 0 56px; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn-lg {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider { width: 40px; height: 1px; }

  .section-sub { font-size: 15px; }

  .feature-card { padding: 20px; }

  .code-block pre { padding: 20px 16px; font-size: 12px; }

  .tab-btn { padding: 8px 12px; font-size: 11px; }
  .code-tab-btn { padding: 8px 12px; font-size: 11px; }

  .terminal-body { padding: 14px 14px 20px; font-size: 11.5px; }
}
