/* grndtech — Dark Syntax Highlighting Theme
   Matches the Media page dark palette (#0C0C0C background)
   For use with highlight.js */

.hljs {
  background: #161616;
  color: #ccc;
  padding: 20px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 13px;
  line-height: 1.6;
  overflow-x: auto;
}

/* Comments */
.hljs-comment,
.hljs-quote {
  color: #555;
  font-style: italic;
}

/* Keywords & built-ins */
.hljs-keyword,
.hljs-selector-tag,
.hljs-type {
  color: #DC2F5A; /* crimson */
}

.hljs-built_in,
.hljs-literal,
.hljs-bullet {
  color: #6BA3B5; /* teal */
}

/* Strings */
.hljs-string,
.hljs-template-variable,
.hljs-addition {
  color: #F27062; /* coral */
}

/* Numbers */
.hljs-number {
  color: #B5D2DC; /* ice blue */
}

/* Functions & titles */
.hljs-title,
.hljs-section,
.hljs-name {
  color: #eee;
  font-weight: 600;
}

.hljs-title.function_ {
  color: #eee;
}

/* Variables, attributes */
.hljs-variable,
.hljs-attr,
.hljs-selector-class,
.hljs-selector-id {
  color: #9B7D95; /* mauve */
}

/* Tags & symbols */
.hljs-tag,
.hljs-symbol {
  color: #888;
}

/* Meta, preprocessor */
.hljs-meta,
.hljs-meta .hljs-keyword {
  color: #666;
}

/* Deletions */
.hljs-deletion {
  color: #DC2F5A;
  background: rgba(220,47,90,0.1);
}

/* Additions */
.hljs-addition {
  background: rgba(242,112,98,0.08);
}

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

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

/* Params, regexp */
.hljs-params {
  color: #999;
}

.hljs-regexp {
  color: #F27062;
}

/* Links inside code */
.hljs-link {
  color: #6BA3B5;
  text-decoration: underline;
}

/* Line numbers gutter (if enabled) */
.hljs-ln-numbers {
  color: #333;
  padding-right: 16px;
  user-select: none;
}
