/* ==============================================================================
   SYNTAX HIGHLIGHTING STYLESHEET (CYBER THEME)
   ============================================================================== */

.syntax-code {
  font-family: var(--font-mono);
  color: #e2e8f0;
  line-height: 1.6;
}

.syntax-line {
  display: flex;
  min-height: 1.6em;
}

.syntax-line:hover {
  background: rgba(255, 255, 255, 0.04);
}

.syntax-num {
  user-select: none;
  width: 45px;
  text-align: right;
  padding-right: 18px;
  color: var(--text-muted);
  opacity: 0.5;
  font-size: 0.85rem;
}

.syntax-content {
  flex: 1;
  padding-left: 10px;
  white-space: pre-wrap;
  word-break: break-all;
}

/* Tokens */
.token-keyword { color: #f43f5e; font-weight: 600; }
.token-function { color: #00f2fe; font-weight: 600; }
.token-string { color: #00ff87; }
.token-number { color: #f59e0b; }
.token-comment { color: #64748b; font-style: italic; }
.token-variable { color: #a855f7; }
.token-operator { color: #ec4899; }
.token-tag { color: #38bdf8; }
.token-attr { color: #fbbf24; }
.token-boolean { color: #c084fc; font-weight: 600; }
.token-punctuation { color: #94a3b8; }
