/*
 * Aurora X Highlight.js Theme (Dark/Black Background)
 * Dark aesthetic, blue-violet accents, aurora glow
 */

 .hljs {
  font-size: medium;
  display: block;
  overflow-x: auto;
  background: #0c0c0c;        /* Almost pure black */
  color: #EEFFFF;             /* Light text for high contrast */
  padding: 1em;
  border-radius: 0.5rem;
  font-family: 'Fira Code', monospace;
  line-height: 1.5;
}

/* Comments & Quotes */
.hljs-comment,
.hljs-quote {
  color: #546E7A;             /* muted cyan-gray */
  font-style: italic;
}

/* Keywords, Storage, Control */
.hljs-keyword,
.hljs-selector-tag,
.hljs-type,
.hljs-built_in {
  color: #C792EA;             /* purple */
  text-shadow: 0 0 6px rgba(199, 146, 234, 0.25); /* subtle glow */
}

/* Numbers, constants, literals */
.hljs-number,
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-variable.constant_ {
  color: #F78C6C;             /* orange */
  text-shadow: 0 0 4px rgba(247, 140, 108, 0.2);
}

/* Strings & template variables */
.hljs-string,
.hljs-template-tag,
.hljs-template-variable {
  color: #C3E88D;             /* green */
  text-shadow: 0 0 4px rgba(195, 232, 141, 0.2);
}

/* Functions, methods, titles */
.hljs-title,
.hljs-title.function_,
.hljs-function .hljs-title {
  color: #82AAFF;             /* blue */
  text-shadow: 0 0 6px rgba(130, 170, 255, 0.3);
}

/* Classes, types, support */
.hljs-class,
.hljs-meta .hljs-class,
.hljs-type-name,
.hljs-built_in.class_ {
  color: #FFCB6B;             /* gold */
}

/* Tags, operators, punctuation */
.hljs-tag,
.hljs-name,
.hljs-attr,
.hljs-attribute,
.hljs-operator,
.hljs-punctuation {
  color: #89DDFF;             /* cyan */
}

/* HTML/XML tag names */
.hljs-tag .hljs-name {
  color: #F07178;             /* pink/red */
}

/* Meta info & annotations */
.hljs-meta,
.hljs-meta .hljs-keyword {
  color: #C792EA;             /* purple */
}

/* Diff add/delete */
.hljs-addition {
  color: #C3E88D;
  background-color: rgba(100, 211, 137, 0.15);
}

.hljs-deletion {
  color: #FF5370;
  background-color: rgba(221, 80, 116, 0.15);
}

/* Emphasis & Strong */
.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

/* Links */
.hljs-link {
  color: #82AAFF;
  text-decoration: underline;
}

/* Optional line number or background contrast */
.hljs-ln-code,
pre code.hljs {
  background-color: #0c0c0c;  /* Keep fully black for consistency */
}
