/* ============================================================
   JACKIE CHANSEM — COMICNOMICS SITE STYLES
   Design system: aged ink-and-bamboo wuxia comic.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Bungee+Shade&family=Special+Elite&family=Work+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  /* ---- Palette ---- */
  --ink: #100c14;
  --ink-soft: #221a2b;
  --purple-deep: #3a1258;
  --purple: #6a2a9c;
  --purple-bright: #a855d6;
  --gold: #c9a24b;
  --gold-bright: #e8c877;
  --bamboo: #8a6a2f;
  --parchment: #efe4c8;
  --paper: #f6efdc;
  --paper-dark: #e8dcb8;
  --danger: #b23b3b;

  /* ---- Type ---- */
  --font-display: 'Bungee', system-ui, sans-serif;
  --font-display-2: 'Bungee Shade', system-ui, sans-serif;
  --font-caption: 'Special Elite', 'Courier New', monospace;
  --font-body: 'Work Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* ---- Misc ---- */
  --radius-panel: 4px;
  --ink-outline: 3px solid var(--ink);
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-hard-sm: 4px 4px 0 var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(16,12,20,0.05) 0, rgba(16,12,20,0.05) 1px, transparent 1px, transparent 6px);
  background-size: 6px 6px;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-deep);
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--ink);
  margin: 0.2em 0 0.4em;
  line-height: 1.1;
}

.section-title .accent { color: var(--purple); }

.section-lede {
  max-width: 62ch;
  font-size: 1.05rem;
  color: #3a3226;
}

section {
  padding: 5rem 1.5rem 5rem calc(1.5rem + var(--spine-w, 0px));
  position: relative;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
}

/* ============================================================
   SKIP LINK / FOCUS
   ============================================================ */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6em 1em;
  z-index: 999;
  font-family: var(--font-mono);
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 3px solid var(--purple-bright);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   SPINE NAV — vertical bamboo issue index (desktop)
   ============================================================ */
.spine-nav {
  --spine-w: 56px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--spine-w);
  background: linear-gradient(180deg, #4a3316, #2a1c0c 60%, #1c1208);
  border-right: 3px solid var(--ink);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.spine-nav .spine-logo {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.spine-nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.spine-nav a {
  writing-mode: vertical-rl;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--parchment);
  opacity: 0.75;
  padding: 0.3rem 0;
  border-left: 3px solid transparent;
  transition: opacity 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.spine-nav a:hover,
.spine-nav a.active {
  opacity: 1;
  color: var(--gold-bright);
  border-left-color: var(--gold-bright);
}

.spine-nav .num {
  color: var(--purple-bright);
  font-weight: 600;
  margin-right: 0.4em;
}

@media (max-width: 900px) {
  .spine-nav { display: none; }
  section { padding-left: 1.25rem; }
}

/* ============================================================
   MOBILE TAB BAR (replaces spine on small screens)
   ============================================================ */
.mobile-tabs {
  display: none;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 3px solid var(--gold);
  overflow-x: auto;
  white-space: nowrap;
  padding: 0.6rem 0.8rem;
  gap: 0.6rem;
}
.mobile-tabs a {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--parchment);
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--bamboo);
  border-radius: 999px;
  margin-right: 0.5rem;
}
.mobile-tabs a.active { background: var(--purple); border-color: var(--purple-bright); color: #fff; }

@media (max-width: 900px) {
  .mobile-tabs { display: flex; }
}

/* ============================================================
   TOP BAR (brand + buy button, sits above hero)
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem 0.9rem calc(1.5rem + var(--spine-w-active, 56px));
  background: rgba(16,12,20,0.92);
  border-bottom: 3px solid var(--gold);
  backdrop-filter: blur(4px);
}
@media (max-width: 900px) { .topbar { padding-left: 1.5rem; } }

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  overflow: hidden;
  background: var(--purple-deep);
}
.brand-name {
  font-family: var(--font-display);
  color: var(--parchment);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.brand-name span { color: var(--purple-bright); }

.btn {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.75em 1.3em;
  border: 3px solid var(--ink);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-hard-sm);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  cursor: pointer;
  background: var(--gold);
  color: var(--ink);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(0,0); box-shadow: 2px 2px 0 var(--ink); }
.btn.btn-primary { background: var(--purple-bright); color: #fff; }
.btn.btn-ghost { background: transparent; color: var(--parchment); border-color: var(--parchment); box-shadow: none; }
.btn.btn-ghost:hover { box-shadow: 4px 4px 0 var(--parchment); }
.btn.btn-sm { padding: 0.5em 0.9em; font-size: 0.7rem; }

/* ============================================================
   PANEL PRIMITIVE — the ink-outlined "comic panel" box used
   everywhere. Two-layer trick: offset ink shadow + jagged clip.
   ============================================================ */
.panel {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius-panel);
}
.panel-inner {
  position: relative;
  background: #ddd;
  border: 3px solid var(--ink);
  border-radius: var(--radius-panel);
  overflow: hidden;
  transform: translate(-6px, -6px);
}
.panel > .panel-inner { box-shadow: none; }

.panel-figure {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #cfc6a8;
  overflow: hidden;
}
.panel-figure img { width: 100%; height: 100%; object-fit: cover; }

/* Fallback shown via JS when an image 404s — keeps the repo usable pre-art */
.img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  padding: 1rem;
  background:
    repeating-linear-gradient(45deg, #d8cda3, #d8cda3 10px, #cabd8f 10px, #cabd8f 20px);
  color: var(--ink-soft);
}
.img-fallback .icon { font-size: 1.6rem; }
.img-fallback code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: rgba(16,12,20,0.08);
  padding: 0.15em 0.4em;
  border-radius: 3px;
}

.caption-box {
  font-family: var(--font-caption);
  background: var(--parchment);
  border: 2px solid var(--ink);
  padding: 0.6em 0.8em;
  font-size: 0.85rem;
  line-height: 1.4;
  box-shadow: 3px 3px 0 var(--ink);
}

/* ============================================================
   COVER / HERO
   ============================================================ */
.cover {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(106,42,156,0.35), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, #1a1220 100%);
  color: var(--parchment);
  overflow: hidden;
}

.cover-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 860px) { .cover-grid { grid-template-columns: 1fr; } }

.issue-sticker {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  border: 2px solid var(--gold-bright);
  border-radius: 999px;
  padding: 0.35em 0.9em;
  margin-bottom: 1.2rem;
}

.cover-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.98;
  margin: 0 0 0.5rem;
  color: var(--parchment);
  text-shadow: 4px 4px 0 var(--purple-deep);
}
.cover-title .glow { color: var(--purple-bright); text-shadow: 4px 4px 0 var(--ink), 0 0 30px rgba(168,85,214,0.6); }

.cover-tag {
  font-family: var(--font-caption);
  font-size: 1rem;
  color: var(--gold-bright);
  margin-bottom: 1.6rem;
}

.cover-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.6rem; }

.ca-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--parchment);
  background: rgba(255,255,255,0.06);
  border: 1px dashed var(--gold);
  border-radius: 6px;
  padding: 0.5em 0.8em;
}
.ca-row button {
  background: none; border: none; color: var(--gold-bright); cursor: pointer; font-family: var(--font-mono); font-size: 0.75rem; text-decoration: underline;
}

.cover-art {
  position: relative;
}
.cover-carousel {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 4px solid var(--gold);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 10px 10px 0 rgba(0,0,0,0.5);
}
.cover-carousel .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.cover-carousel .slide.active { opacity: 1; }
.cover-carousel img { width: 100%; height: 100%; object-fit: cover; }

.cover-carousel .slide-caption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  font-family: var(--font-caption);
  background: var(--parchment);
  border: 2px solid var(--ink);
  padding: 0.5em 0.7em;
  font-size: 0.8rem;
  box-shadow: 3px 3px 0 var(--ink);
}

.carousel-dots {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: flex;
  gap: 0.35rem;
  z-index: 5;
}
.carousel-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--parchment);
  cursor: pointer;
  padding: 0;
}
.carousel-dots button.active { background: var(--purple-bright); }

.price-sticker {
  position: absolute;
  top: -14px;
  left: -14px;
  background: var(--danger);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  padding: 0.5em 0.7em;
  border-radius: 50%;
  border: 3px solid var(--ink);
  transform: rotate(-12deg);
  box-shadow: 3px 3px 0 var(--ink);
  z-index: 6;
  text-align: center;
  line-height: 1.1;
}

/* ============================================================
   ORIGIN
   ============================================================ */
.origin { background: var(--paper); }
.origin-narrator {
  font-family: var(--font-caption);
  font-size: 1rem;
  background: var(--parchment);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard-sm);
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0 2.5rem;
  max-width: 70ch;
}
.origin-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 760px) { .origin-strip { grid-template-columns: 1fr; } }
.origin-strip .panel { transform: rotate(-1.2deg); }
.origin-strip .panel:nth-child(2) { transform: rotate(1deg); }
.origin-strip .panel:nth-child(3) { transform: rotate(-0.6deg); }

/* ============================================================
   HERO FILE (character dossier)
   ============================================================ */
.dossier { background: var(--paper-dark); }
.dossier-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard);
  background: var(--parchment);
  overflow: hidden;
}
@media (max-width: 760px) { .dossier-card { grid-template-columns: 1fr; } }

.dossier-photo { position: relative; aspect-ratio: 3/4; background: #cfc6a8; }
.dossier-photo img { width: 100%; height: 100%; object-fit: cover; }

.dossier-body { padding: 2rem; }
.dossier-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 0.2em;
}
.dossier-class {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--purple-deep);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: block;
}
.stat-row { margin-bottom: 0.8rem; }
.stat-row .stat-label {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25em;
}
.stat-bar {
  height: 10px;
  border: 2px solid var(--ink);
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
}
.stat-fill { height: 100%; background: linear-gradient(90deg, var(--purple), var(--purple-bright)); }
.dossier-bio { margin-top: 1.4rem; font-size: 0.95rem; color: #3a3226; }

/* ============================================================
   COMICNOMICS — issue library + reader modal
   ============================================================ */
.comicnomics { background: var(--paper); }
.comicnomics-lede-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
@media (max-width: 900px) { .issue-grid { grid-template-columns: 1fr; } }

.issue-card { cursor: pointer; border: none; background: none; padding: 0; text-align: left; font: inherit; color: inherit; }
.issue-card .panel-figure { aspect-ratio: 3/4; }
.issue-card .issue-num {
  position: absolute; top: 0.6rem; left: 0.6rem;
  background: var(--ink); color: var(--gold-bright);
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 0.3em 0.6em; border: 1px solid var(--gold-bright); z-index: 3;
}
.issue-meta { padding: 1rem 0.2rem 0; }
.issue-meta h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 0 0 0.3em; }
.issue-meta p { font-size: 0.9rem; color: #3a3226; margin: 0 0 0.6em; }
.issue-meta .read-cta {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--purple-deep); text-transform: uppercase;
}

.next-issues-strip {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 760px) { .next-issues-strip { grid-template-columns: 1fr; } }
.next-issue-card {
  border: 2px dashed var(--bamboo);
  border-radius: 4px;
  padding: 1.2rem;
  background: rgba(138,106,47,0.08);
  text-align: center;
}
.next-issue-card .lock { font-size: 1.4rem; }
.next-issue-card .num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--purple-deep); letter-spacing: 0.08em; }
.next-issue-card h4 { font-family: var(--font-display); font-size: 0.95rem; margin: 0.4em 0; color: #5a4a2a; }
.next-issue-card .status { font-family: var(--font-caption); font-size: 0.78rem; color: #6b5a35; }

/* ---- Reader modal ---- */
.reader-overlay {
  position: fixed; inset: 0; background: rgba(16,12,20,0.88);
  display: none; align-items: center; justify-content: center;
  z-index: 200; padding: 1.5rem;
}
.reader-overlay.open { display: flex; }

.reader {
  background: var(--parchment);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-hard);
  width: min(760px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.reader-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 1.2rem; border-bottom: 3px solid var(--ink);
  background: var(--ink); color: var(--gold-bright);
}
.reader-head h3 { font-family: var(--font-display); font-size: 1rem; margin: 0; }
.reader-close { background: none; border: none; color: var(--parchment); font-size: 1.4rem; cursor: pointer; line-height: 1; }

.reader-body { padding: 1.2rem; overflow-y: auto; }
.reader-figure { position: relative; aspect-ratio: 4/3; background: #cfc6a8; border: 3px solid var(--ink); margin-bottom: 1rem; overflow: hidden; }
.reader-figure img { width: 100%; height: 100%; object-fit: cover; }
.reader-caption { font-family: var(--font-caption); font-size: 0.95rem; }

.reader-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.2rem; border-top: 3px solid var(--ink);
}
.reader-progress { font-family: var(--font-mono); font-size: 0.75rem; color: var(--purple-deep); }
.reader-nav { display: flex; gap: 0.6rem; }

/* ============================================================
   POWERS (tokenomics)
   ============================================================ */
.powers { background: var(--ink); color: var(--parchment); }
.powers .section-title { color: var(--parchment); }
.powers .section-lede { color: #cfc3e0; }
.power-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
@media (max-width: 760px) { .power-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .power-grid { grid-template-columns: 1fr; } }

.power-card {
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 1.2rem;
  background: rgba(255,255,255,0.03);
}
.power-card .icon { font-size: 1.5rem; }
.power-card .label {
  display: block; font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-bright); margin: 0.5em 0 0.3em;
}
.power-card .value { font-family: var(--font-body); font-size: 0.92rem; color: var(--parchment); }

/* ============================================================
   JOIN CREW
   ============================================================ */
.join { background: var(--paper); }
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 860px) { .step-grid { grid-template-columns: 1fr; } }
.step-card {
  border: 3px solid var(--ink);
  background: var(--parchment);
  box-shadow: var(--shadow-hard-sm);
  padding: 1.4rem;
  position: relative;
}
.step-card .step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--purple-bright);
  -webkit-text-stroke: 1px var(--ink);
}
.step-card h3 { font-family: var(--font-display); font-size: 1.05rem; margin: 0.3em 0 0.5em; }
.step-card p { font-size: 0.92rem; color: #3a3226; margin: 0 0 0.8em; }

/* ============================================================
   FAN MAIL / COMMUNITY WALL
   ============================================================ */
.fanmail { background: var(--paper-dark); }
.fanmail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .fanmail-grid { grid-template-columns: repeat(2, 1fr); } }
.fanmail-slot {
  aspect-ratio: 1;
  border: 2px dashed var(--bamboo);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-family: var(--font-caption);
  font-size: 0.82rem;
  color: #6b5a35;
  background: rgba(138,106,47,0.06);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: var(--parchment);
  padding: 3rem 1.5rem calc(3rem + var(--spine-w, 0px)) calc(1.5rem + var(--spine-w, 0px));
  border-top: 4px solid var(--gold);
}
@media (max-width: 900px) { footer { padding-left: 1.5rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  max-width: 1120px;
  margin: 0 auto 2rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold-bright); margin: 0 0 0.8em;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.5em; }
.footer-grid a { text-decoration: none; color: var(--parchment); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--purple-bright); }
.footer-disclaimer {
  max-width: 1120px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem; font-size: 0.78rem; color: #b8aecb; line-height: 1.6;
}
.footer-tagline {
  font-family: var(--font-caption);
  color: var(--gold-bright);
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
