/* =====================================================================
   Portfolio — Abhirup Chatterjee
   Terminal aesthetic · monospace · amber/green on warm black
   Zero build, single stylesheet.
   ===================================================================== */

:root {
  /* Surface */
  --bg:          #0B0C0A;
  --surface:     #121411;
  --surface-2:   #161916;
  --border:      #1E221D;
  --border-hi:   #2A2E27;

  /* Ink */
  --text:        #D8D4C7;
  --text-hi:     #EDE9DB;
  --muted:       #8E9184;
  --dim:         #6B6F65;

  /* Accent */
  --amber:       #F5A524;
  --amber-hi:    #FBBF50;
  --green:       #7EE787;
  --cyan:        #56D4DD;
  --rose:        #F8958F;
  --violet:      #B5A1FF;

  /* Type */
  --font-mono:   "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, "Roboto Mono", monospace;
  --font-body:   "IBM Plex Mono", "JetBrains Mono", ui-monospace, monospace;

  /* Rhythm */
  --radius:      4px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px),
    radial-gradient(900px 600px at 85% -10%, rgba(245,165,36,.05), transparent 60%),
    radial-gradient(1000px 500px at -10% 110%, rgba(181,161,255,.04), transparent 55%),
    var(--bg);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  background-position: -1px -1px, -1px -1px, 0 0, 0 0, 0 0;
  min-height: 100vh;
  position: relative;
}

a { color: var(--text); text-decoration: none; transition: color .15s; }
a:hover { color: var(--amber-hi); }

::selection { background: rgba(245,165,36,.35); color: var(--text-hi); }

/* =====================================================================
   Layout container
   ===================================================================== */

.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 32px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.container-narrow {
  max-width: 780px;
  padding: 0 32px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* =====================================================================
   Nav — CLI style
   ===================================================================== */

.nav {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: rgba(11,12,10,.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: .01em;
}
.brand::before {
  content: "$ ";
  color: var(--dim);
  font-weight: 400;
}
.brand-mark {
  display: none; /* legacy, hide in terminal style */
}
.brand-sub {
  color: var(--dim);
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  color: var(--muted);
  padding: 4px 10px;
}
.nav-links a.active {
  color: var(--text-hi);
}
.nav-links a.active::before { content: "[ "; color: var(--dim); }
.nav-links a.active::after  { content: " ]"; color: var(--dim); }
.nav-links a:hover { color: var(--amber-hi); }

@media (max-width: 640px) {
  .nav-hide-sm { display: none; }
}

/* =====================================================================
   Section label — ASCII rule
   ===================================================================== */

.sec-label {
  margin: 56px 0 20px;
  font-size: 11px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: .2em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-label::before { content: "┌─"; color: var(--border-hi); }
.sec-label::after  { content: ""; flex: 1; border-bottom: 1px dashed var(--border-hi); }

/* =====================================================================
   Home hero
   ===================================================================== */

.hero {
  padding: 72px 0 32px;
}
.hero .ascii {
  color: var(--amber);
  font-size: 11px;
  line-height: 1.2;
  white-space: pre;
  opacity: .55;
  margin: 0 0 32px;
  font-family: var(--font-mono);
  overflow-x: auto;
}
.hero h1 {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4.8vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 22px;
  color: var(--text-hi);
  max-width: 860px;
}
.hero h1 .caret {
  color: var(--amber);
  animation: blink 1s infinite steps(2);
  font-weight: 400;
  margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }

.hero p, .hero-intro {
  max-width: 680px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 26px;
}
.hero .meta {
  color: var(--dim);
  font-size: 12px;
  border-top: 1px dashed var(--border-hi);
  padding-top: 16px;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero .meta b {
  color: var(--green);
  font-weight: 500;
}

/* =====================================================================
   Prototype index — terminal list
   ===================================================================== */

.gallery { display: block; }

.proto,
.proto-card {
  display: grid;
  grid-template-columns: 40px 180px 1fr 80px 70px;
  gap: 16px;
  padding: 20px 4px;
  border-bottom: 1px dashed var(--border-hi);
  align-items: baseline;
  text-decoration: none;
  color: inherit;
  transition: background .15s, padding-left .15s;
}
.proto:hover,
.proto-card:hover {
  background: rgba(245,165,36,.04);
  padding-left: 10px;
}
.proto:hover .name,
.proto-card:hover h3 { color: var(--amber-hi); }

.proto .idx       { color: var(--dim); font-size: 13px; font-family: var(--font-mono); }
.proto .cat       { color: var(--cyan); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.proto .name      { color: var(--text-hi); font-weight: 600; font-size: 16px; display: block; font-family: var(--font-mono); }
.proto .desc      { color: var(--muted); font-size: 13px; display: block; margin-top: 4px; font-weight: 400; }
.proto .year      { color: var(--dim); font-size: 12px; text-align: right; font-family: var(--font-mono); }
.proto .open      { color: var(--amber); font-size: 12px; text-align: right; white-space: nowrap; font-family: var(--font-mono); }
.proto .open::after { content: " ↗"; }

@media (max-width: 720px) {
  .proto {
    grid-template-columns: 36px 1fr auto;
    grid-template-areas:
      "idx cat  open"
      "idx main main"
      "idx year year";
    gap: 4px 12px;
  }
  .proto .idx { grid-area: idx; }
  .proto .cat { grid-area: cat; }
  .proto > span:nth-child(3) { grid-area: main; }
  .proto .year { grid-area: year; text-align: left; }
  .proto .open { grid-area: open; }
}

/* =====================================================================
   Project page — hero
   ===================================================================== */

.proj-hero {
  padding: 60px 0 32px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 22px;
  font-family: var(--font-mono);
}
.breadcrumb::before {
  content: "~/";
  color: var(--border-hi);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--amber-hi); }
.breadcrumb .sep {
  margin: 0 8px;
  color: var(--border-hi);
}

.kicker {
  color: var(--amber);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 14px;
  font-family: var(--font-mono);
}

.proj-hero h1,
.about-hero h1 {
  font-family: var(--font-mono);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 18px;
  color: var(--text-hi);
  max-width: 860px;
}

.deck {
  color: var(--muted);
  font-size: 16px;
  max-width: 680px;
  line-height: 1.6;
  margin: 0 0 12px;
}

/* =====================================================================
   Screenshot gallery — terminal window chrome
   ===================================================================== */

.gallery {
  margin: 36px 0 48px;
  display: grid;
  gap: 20px;
}

.shot {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.shot:hover {
  border-color: var(--amber);
}

.shot-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #0E100D;
  border-bottom: 1px solid var(--border-hi);
  font-family: var(--font-mono);
  font-size: 11px;
}
.shot-chrome::before {
  content: "● ● ●";
  color: var(--border-hi);
  letter-spacing: 3px;
  font-size: 9px;
}
.shot-chrome .url {
  color: var(--dim);
  flex: 1;
  text-align: center;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shot-chrome .tag {
  color: var(--cyan);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.shot-frame {
  display: block;
  position: relative;
  background: #000;
}
.shot-frame img {
  width: 100%;
  display: block;
  opacity: .96;
  transition: opacity .2s;
}
.shot:hover .shot-frame img { opacity: 1; }

.shot-caption {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.shot-caption::before {
  content: ">";
  color: var(--amber);
  font-weight: 700;
}

/* Primary hero shot — bigger, gets the launch pill */
.shot-main .shot-frame { min-height: 0; }
.shot-main .launch-pill {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 2;
}

/* Grid for additional shots (2-up default, flex to 1 on mobile) */
.shot-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.shot-strip.three { grid-template-columns: repeat(3, 1fr); }

/* Mobile-viewport projects — render phone-framed shots side-by-side */
.shot-phones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  gap: 20px;
  justify-content: center;
}
.shot-phones .shot {
  border-radius: 28px;
  background: #0B0C0A;
  padding: 12px 10px;
  border: 1px solid var(--border-hi);
}
.shot-phones .shot-chrome { display: none; }
.shot-phones .shot-frame { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); }
.shot-phones .shot-caption { border-top: none; justify-content: center; padding: 10px 4px 2px; }

@media (max-width: 720px) {
  .shot-strip, .shot-strip.three { grid-template-columns: 1fr; }
  .shot-phones { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}

/* Legacy .hero-visual — keep so old pages still render if any remain */
.hero-visual {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  padding: 44px 18px 18px;
  margin: 36px 0 48px;
  position: relative;
  border-radius: var(--radius);
}
.hero-visual::before {
  content: "● ● ●";
  position: absolute;
  top: 14px; left: 18px;
  color: var(--border-hi);
  font-size: 10px;
  letter-spacing: 4px;
}
.hero-visual img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.launch-pill {
  background: var(--amber);
  color: #1A1A10;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 11px;
  text-decoration: none;
  border: 1px solid var(--amber);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: background .15s, transform .15s;
  white-space: nowrap;
}
.launch-pill:hover {
  background: var(--amber-hi);
  transform: translateY(-1px);
}
.launch-pill span { margin-left: 6px; }

@media (max-width: 640px) {
  .shot-main .launch-pill {
    position: static;
    display: inline-block;
    margin: 14px;
  }
}

/* =====================================================================
   Spec rows — implemented as <details> for mobile collapsibility.
   Desktop (≥721px): always expanded, grid layout preserved.
   Mobile  (≤720px): stacked, tap the label to expand/collapse.
   ===================================================================== */

details.spec,
.spec {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px dashed var(--border-hi);
}
details.spec:first-of-type,
.spec:first-of-type { border-top: none; padding-top: 12px; }

/* Kill the native disclosure triangle so <summary> looks like the old .lbl */
details.spec > summary {
  list-style: none;
  outline: none;
}
details.spec > summary::-webkit-details-marker { display: none; }
details.spec > summary::marker { content: ""; }

.spec .lbl,
details.spec > summary.lbl {
  color: var(--green);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-family: var(--font-mono);
  padding-top: 4px;
}
.spec .lbl::before,
details.spec > summary.lbl::before {
  content: "# ";
  color: var(--dim);
}

.spec .body,
details.spec > .body {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
}
.spec .body p,
details.spec > .body p { margin: 0 0 12px; }
.spec .body p:last-child,
details.spec > .body p:last-child { margin: 0; }

/* DESKTOP — force body visible regardless of [open]; label is not clickable */
@media (min-width: 721px) {
  details.spec > .body { display: block !important; }
  details.spec > summary.lbl { cursor: default; }
}

/* MOBILE — stack, collapse by default, tap label to toggle */
@media (max-width: 720px) {
  details.spec,
  .spec { grid-template-columns: 1fr; gap: 10px; padding: 20px 0; }

  details.spec > summary.lbl {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  details.spec > summary.lbl::after {
    content: "[+]";
    color: var(--amber);
    font-size: 11px;
    letter-spacing: .1em;
    font-family: var(--font-mono);
    transition: transform .15s ease;
  }
  details.spec[open] > summary.lbl::after { content: "[−]"; }
  details.spec > .body { padding-top: 4px; }
}

/* =====================================================================
   Stack chips
   ===================================================================== */

.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stack-chip {
  font-size: 11px;
  padding: 5px 10px;
  border: 1px solid var(--border-hi);
  color: var(--muted);
  font-family: var(--font-mono);
  border-radius: var(--radius);
  background: var(--surface);
  letter-spacing: .02em;
}
.stack-chip.hl {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(245,165,36,.05);
}

/* =====================================================================
   Project nav — prev / next
   ===================================================================== */

.proj-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding-top: 28px;
}
.proj-nav-item {
  padding: 20px 22px;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .15s, background .15s;
  display: block;
}
.proj-nav-item:hover {
  border-color: var(--amber);
  background: rgba(245,165,36,.04);
}
.proj-nav-item .dir {
  display: block;
  color: var(--dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 6px;
  font-family: var(--font-mono);
}
.proj-nav-item .name {
  display: block;
  color: var(--amber);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
  font-family: var(--font-mono);
}
.proj-nav-item:hover .name { color: var(--amber-hi); }
.proj-nav-item.next { text-align: right; }
.proj-nav-item.placeholder {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 640px) {
  .proj-nav { grid-template-columns: 1fr; }
  .proj-nav-item.next { text-align: left; }
}

/* =====================================================================
   About page — prose
   ===================================================================== */

.about-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 680px;
}

.prose h2 {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin: 48px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border-hi);
}
.prose h2::before {
  content: "## ";
  color: var(--dim);
  font-weight: 400;
}

.prose p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 16px;
  max-width: 680px;
}
.prose a {
  color: var(--amber);
  border-bottom: 1px solid rgba(245,165,36,.25);
}
.prose a:hover {
  color: var(--amber-hi);
  border-bottom-color: var(--amber-hi);
}

.pull {
  border-left: 2px solid var(--amber);
  padding: 8px 0 8px 18px;
  margin: 24px 0;
  color: var(--text-hi);
  font-size: 15px;
  font-style: normal;
  font-family: var(--font-mono);
  background: rgba(245,165,36,.04);
}
.pull::before {
  content: "> ";
  color: var(--amber);
}

/* =====================================================================
   CTA band
   ===================================================================== */

.cta-band {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 56px 0 32px;
  position: relative;
}
.cta-band::before {
  content: "┌─";
  position: absolute;
  top: -10px;
  left: 18px;
  color: var(--border-hi);
  background: var(--bg);
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.cta-band h3 {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--text-hi);
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.cta-band p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  max-width: 520px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-mono);
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: #1A1A10;
  border-color: var(--amber);
}
.btn-primary:hover { background: var(--amber-hi); border-color: var(--amber-hi); color: #1A1A10; }
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--border-hi);
}
.btn-ghost:hover { color: var(--amber-hi); border-color: var(--amber-hi); }

@media (max-width: 640px) {
  .cta-band { grid-template-columns: 1fr; }
}

/* =====================================================================
   Footer
   ===================================================================== */

footer {
  border-top: 1px solid var(--border);
  margin-top: 80px;
  padding: 28px 0 40px;
  font-size: 12px;
  color: var(--dim);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
footer a { color: var(--muted); }
footer a:hover { color: var(--amber-hi); }

.sign {
  color: var(--amber);
  font-weight: 600;
  letter-spacing: .02em;
  font-size: 13px;
  font-family: var(--font-mono);
  text-transform: none;
}
.sign::before { content: "$ "; color: var(--dim); font-weight: 400; }
.muted  { color: var(--muted); }
.small  { font-size: 11px; }

footer .links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.center { text-align: center; }

/* =====================================================================
   Slideshow — spotlight pool + film strip
   ===================================================================== */

/* Amber spotlight + ring on the hero shot */
.shot-main {
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, .9),
    0 0 0 1px rgba(245, 165, 36, .22),
    0 0 80px -10px rgba(245, 165, 36, .35),
    0 0 180px -30px rgba(245, 165, 36, .32);
}

/* Stacked frames inside the slideshow hero — bulletproof version */
.shot-main.slideshow { position: relative; }
.shot-main.slideshow .shot-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 280px;
  overflow: hidden;
  background: #000;
}
.shot-main.slideshow .shot-frame > video,
.shot-main.slideshow .shot-frame > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease;
  display: block;
  margin: 0;
}
.shot-main.slideshow .shot-frame > video.on,
.shot-main.slideshow .shot-frame > img.on {
  opacity: 1;
  visibility: visible;
}

/* Responsive — taller frame on narrow screens so the UI stays readable */
@media (max-width: 720px) {
  .shot-main.slideshow .shot-frame {
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }
}

/* Strip in thumb mode — clickable, with active / dimmed states */
.shot-strip.thumbs {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.shot-strip.thumbs .shot {
  cursor: pointer;
  opacity: .45;
  filter: grayscale(.35);
  transition: opacity .3s ease, filter .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.shot-strip.thumbs .shot:hover {
  opacity: .85;
  filter: grayscale(0);
  border-color: var(--border-hi);
}
.shot-strip.thumbs .shot.active {
  opacity: 1;
  filter: none;
  border-color: var(--amber);
  box-shadow:
    0 0 0 1px var(--amber),
    0 12px 30px -10px rgba(0, 0, 0, .6),
    0 0 30px -6px rgba(245, 165, 36, .45);
}
.shot-strip.thumbs .shot-chrome {
  padding: 6px 10px;
  font-size: 10px;
}
.shot-strip.thumbs .shot-chrome::before {
  font-size: 7px;
  letter-spacing: 2px;
}
.shot-strip.thumbs .shot-frame {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.shot-strip.thumbs .shot-frame video,
.shot-strip.thumbs .shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shot-strip.thumbs .shot-caption {
  padding: 7px 10px;
  font-size: 10px;
  border-top: 1px solid var(--border);
}

/* Mobile — hide the thumb strip entirely. Hero auto-advances and a
   slide counter + tap-to-advance on the stage itself covers navigation.
   This kills the "endless scroll" where 3 full-width thumbs stacked. */
@media (max-width: 720px) {
  .shot-strip.thumbs { display: none; }
  .shot-main.slideshow { cursor: pointer; }
}

/* Slide counter — floats in the corner of the hero, always visible */
.slide-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(245, 165, 36, .9);
  background: rgba(11, 12, 10, .72);
  border: 1px solid rgba(245, 165, 36, .22);
  padding: 5px 9px;
  border-radius: 4px;
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

