/* Your Tales - landing page
   Palette: charcoal-purple #16121f, bronze #8a6a2f, gold #e6b93f.
   Everything is square / chamfered - no rounded corners. */

:root {
  --bg: #16121f;
  --bg-alt: #1d1729;
  --panel: #221a33;
  --bronze: #8a6a2f;
  --gold: #e6b93f;
  --gold-dark: #b98f22;
  --text: #e8e0d0;
  --text-dim: #a99f8c;
  --chamfer: 14px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.6;
}

.pixel-font {
  font-family: 'Press Start 2P', monospace;
  letter-spacing: 1px;
}

img { display: block; image-rendering: pixelated; }

a { color: var(--gold); }

/* Chamfered-corner helper (pixel panel look) */
.card, .world-panel, .gallery-card, .btn {
  clip-path: polygon(
    var(--chamfer) 0, calc(100% - var(--chamfer)) 0,
    100% var(--chamfer), 100% calc(100% - var(--chamfer)),
    calc(100% - var(--chamfer)) 100%, var(--chamfer) 100%,
    0 calc(100% - var(--chamfer)), 0 var(--chamfer)
  );
}

/* ─── Header ─── */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: var(--bg);
  border-bottom: 3px solid var(--bronze);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { color: var(--gold); font-size: 13px; }

/* ─── Buttons ─── */
.btn {
  --chamfer: 8px;
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  text-decoration: none;
  color: #16121f;
  background: var(--gold);
  border: 0;
  box-shadow: inset 0 -5px 0 var(--gold-dark);
  transition: background 0.12s ease, transform 0.12s ease;
}
.btn:hover { background: #f4cd58; transform: translateY(-2px); }
.btn:active { transform: translateY(1px); box-shadow: inset 0 -2px 0 var(--gold-dark); }
.btn-small { padding: 10px 18px; font-size: 10px; }

/* ─── Hero ─── */
.hero { position: relative; min-height: 88vh; display: flex; }
.hero-art {
  position: absolute;
  inset: 0;
  background: url('assets/castle.webp') center / cover no-repeat;
  image-rendering: pixelated;
}
.hero-overlay {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: 64px 24px;
  background: linear-gradient(180deg, rgba(22, 18, 31, 0.55) 0%, rgba(22, 18, 31, 0.82) 78%, var(--bg) 100%);
}
.hero-title {
  color: var(--gold);
  font-size: clamp(26px, 6vw, 56px);
  text-shadow: 4px 4px 0 #000;
}
.hero-tagline {
  font-size: clamp(18px, 2.6vw, 26px);
  font-style: italic;
  color: var(--text);
  text-shadow: 2px 2px 0 #000;
}
.hero-note { color: var(--text-dim); font-size: 14px; }

/* ─── Sections ─── */
.section { padding: 72px 24px; max-width: 1100px; margin: 0 auto; }
.section-alt {
  max-width: none;
  background: var(--bg-alt);
  border-top: 3px solid var(--bronze);
  border-bottom: 3px solid var(--bronze);
}
.section-alt > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.section-title {
  color: var(--gold);
  font-size: clamp(15px, 3vw, 22px);
  text-align: center;
  margin-bottom: 44px;
}

/* ─── Feature cards ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--panel);
  border: 3px solid var(--bronze);
  padding: 26px 24px;
}
.card-title { color: var(--gold); font-size: 12px; margin-bottom: 16px; line-height: 1.7; }
.card p { color: var(--text); font-size: 16px; }

/* ─── Living world ─── */
.world-panel {
  background: var(--panel);
  border: 3px solid var(--bronze);
  padding: 40px 36px;
  max-width: 820px;
  /* Capped width with no auto margin left the panel hugging the left edge
     while its own section title sat centred above it. */
  margin-inline: auto;
}
.world-panel p { margin-bottom: 18px; }
.world-lead { font-size: 20px; font-style: italic; color: var(--gold); }
.world-punch { color: var(--gold); font-size: 12px; text-align: center; margin-top: 26px; margin-bottom: 0; line-height: 2; }

/* ─── Gallery ─── */
/* Fixed 4 columns on wide screens so the two wide cards land predictably;
   auto-fit would reflow them into whatever the viewport allows and the
   hierarchy would come and go with the window width. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-card {
  background: var(--panel);
  border: 3px solid var(--bronze);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}
.gallery-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 14px 16px;
  flex-grow: 1;
}
.place-name { color: var(--gold); font-size: 10px; }
.place-hook { color: var(--text-dim); font-size: 14px; line-height: 1.45; }

/* Two wide cards give the grid a focal point. They also get a taller image,
   because a 2:1 crop of the same art reads as a vista rather than a tile. */
.gallery-card.featured { grid-column: span 2; }
.gallery-card.featured img { height: 260px; }
.gallery-card.featured .place-hook { font-size: 16px; }

.gallery-foot {
  margin: 28px auto 0;
  max-width: 620px;
  text-align: center;
  font-style: italic;
  color: var(--text-dim);
}

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.featured { grid-column: span 2; }
  .gallery-card.featured img { height: 200px; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.featured { grid-column: auto; }
}

/* ─── Final CTA ─── */
.cta-section { text-align: center; }
.cta-section p { margin-bottom: 30px; font-style: italic; color: var(--text-dim); }

/* ─── Footer ─── */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 24px;
  border-top: 3px solid var(--bronze);
  background: var(--bg-alt);
  color: var(--text-dim);
  font-size: 14px;
}

/* ─── Small screens ─── */
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 52px 16px; }
  .world-panel { padding: 28px 20px; }
  .hero { min-height: 78vh; }
  .brand { font-size: 10px; }
}

/* Language toggle + header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle { display: flex; border: 3px solid #8a6a2f; }
.lang-btn {
  font-family: "Press Start 2P", monospace; font-size: 9px; padding: 8px 10px;
  background: #16121f; color: #a89878; border: none; cursor: pointer;
}
.lang-btn + .lang-btn { border-left: 3px solid #8a6a2f; }
.lang-btn.active { background: #e6b93f; color: #16121f; }
.lang-btn:hover:not(.active) { color: #e6b93f; }

/* Brand logo */
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 32px; height: 32px; image-rendering: pixelated; }
.hero-logo {
  width: 180px; height: 180px; image-rendering: pixelated;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 0 rgba(0,0,0,.45));
 
}
@media (max-width: 560px) {
  .hero-logo { width: 130px; height: 130px; }
}

/* ==========================================================================
   Epic pass: the landing should read as an invitation, not a feature list.
   Atmosphere (drifting embers, a slow push on the hero art) plus a three-beat
   promise section replacing the old six-card grid.
   Every animation is wrapped in prefers-reduced-motion.
   ========================================================================== */

.hero { position: relative; overflow: hidden; }

/* Slow push-in on the hero art so the scene feels alive rather than a poster. */
.hero-art {
  animation: hero-drift 32s ease-in-out infinite alternate;
  transform-origin: center 60%;
}

@keyframes hero-drift {
  from { transform: scale(1.02); }
  to   { transform: scale(1.10); }
}

/* Embers rising from the bottom of the hero. Pure CSS: three layered
   radial-gradient "sparks" drifting upward at different speeds. */
.hero-embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(2px 2px at 12% 100%, rgba(230, 185, 63, 0.85), transparent 60%),
    radial-gradient(2px 2px at 34% 100%, rgba(230, 185, 63, 0.55), transparent 60%),
    radial-gradient(3px 3px at 58% 100%, rgba(214, 138, 47, 0.70), transparent 60%),
    radial-gradient(2px 2px at 77% 100%, rgba(230, 185, 63, 0.60), transparent 60%),
    radial-gradient(2px 2px at 91% 100%, rgba(214, 138, 47, 0.50), transparent 60%);
  background-repeat: no-repeat;
  animation: embers-rise 14s linear infinite;
  opacity: 0.9;
}

@keyframes embers-rise {
  from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; opacity: 0; }
  15%  { opacity: 0.9; }
  85%  { opacity: 0.5; }
  to {
    background-position: -20px -90vh, 14px -80vh, -8px -100vh, 22px -75vh, -14px -95vh;
    opacity: 0;
  }
}

.hero-overlay { position: relative; z-index: 2; }

.hero-kicker {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold-dim, #b8963a);
  text-transform: uppercase;
  margin: 0 0 14px;
  opacity: 0.9;
}

.btn-hero { font-size: 12px; padding: 16px 28px; }

/* A quiet nudge that there is more below the fold. */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-right: 3px solid rgba(230, 185, 63, 0.7);
  border-bottom: 3px solid rgba(230, 185, 63, 0.7);
  transform: rotate(45deg);
  animation: scroll-hint 2.4s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.35; }
  50%      { transform: translateY(7px) rotate(45deg); opacity: 1; }
}

/* --- Three-beat promise --------------------------------------------------- */

.beat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.beat {
  position: relative;
  border: 3px solid var(--bronze, #8a6a2f);
  background: rgba(22, 18, 31, 0.72);
  padding: 26px 22px 22px;
}

.beat-num {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--bronze, #8a6a2f);
  color: #fff;
  font-size: 10px;
  padding: 5px 10px;
  text-shadow: 1px 1px 0 #000;
}

.beat-title {
  font-size: 11px;
  color: var(--gold, #e6b93f);
  margin: 6px 0 12px;
  line-height: 1.6;
}

.beat p { line-height: 1.75; margin: 0; }

/* Beats and gallery cards fade up as they enter the viewport (see the
   IntersectionObserver in i18n.js — no library, no layout shift). */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.gallery-card { transition: transform 300ms ease, border-color 300ms ease; }
.gallery-card:hover { transform: translateY(-6px); border-color: var(--gold, #e6b93f); }

.world-punch { animation: punch-glow 4s ease-in-out infinite; }

@keyframes punch-glow {
  0%, 100% { text-shadow: 0 0 0 rgba(230, 185, 63, 0); }
  50%      { text-shadow: 0 0 14px rgba(230, 185, 63, 0.55); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art,
  .hero-embers,
  .hero-scroll,
  .world-punch { animation: none; }
  .hero-art { transform: scale(1.04); }
  .hero-embers { opacity: 0.35; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .gallery-card:hover { transform: none; }
}

/* ==========================================================================
   Marketing pass: show the game, explain how it plays, answer the objections.
   The page used to assert that the game was good; these sections let a real
   screenshot and three concrete steps do that job instead.
   ========================================================================== */

.section-lead {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--rpg-text-dim, #8f8578);
  line-height: 1.7;
}

.hero-sub {
  max-width: 620px;
  margin: 18px auto 26px;
  line-height: 1.75;
  color: var(--text, #d8cfc0);
}

/* The reassurance line under the CTA: the objections a player has before
   they will click anything (cost, install, language). */
.hero-trust {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: var(--gold-dim, #b8963a);
}

/* --- Product shots -------------------------------------------------------- */

.shot { margin: 0; }

.shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid var(--bronze, #8a6a2f);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.45);
  image-rendering: auto;
}

.shot figcaption {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--rpg-text-dim, #8f8578);
}

.shot-wide {
  max-width: 1100px;
  margin: 0 auto;
}

.shot-wide figcaption { text-align: center; max-width: 760px; margin-inline: auto; }

/* --- How it plays --------------------------------------------------------- */

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  position: relative;
  border: 3px solid var(--bronze, #8a6a2f);
  background: rgba(22, 18, 31, 0.72);
  padding: 30px 22px 22px;
}

.step-num {
  position: absolute;
  top: -16px;
  left: 20px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold, #e6b93f);
  color: #16121f;
  font-size: 12px;
  border: 3px solid var(--bronze, #8a6a2f);
}

.step-title { font-size: 11px; color: var(--gold, #e6b93f); margin: 6px 0 12px; line-height: 1.6; }
.step p { line-height: 1.75; margin: 0; }

/* --- Text beside a screenshot --------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.15fr);
  gap: 36px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.split-title { text-align: left; margin-top: 0; }
.split-text p { line-height: 1.8; margin: 0 0 16px; }
.split-punch {
  font-size: 11px;
  color: var(--gold, #e6b93f);
  line-height: 1.8;
  margin: 22px 0 0;
}

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 26px; }
  .split-title { text-align: center; }
}

/* --- Objections ----------------------------------------------------------- */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border-left: 4px solid var(--bronze, #8a6a2f);
  padding: 4px 0 4px 18px;
}

.faq-q { font-size: 10px; color: var(--gold, #e6b93f); margin: 0 0 10px; line-height: 1.7; }
.faq-item p { margin: 0; line-height: 1.75; color: var(--rpg-text-dim, #8f8578); }

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--rpg-text-dim, #8f8578);
}

/* ==========================================================================
   "For the curious" — how the world actually works.
   Diagrams are inline SVG so they inherit the palette, scale without assets
   and need no library. Each one carries a <title> for screen readers, because
   a diagram that only exists visually excludes the reader who most needs the
   explanation.
   ========================================================================== */

.nerd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 22px;
  max-width: 1140px;
  margin: 0 auto;
}

.nerd-card {
  border: 3px solid var(--bronze, #8a6a2f);
  background: rgba(22, 18, 31, 0.72);
  padding: 22px 20px;
}

.nerd-title { font-size: 11px; color: var(--gold, #e6b93f); margin: 0 0 16px; line-height: 1.6; }
.nerd-card p { line-height: 1.75; margin: 16px 0 0; }

/* A moment at the table, before the mechanism. Set apart so a reader who only
   skims the examples still comes away understanding the idea. */
.nerd-example {
  margin: 0 0 16px !important;
  padding-left: 14px;
  border-left: 3px solid var(--bronze, #8a6a2f);
  font-style: italic;
  color: #d8cfa8;
}
/* Reads the diagram for people who do not read diagrams. */
.nerd-legend {
  margin: 10px 0 0 !important;
  font-size: 13px;
  color: var(--text-dim, #9a92a6);
}

.nerd-svg {
  width: 100%;
  height: auto;
  display: block;
  background: rgba(13, 10, 20, 0.55);
  border: 2px solid rgba(138, 106, 47, 0.5);
}

/* Nodes, edges and labels share one vocabulary across all four diagrams so a
   reader learns the visual language once. */
.nerd-svg .nd { stroke: #0d0a14; stroke-width: 2; }
.nerd-svg .nd-hero { fill: #e6b93f; }
.nerd-svg .nd-npc  { fill: #8b5fbf; }
.nerd-svg .nd-loc  { fill: #5d8a4a; }
.nerd-svg .nd-fac  { fill: #3f6fb0; }
.nerd-svg .nd-deed { fill: #c4622d; }

.nerd-svg .ed { stroke: #8a6a2f; stroke-width: 2; }
.nerd-svg .ax { stroke: #6f6a78; stroke-width: 2; }
.nerd-svg .mk { stroke: #b03a2e; stroke-width: 2; stroke-dasharray: 3 3; }

.nerd-svg .bar { stroke: #0d0a14; stroke-width: 2; }
.nerd-svg .bar-true  { fill: #5d8a4a; }
.nerd-svg .bar-known { fill: #4f8f8a; }

.nerd-svg .ring { fill: none; stroke-width: 2; }
.nerd-svg .ring-1 { stroke: rgba(230, 185, 63, 0.85); }
.nerd-svg .ring-2 { stroke: rgba(230, 185, 63, 0.5); }
.nerd-svg .ring-3 { stroke: rgba(230, 185, 63, 0.25); }

.nerd-svg .box { fill: rgba(31, 25, 48, 0.9); stroke: #8a6a2f; stroke-width: 2; }
.nerd-svg .box-out { stroke: #e6b93f; }

.nerd-svg .nl { font-size: 9px; fill: #d8cfc0; }
.nerd-svg .el { font-size: 7px; fill: #b8963a; letter-spacing: 0.5px; }
.nerd-svg .al { font-size: 8px; fill: #8f8578; }
.nerd-svg .nl-c { text-anchor: middle; }

.nerd-foot {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
  line-height: 1.8;
  color: var(--rpg-text-dim, #8f8578);
  font-style: italic;
}

/* The technical page reuses every landing style; it only needs its own title
   scale, since it opens on an h1 rather than dropping into a hero. */
.tech-hero { padding-bottom: 0; }
.page-h1 {
  font-size: 18px;
  color: var(--gold, #e6b93f);
  text-align: center;
  line-height: 1.7;
  margin: 0 0 20px;
}
.nerd-teaser .section-lead { margin-bottom: 26px; }

/* ==========================================================================
   Technical note — laid out as a short paper.
   Numbered sections, an abstract, captioned figures. The earlier version was
   four equal cards with no order between them, which reads as a feature list;
   a reader who wants depth needs to see an argument being built, and one who
   does not can stop after the abstract.
   ========================================================================== */
.paper-kicker { color: var(--bronze); font-size: 9px; letter-spacing: 2px; margin: 0 0 14px; text-align: center; }
.paper-authors { color: var(--text-dim); font-size: 14px; font-style: italic; margin: 6px 0 0; text-align: center; }

.abstract {
  max-width: 760px;
  margin: 30px auto 0;
  padding: 22px 26px;
  border-left: 4px solid var(--gold);
  background: rgba(22, 18, 31, 0.55);
  text-align: left;
}
.abstract-h { font-size: 10px; color: var(--gold); margin: 0 0 12px; }
.abstract p { margin: 0; line-height: 1.8; color: var(--text); }

.paper { max-width: 820px; margin: 0 auto; }
.paper-sec { margin: 0 0 54px; text-align: left; }
.paper-sec:last-child { margin-bottom: 0; }
.sec-h { font-size: 13px; color: var(--gold); line-height: 1.7; margin: 0 0 18px; }
.sec-n {
  display: inline-block; min-width: 34px; padding: 4px 0;
  color: var(--bg); background: var(--gold); text-align: center; margin-right: 10px;
}
.sub-h { font-size: 10px; color: var(--bronze); margin: 26px 0 10px; line-height: 1.7; }
.paper-sec p { line-height: 1.85; margin: 0 0 16px; }
.paper-sec strong { color: var(--text); }
.paper-sec em { color: var(--text); font-style: italic; }

/* The line to remember from each section, if only one is remembered. */
.paper-claim {
  font-size: 18px; color: var(--gold); font-style: italic;
  border-top: 2px solid var(--bronze); padding-top: 14px; margin-top: 22px !important;
}
.paper-note {
  font-size: 15px; color: var(--text-dim); border-left: 3px solid var(--bronze);
  padding-left: 16px; margin-top: 20px !important;
}

.fig { margin: 26px 0; padding: 0; }
.fig .nerd-svg { max-width: 460px; margin: 0 auto; }
.fig figcaption {
  margin-top: 10px; font-size: 14px; color: var(--text-dim);
  line-height: 1.6; text-align: center;
}
.fig-n { color: var(--gold); font-style: normal; margin-right: 6px; }

/* Says plainly that 6.3 is not shipped yet, without hiding it. */
.tag-wip {
  display: inline-block; font-size: 8px; letter-spacing: 1px;
  color: var(--bg); background: var(--bronze); padding: 3px 7px; margin-left: 8px;
  vertical-align: middle;
}

@media (max-width: 560px) {
  .abstract { padding: 18px; }
  .sec-h { font-size: 11px; }
  .sec-n { min-width: 28px; margin-right: 8px; }
}

/* Beta warning under the hero. Rides on .hero-trust for layout and only
   changes the colour, so it reads as a caveat rather than as a feature. */
.hero-beta {
  margin-top: .4rem;
  color: var(--gold, #d9a441);
  opacity: .85;
}

/* A row that holds nothing but a button.
   This was an inline style: text-align:center;margin:0. The centring worked
   INSIDE the paragraph and the paragraph itself was not centred — margin:0
   cancelled the auto margins that every other centred block on the page relies
   on, so in a full-bleed section the button sat 290px left of the heading above
   it. text-align alone cannot centre a block that is narrower than its parent. */
.btn-row {
  margin: 0 auto;
  text-align: center;
}

/* Faint vertical guides in the timeline diagram. Same x on every axis is what
   says "these are the same moment", so the guides do the work that connector
   lines would otherwise do while crossing other axes and cluttering it. */
.nerd-svg .gd {
  stroke: var(--rpg-text-dim, #8f8578);
  stroke-width: 1;
  stroke-dasharray: 2 3;
  opacity: .28;
}
/* The shared clock is the one that matters; the player lines are context. */
.nerd-svg .ax-strong {
  stroke: var(--gold, #e6b93f);
  opacity: .8;
}
