/* CSS Variables */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #121212;
  --bg-surface: #1a1a1a;
  --text-primary: #f5f5f5;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --accent: #f59e0b;
  --accent-soft: #fbbf24;
  --accent-muted: #d97706;
  --border: #2a2a2a;
  --card-bg: rgba(255, 255, 255, 0.03);
  --nav-height: 64px;
  --container-max: 1100px;
  --transition-smooth: 0.3s ease;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', Consolas, monospace;
  --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--accent-soft);
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: transform var(--transition-smooth);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar.visible {
  transform: translateY(0);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Home page - flex column so footer stays in view */
body.home-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 2rem;
  position: relative;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  animation: fadeInUp 0.6s ease-out;
}

.hero-handle {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.6s ease-out 0.05s both;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* Hero */
.name-handle {
  font-family: var(--font-mono);
  font-size: 0.6em;
  color: var(--accent);
  font-weight: 400;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.terminal-cursor {
  display: inline-block;
  width: 0.5em;
  height: 1em;
  background: var(--accent);
  margin-left: 2px;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition-smooth);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: var(--bg-primary);
}

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

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Page content wrapper */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
}

/* Sections */
section {
  padding: 4rem 0;
}

.about-section,
.posts-section,
.contact-section {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  min-height: 100vh;
}

/* Card */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all var(--transition-smooth);
}

.card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

/* Skills */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.skill-category {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  min-width: 200px;
}

.skill-category h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  font-size: 0.8125rem;
  padding: 0.25rem 0.625rem;
  background: var(--bg-surface);
  border-radius: 4px;
  color: var(--text-secondary);
}

/* Interests */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.interest-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
}

.interest-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

/* Projects */
.projects-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.project-item:hover {
  border-color: var(--accent);
}

.project-name {
  font-weight: 600;
  color: var(--text-primary);
}

.project-tech {
  font-size: 0.75rem;
  color: var(--accent);
}

.project-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.github-cta {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  background: var(--card-bg);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.github-cta h3 {
  margin-bottom: 0.5rem;
}

.github-cta p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* YouTube fallback embed */
.youtube-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}

.youtube-fallback-msg {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.youtube-fallback-embed {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
}

.youtube-fallback-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Posts Grid */
.posts-grid,
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.post-card,
.video-card {
  text-decoration: none;
  display: block;
}

.post-card .card,
.video-card .card {
  height: 100%;
}

.post-title,
.video-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.post-date,
.video-date {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.75rem;
}

.post-excerpt {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: var(--bg-surface);
  border-radius: 4px;
  color: var(--text-muted);
}

/* Video */
.video-thumbnail {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--bg-surface);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Coming Soon */
.coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.coming-soon h2 {
  margin-bottom: 0.5rem;
}

/* Search */
.search-input {
  width: 100%;
  max-width: 400px;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  margin-bottom: 2rem;
  transition: border-color var(--transition-smooth);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
}

.search-input::placeholder {
  color: var(--text-muted);
}

/* Contact */
.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.contact-method:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact-method svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-method span:first-of-type {
  font-weight: 600;
  color: var(--text-primary);
}

.contact-method-detail {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-btn svg {
  flex-shrink: 0;
}

/* Footer */
.footer {
  margin-top: auto;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

.footer-copy {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.page-load-time {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Game of Life Canvas */
.game-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Back link */
.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

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

/* Posts Header */
.posts-header {
  text-align: center;
  margin-bottom: 3rem;
}

.posts-header h1 {
  margin-bottom: 0.5rem;
}

/* Legal pages */
.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.legal-content p {
  margin-bottom: 1rem;
}

/* Section titles */
.section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* About intro */
.about-intro {
  margin-bottom: 3rem;
}

.about-intro p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-intro h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

/* Reading Progress - Top Bar */
.reading-progress-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1001;
  pointer-events: none;
}

.reading-progress-top-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft), var(--accent));
  width: 0%;
  transition: width 100ms ease-out;
}

/* Reading Progress - Ring (Desktop) */
.reading-progress-ring {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 997;
  display: none;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .reading-progress-ring {
    display: flex;
  }
}

.reading-progress-ring-circle {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.reading-progress-ring-circle svg {
  width: 48px;
  height: 48px;
  transform: rotate(-90deg);
}

.reading-progress-ring svg {
  width: 48px;
  height: 48px;
  transform: rotate(-90deg);
}

.reading-progress-ring circle {
  fill: none;
  stroke-width: 2;
}

.reading-progress-ring .track {
  stroke: rgba(255, 255, 255, 0.1);
}

.reading-progress-ring .progress {
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-dasharray: 125.66;
  stroke-dashoffset: 125.66;
  transition: stroke-dashoffset 100ms ease-out;
}

.reading-progress-ring-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-muted);
  line-height: 1;
  pointer-events: none;
}

.reading-progress-ring-decoration {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.5rem;
}

.reading-progress-ring-line {
  width: 1px;
  height: 16px;
  background: linear-gradient(to bottom, rgba(245, 158, 11, 0.3), transparent);
}

.reading-progress-ring-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.reading-progress-ring-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}

.reading-progress-ring-dots span:first-child {
  opacity: 0.8;
}

/* Reading Progress - Mobile */
.reading-progress-mobile {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 997;
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

@media (max-width: 1023px) {
  .reading-progress-mobile {
    display: flex;
  }
}

.reading-progress-mobile-bar {
  width: 48px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.reading-progress-mobile-bar-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 100ms ease-out;
}

.reading-progress-mobile-value {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-muted);
  min-width: 2ch;
}

/* AI Roast Widget — appears above reading progress ring, triggered by idle or text selection */
.ai-roast-widget {
  position: fixed;
  bottom: calc(50% + 56px);
  right: 1.5rem;
  width: 300px;
  z-index: 998;
  opacity: 0;
  transform: translateY(0.75rem);
  transition:
    opacity 400ms ease-out,
    transform 400ms ease-out;
  pointer-events: none;
}

.ai-roast-widget.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ai-roast-card {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.ai-roast-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-roast-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.ai-roast-indicator.streaming {
  animation: pulse 1s ease-in-out infinite;
}

.ai-roast-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  flex: 1;
}

.ai-roast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.25rem;
  border-radius: 3px;
  transition: color 150ms ease;
}

.ai-roast-close:hover {
  color: var(--text-primary);
}

.ai-roast-body {
  padding: 1rem 0.875rem;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-primary);
  min-height: 56px;
}

.ai-roast-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}

.ai-roast-loading-dots {
  display: flex;
  gap: 0.3rem;
}

.ai-roast-loading-dots span {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

.ai-roast-loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.ai-roast-loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Copy Button on Code Blocks */
pre {
  position: relative;
}

.copy-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.375rem 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
  cursor: pointer;
  opacity: 0;
  transition: all 200ms ease;
}

pre:hover .copy-button {
  opacity: 1;
}

.copy-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.copy-button.copied {
  border-color: #22c55e;
  color: #22c55e;
}

/* Latest Content Section */
.latest-content {
  margin-top: 3rem;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.latest-content-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.view-all-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.view-all-link:hover {
  color: var(--accent);
}

/* Latest Video */
.latest-video-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.latest-video .video-card {
  max-width: 400px;
}

/* Latest Video Section */
.latest-video {
  margin-top: 2rem;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* Post Navigation */
.post-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.post-nav a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 45%;
}

.post-nav a:hover {
  color: var(--accent);
}

/* Highlight.js Theme Overrides */
.hljs {
  background: var(--bg-secondary) !important;
  color: var(--text-primary);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-section,
.hljs-link {
  color: var(--accent);
}

.hljs-string,
.hljs-title,
.hljs-name,
.hljs-type,
.hljs-attribute,
.hljs-symbol,
.hljs-bullet,
.hljs-addition,
.hljs-variable,
.hljs-template-tag,
.hljs-template-variable {
  color: #22c55e;
}

.hljs-comment,
.hljs-quote,
.hljs-deletion,
.hljs-meta {
  color: var(--text-muted);
}

.hljs-number,
.hljs-regexp,
.hljs-literal,
.hljs-params {
  color: #f472b6;
}
