/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
/* ============================================================
   chrisschumann.dev — shared stylesheet
   Font: Space Grotesk (loaded via Google Fonts in each HTML file)
   ============================================================ */

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

:focus-visible { outline: 3px solid #7AB800; outline-offset: 1px; }

:root {
  --clr-main-text:  #1C1C1C;
  --clr-main-bg: #eaefe0;
  --clr-main-borders: #1c1c1c;
  --clr-main-bg-alt:  #1C1C1C;
  --clr-main-text-alt: #F0EBE3;
  --clr-main-note: #333;
  --clr-main-highlight: #7AB800;
  --clr-main-subdued: #222;

  --clr-divider: #ccc;

  --clr-flash-error: #c0392b;
  --clr-flash-error-text: #fff;
}

html { font-size: 13px; }
body { font-family: 'Space Grotesk', sans-serif; background: var(--clr-main-bg); color: var(--clr-main-text); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ── NAVIGATION ─────────────────────────────────────────── */

.nav {
  background: var(--clr-main-bg-alt);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
#top, #about, #apps, #contact { scroll-margin-top: 80px; }
.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-main-bg);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.nav-logo span { color: var(--clr-main-highlight); }

.nav-right { display: flex; align-items: center; gap: 2rem; }

.nav-back {
  font-size: 12px;
  font-weight: 500;
  color: rgba(240,235,227,0.4);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(240,235,227,0.15);
  padding-right: 2rem;
}
.nav-back:hover { color: var(--clr-main-highlight); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(240,235,227,0.55);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--clr-main-highlight); }


/* ── HERO ───────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 3px solid var(--clr-main-borders);
}
.hero-left {
  padding: 2.5rem 2rem;
  border-right: 3px solid var(--clr-main-borders);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.hero-right {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hero — homepage variant (about text on right) */
.hero-right--about { padding: 2.5rem 2rem; }

/* Hero — dark screenshot panel (app pages) */
.hero-right--dark {
  background: var(--clr-main-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 0;
}

.app-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-main-highlight);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero-title--app { font-size: 56px; margin-bottom: 0.75rem; }
.hero-title--scanner { font-size: 52px; }
.hero-title span { color: var(--clr-main-highlight); }

.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--clr-main-subdued);
  max-width: 340px;
  margin-bottom: 1.5rem;
}

/* Screenshot placeholder (remove once real screenshots added) */
.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
}
.screenshot-placeholder svg { opacity: 0.3; }
.screenshot-placeholder-label {
  font-size: 11px;
  color: rgba(240,235,227,0.25);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 180px;
  line-height: 1.5;
}


/* ── PILLS & TAGS ───────────────────────────────────────── */

.pills { display: flex; flex-wrap: wrap; gap: 7px; }
.pill {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 11px;
  border: 2px solid var(--clr-main-borders);
  border-radius: 100px;
  color: var(--clr-main-text);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.pill--accent { background: var(--clr-main-highlight); border-color: var(--clr-main-highlight); }

.tech-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 0.875rem; }
.tech-pill {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 11px;
  border: 2px solid var(--clr-main-borders);
  border-radius: 100px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}


/* ── BUTTONS ────────────────────────────────────────────── */

.ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn {
  padding: 0.65rem 1.25rem;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border: 2px solid var(--clr-main-borders);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn--primary { background: var(--clr-main-bg-alt); color: var(--clr-main-bg); }
.btn--primary:hover { background: var(--clr-main-highlight); border-color: var(--clr-main-highlight); color: var(--clr-main-bg-alt); }
.btn--ghost { background: transparent; color: var(--clr-main-text); }
.btn--ghost:hover { border-color: var(--clr-main-highlight); color: var(--clr-main-highlight); }
.btn--hiviz { background: var(--clr-main-highlight); color: var(--clr-main-text); border-color: var(--clr-main-highlight); }
.btn--hiviz:hover { background: var(--clr-main-highlight-hover); border-color: var(--clr-main-highlight-hover); color: var(--clr-main-text-alt); }
.btn--full { width: 100%; text-align: center; display: block; }
.btn:focus-visible,
.social a:focus-visible,
.pill:focus-visible { outline: none; border-color: var(--clr-main-highlight); }
.btn-submit:focus-visible { outline: none; border-color: var(--clr-main-highlight); }
.app-card:focus-visible { outline: none; box-shadow: inset 0 0 0 3px var(--clr-main-highlight); }


/* ── SOCIAL LINKS (homepage) ────────────────────────────── */

.social { display: flex; gap: 0.75rem; }
.social a {
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  background: var(--clr-main-highlight);
  border: 2px solid var(--clr-main-borders);
  color: var(--clr-main-text);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.15s, border-color 0.15s;
}
.social a:hover { background: var(--clr-main-text); color: var(--clr-main-bg); }

.about-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.75rem;
}
.about-text { font-size: 15px; line-height: 1.75; color: #333; margin-bottom: 1.5rem; }


/* ── SECTION LABEL (shared) ─────────────────────────────── */

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1rem;
  display: block;
}


/* ── APPS GRID (homepage) ───────────────────────────────── */

.apps-section { border-bottom: 3px solid var(--clr-main-borders); }
.apps-header { padding: 1rem 2rem; border-bottom: 1px solid var(--clr-divider); }
.apps-grid { display: grid; grid-template-columns: 1fr 1fr; }

.app-card {
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: var(--clr-main-text);
  display: block;
  transition: background 0.15s;
}
.app-card { border-bottom: 1px solid var(--clr-divider); }
.app-card:last-child,
.app-card:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.app-card:nth-child(odd) { border-right: 1px solid var(--clr-divider); }
.app-card:hover .app-card__name { color: var(--clr-main-highlight); }

.app-card__num {
  font-size: 15px;
  font-weight: 900;
  color: var(--clr-main-highlight);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.app-card__name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  transition: color 0.15s;
}
.app-card__desc {
  font-size: 15px;
  color: var(--clr-main-subdued);
  line-height: 1.6;
  margin-bottom: 0.875rem;
}
.app-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-main-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--clr-main-highlight);
  padding-bottom: 1px;
  display: inline-block;
}


/* ── CONTACT FORM (homepage) ────────────────────────────── */

.contact-section { border-bottom: 3px solid var(--clr-main-borders); padding: 1.75rem 2rem; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.contact-note { font-size: 15px; color: var(--clr-main-note); line-height: 1.65; margin-top: 0.5rem; }

.form { display: flex; flex-direction: column; gap: 0.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }

.input {
  border: 2px solid var(--clr-main-borders);
  border-radius: 0;
  padding: 0.55rem 0.75rem;
  font-size: 15px;
  font-family: 'Space Grotesk', sans-serif;
  background: transparent;
  color: var(--clr-main-text);
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
}
.input:focus { border-color: var(--clr-main-highlight); }
.input::placeholder { color: #aaa; }
textarea.input { resize: vertical; min-height: 100px; }

.btn-submit {
  background: var(--clr-main-bg-alt);
  color: var(--clr-main-bg);
  border: 2px solid var(--clr-main-borders);
  padding: 0.65rem 1rem;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-submit:hover { background: var(--clr-main-highlight); border-color: var(--clr-main-highlight); color: var(--clr-main-text); }


/* ── HIGHLIGHT BAR (app pages) ──────────────────────────── */

.highlight {
  background-color: var(--clr-main-highlight);
  border-bottom: 3px solid var(--clr-main-borders);
  padding: 0.875rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.highlight__text { font-size: 15px; font-weight: 700; color: var(--clr-main-text); }
.highlight__text span { font-weight: 400; }


/* ── FEATURES GRID ──────────────────────────────────────── */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 3px solid var(--clr-main-borders);
}
.feature { padding: 1.5rem; border-right: 1px solid var(--clr-divider); }
.feature:last-child { border-right: none; }
.feature__icon { font-size: 22px; color: var(--clr-main-highlight); margin-bottom: 0.6rem; }
.feature__title { font-size: 15px; font-weight: 700; margin-bottom: 0.35rem; letter-spacing: -0.01em; }
.feature__desc { font-size: 13px; color: #666; line-height: 1.6; }


/* ── SCREENSHOTS STRIP ──────────────────────────────────── */

.screenshots { border-bottom: 3px solid var(--clr-main-borders); }
.screenshots__header { padding: 0.875rem 2rem; border-bottom: 1px solid var(--clr-divider); }
.screenshots__grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.screenshot-cell {
  background: var(--clr-main-bg-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-right: 1px solid var(--clr-main-borders);
  padding: 1rem;
}
.screenshot-cell:last-child { border-right: none; }
/* Aspect ratio differs per page — set on the element or a modifier class */
.screenshot-cell--landscape { aspect-ratio: 16/10; } /* kbc */
.screenshot-cell--portrait  { aspect-ratio: 9/16;  } /* mediascan */

.screenshot-cell__cap {
  font-size: 10px;
  color: rgba(240,235,227,0.25);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}


/* ── LOWER GRID (tech + links) ──────────────────────────── */

.lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 3px solid var(--clr-main-borders);
}
.lower__tech   { padding: 1.5rem 2rem; border-right: 3px solid var(--clr-main-borders); }
.lower__links  { padding: 1.5rem 2rem; }

.tech-note { font-size: 12px; color: var(--clr-main-note); line-height: 1.7; }
.tech-note strong { font-weight: 700; color: var(--clr-main-text); }

.link-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--clr-main-borders);
  text-decoration: none;
  color: var(--clr-main-text);
}
.link-item:last-child { border-bottom: none; padding-bottom: 0; }
.link-item:hover .link-item__label { color: var(--clr-main-highlight); }

.link-item__icon { font-size: 18px; color: #bbb; flex-shrink: 0; width: 24px; text-align: center; }
.link-item__label { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; display: block; }
.link-item__sub   { font-size: 13px; color: #999; display: block; margin-top: 0.1rem; }
.link-item__arrow { font-size: 14px; color: #ccc; margin-left: auto; }


/* ── ACCESS PANEL (kbc) ─────────────────────────────────── */

.access {
  background: var(--clr-main-bg-alt);
  color: var(--clr-main-text-alt);
  padding: 1.25rem 2rem;
  border-bottom: 3px solid var(--clr-main-highlight);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.access__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-main-highlight);
  margin-bottom: 0.5rem;
  display: block;
}
.access__text { font-size: 15px; color: rgba(240,235,227,0.6); line-height: 1.7; }
.access__text strong { color: var(--clr-main-bg); font-weight: 700; }
.access__actions { display: flex; flex-direction: column; gap: 0.6rem; }

.access-btn {
  background: var(--clr-main-highlight);
  color: var(--clr-main-text);
  border: 2px solid var(--clr-main-highlight);
  padding: 0.6rem 1rem;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: background 0.15s, border-color 0.15s;
}
.access-btn:hover { background: #8fd000; border-color: #8fd000; }
.access-btn--ghost {
  background: transparent;
  color: rgba(240,235,227,0.6);
  border-color: rgba(240,235,227,0.2);
}
.access-btn--ghost:hover { border-color: var(--clr-main-highlight); color: var(--clr-main-highlight); }


/* ── FLOW DIAGRAM (mediascan) ───────────────────────────── */

.flow { border-bottom: 3px solid var(--clr-main-borders); padding: 1.5rem 2rem; }
.flow__steps {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  align-items: center;
}
.flow__step { border: 2px solid var(--clr-main-borders); padding: 0.875rem 1rem; background: var(--clr-main-bg); }
.flow__step--accent { background: var(--clr-main-highlight); border-color: var(--clr-main-highlight); }
.flow__arrow { text-align: center; font-size: 16px; color: #999; font-weight: 700; }
.flow__title { font-size: 15px; font-weight: 700; margin-bottom: 0.2rem; letter-spacing: -0.01em; }
.flow__desc { font-size: 13px; color: #666; line-height: 1.5; }
.flow__step--accent .flow__desc { color: rgba(28,28,28,0.7); }


/* ── INSTALL STEPS (mediascan) ──────────────────────────── */

.install { border-bottom: 3px solid var(--clr-main-borders); display: grid; grid-template-columns: 1fr 2fr; }
.install__intro {
  padding: 1.75rem 2rem;
  border-right: 3px solid var(--clr-main-borders);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}
.install__steps { padding: 1.75rem 2rem; }
.install__note { font-size: 13px; color: #666; line-height: 1.65; margin-top: 0.5rem; }
.install__note strong { font-weight: 700; color: var(--clr-main-text); }
.install__readme {
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-main-text);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--clr-main-highlight);
  padding-bottom: 1px;
  display: inline-block;
}

.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--clr-divider);
  align-items: start;
}
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step__num {
  width: 28px;
  height: 28px;
  background: var(--clr-main-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-main-text);
  flex-shrink: 0;
  margin-top: 1px;
}
.step__title { font-size: 13px; font-weight: 700; margin-bottom: 0.2rem; letter-spacing: -0.01em; }
.step__desc { font-size: 11px; color: #666; line-height: 1.6; }


/* ── REQUIREMENTS PANEL (mediascan) ─────────────────────── */

.req {
  background: var(--clr-main-bg-alt);
  color: var(--clr-main-bg);
  padding: 1.25rem 2rem;
  border-bottom: 3px solid var(--clr-main-highlight);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.req__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-main-highlight);
  margin-bottom: 0.75rem;
  display: block;
}
.req__list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.req__list li {
  font-size: 12px;
  color: rgba(240,235,227,0.65);
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
}
.req__list li::before { content: '→'; color: var(--clr-main-highlight); flex-shrink: 0; }


/* ── FOOTER ─────────────────────────────────────────────── */

.footer {
  background: var(--clr-main-bg-alt);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__left {
  font-size: 13px;
  color: var(--clr-main-text-alt);
  letter-spacing: 0.04em;
}
.footer__right { display: flex; gap: 1.5rem; }
.footer__right a {
  font-size: 13px;
  color: var(--clr-main-text-alt);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer__right a:hover { color: var(--clr-main-highlight); }


/* ── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 900px) {
  .features { grid-template-columns: 1fr 1fr; }
  .screenshots__grid { grid-template-columns: 1fr 1fr; }
  .flow__steps { grid-template-columns: 1fr; gap: 4px; }
  .flow__arrow { transform: rotate(90deg); }
}

@media (max-width: 700px) {
  .hero,
  .apps-grid,
  .contact-inner,
  .lower,
  .access,
  .install,
  .req { grid-template-columns: 1fr; }

  .hero-left { border-right: none; border-bottom: 3px solid var(--clr-main-borders); }
  .app-card { border-right: none; }
  .app-card:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--clr-divider); }
  .install__intro { border-right: none; border-bottom: 3px solid var(--clr-main-borders); }
  .lower__tech { border-right: none; border-bottom: 3px solid var(--clr-main-borders); }

  .hero-title       { font-size: 44px; }
  .hero-title--app  { font-size: 36px; }

  .form-row { grid-template-columns: 1fr; }

  .nav { flex-wrap: wrap; gap: 0.75rem; }
  .nav-right { flex-wrap: wrap; }
}


/* ── FLASH BANNER ───────────────────────────────────────── */

.flash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 2rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.flash--notice { background: var(--clr-main-highlight); color: var(--clr-main-bg-alt); }
.flash--alert  { background: var(--clr-flash-error); color: var(--clr-flash-error-text); }
.flash-dismiss {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: inherit;
  opacity: 0.7;
  font-family: inherit;
}
.flash-dismiss:hover { opacity: 1; }


/* ── SUBMIT OVERLAY ─────────────────────────────────────── */

.submit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--clr-main-bg-alt);
  align-items: center;
  justify-content: center;
}
.submit-overlay.is-visible { display: flex; }
.submit-overlay-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-main-highlight);
  letter-spacing: -0.03em;
}


/* ── HONEYPOT ────────────────────────────────────────────── */

.form-honeypot { display: none; }

/* ── MISC ── */

.code {
  white-space: pre-wrap;
  font-family: 'Courier New', Courier, monospace;
}


/* ── SYNTAX HIGHLIGHTING (Rouge / Monokai) ──────────────── */

.basic-source {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  line-height: 1.6;
  padding: 1.5rem 2rem;
  overflow-x: auto;
  white-space: pre;
}

.highlight table td { padding: 5px; }
.highlight table pre { margin: 0; }
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cpf { color: #75715e; font-style: italic; }
.highlight .cm { color: #75715e; font-style: italic; }
.highlight .c1 { color: #75715e; font-style: italic; }
.highlight .cp { color: #75715e; font-weight: bold; }
.highlight .cs { color: #75715e; font-weight: bold; font-style: italic; }
.highlight .err { color: #960050; background-color: #1e0010; }
.highlight .k, .highlight .kv { color: #66d9ef; font-weight: bold; }
.highlight .kc { color: #66d9ef; font-weight: bold; }
.highlight .kd { color: #66d9ef; font-weight: bold; }
.highlight .kp { color: #66d9ef; font-weight: bold; }
.highlight .kr { color: #66d9ef; font-weight: bold; }
.highlight .kt { color: #66d9ef; font-weight: bold; }
.highlight .kn { color: #f92672; font-weight: bold; }
.highlight .ow { color: #f92672; font-weight: bold; }
.highlight .o  { color: #f92672; font-weight: bold; }
.highlight .mf { color: #ae81ff; }
.highlight .mh { color: #ae81ff; }
.highlight .il { color: #ae81ff; }
.highlight .mi { color: #ae81ff; }
.highlight .mo { color: #ae81ff; }
.highlight .m, .highlight .mb, .highlight .mx { color: #ae81ff; }
.highlight .se { color: #ae81ff; }
.highlight .sa { color: #66d9ef; font-weight: bold; }
.highlight .sb { color: #e6db74; }
.highlight .sc { color: #e6db74; }
.highlight .sd { color: #e6db74; }
.highlight .s2 { color: #e6db74; }
.highlight .sh { color: #e6db74; }
.highlight .si { color: #e6db74; }
.highlight .sx { color: #e6db74; }
.highlight .sr { color: #e6db74; }
.highlight .s1 { color: #e6db74; }
.highlight .ss { color: #e6db74; }
.highlight .s, .highlight .dl { color: #e6db74; }
.highlight .na { color: #a6e22e; }
.highlight .nc { color: #a6e22e; font-weight: bold; }
.highlight .nd { color: #a6e22e; font-weight: bold; }
.highlight .ne { color: #a6e22e; font-weight: bold; }
.highlight .nf, .highlight .fm { color: #a6e22e; font-weight: bold; }
.highlight .no { color: #66d9ef; }
.highlight .bp { color: #f8f8f2; }
.highlight .nb { color: #f8f8f2; }
.highlight .ni { color: #f8f8f2; }
.highlight .nn { color: #f8f8f2; }
.highlight .nv, .highlight .vm { color: #f8f8f2; }
.highlight .w  { color: #f8f8f2; }
.highlight .nl { color: #f8f8f2; font-weight: bold; }
.highlight .nt { color: #f92672; }
/* .highlight { color: #f8f8f2; background-color: var(--clr-main-bg-alt); } */
