/* Loopi Hunt — mobile-first, portrait. Desktop is a centred 520px column.
   Palette variables (--pal-*) are written by src/palette.js at runtime. */

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

:root {
  --brand: #FF6200;
  --brand-ink: #0B0F1C;

  --pal-filter: none;
  --pal-overlay: transparent;
  --pal-blend: normal;
  --pal-ink: #E8ECF6;
  --pal-ink-dim: rgba(232, 236, 246, .66);
  --pal-surface: rgba(11, 15, 28, .86);
  --pal-hairline: rgba(232, 236, 246, .16);

  --hud-h: 52px;
  --bar-h: 60px;
  --radius: 14px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  background: #05070E;
  color: var(--pal-ink);
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

/* Components below set display on classes, which would out-specify the UA rule
   for [hidden] and leave "hidden" elements on screen. Caught in the browser: the
   back button rendered on scene 1. */
[hidden] { display: none !important; }

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

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Dialog containers get focus programmatically so screen readers land inside
   them, but they are not operable controls — a focus ring there is noise. The
   controls within them keep theirs. */
.intro__card:focus,
.modal__card:focus,
.end__card:focus { outline: none; }

button { font: inherit; color: inherit; }

/* ---------------------------------------------------------------- shell */

.app {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  max-width: 520px;
  margin-inline: auto;
  background: #05070E;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  overflow: hidden;
}

/* ------------------------------------------------------------------ hud */

.hud {
  flex: 0 0 auto;
  height: var(--hud-h);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: var(--pal-surface);
  border-bottom: 1px solid var(--pal-hairline);
  z-index: 40;
}

.hud__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 6px 12px 6px 8px;
  background: transparent;
  border: 1px solid var(--pal-hairline);
  border-radius: 999px;
  cursor: pointer;
}
.hud__btn:active { transform: translateY(1px); }
.hud__btn-label { font-size: 14px; }

.hud__brand {
  display: flex; align-items: center; gap: 8px;
  margin-inline: auto;
  font-size: 14px; font-weight: 600; letter-spacing: .2px;
}
.hud__brand-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 25%, transparent);
}

.hud__badges {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--pal-hairline);
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
}
.hud__badges-icon svg { width: 16px; height: 16px; fill: var(--brand); display: block; }

/* ---------------------------------------------------------------- stage */

.stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

/* `aspect-ratio` + `max-height` means this box is NOT reliably 2:3 — on a short
   viewport the height clamps and the width does not follow. That is fine and
   deliberate: nothing is anchored to the canvas. The frame below is the real
   2:3 box, so the canvas only ever contributes letterbox, which is transparent. */
.stage__canvas {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 100%;
  aspect-ratio: 2 / 3;
  background: transparent;
}

.layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: transform, opacity;
}

/* The frame IS the rendered image box, computed in JS from the natural size with
   `contain` maths. Every overlay lives inside it, in % of it — never in % of the
   canvas, or a background that is not exactly 2:3 shifts every hotspot. */
.frame {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0A0E18;
}

/* The scene art carries a slice of the previous scene in its border (the awning
   arch, the backpack zipper). The frame already matches the image ratio, so
   `fill` here cannot distort and cannot crop those borders away. */
.layer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  filter: var(--pal-filter);
  user-select: none;
  -webkit-user-drag: none;
}

.frame__overlay {
  position: absolute;
  inset: 0;
  background: var(--pal-overlay);
  mix-blend-mode: var(--pal-blend);
  pointer-events: none;
}

.frame__placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px dashed var(--pal-hairline);
  border-radius: var(--radius);
  color: var(--pal-ink-dim);
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 10px, transparent 10px 20px),
    #0A0E18;
}
.frame__placeholder span { font-size: 18px; font-weight: 700; color: var(--pal-ink); }
.frame__placeholder small { font-size: 12px; }
.layer--placeholder .frame__placeholder { display: flex; }

/* ------------------------------------------------------------- hotspots */

.hot {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  z-index: 30;
}
/* Some advance hotspots have no anchor in the background art — the backpack in
   the arquibancada scene is a sprite drawn on top, not part of the painting. */
.hot__art {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .45));
}
.hot__tag {
  display: none;
  position: absolute;
  inset: auto 0 -20px 0;
  font-size: 10px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--pal-ink-dim);
  pointer-events: none;
}

/* Discreet affordance on the advance hotspot so the funnel never dead-ends. */
.hot--next::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--brand) 60%, transparent);
  opacity: .0;
  animation: breathe 3.2s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { opacity: .10; } 50% { opacity: .38; } }
.hot--next[disabled] { cursor: progress; }
.hot--next[disabled]::after { animation: none; opacity: .06; }

/* The badge sits in the art, unlit, findable by looking. Once found it lights up.
   --badge-opacity comes from config so contrast can be tuned per scene without
   re-exporting the asset. */
.hot__art--badge {
  opacity: var(--badge-opacity, .82);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .55));
}
.hot--badge.is-found .hot__art--badge {
  opacity: 1;
  filter: drop-shadow(0 0 12px var(--brand));
}
/* A ring, not a filled disc: it has to read as "found" both over the badge art
   and over a bare placeholder, without covering the art it is marking. */
.hot--badge.is-found::before {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--brand) 85%, transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--brand) 55%, transparent);
}

/* Placeholder mode: every interactive box becomes a labelled rectangle. */
.layer--placeholder .hot {
  border: 2px solid color-mix(in srgb, var(--brand) 55%, transparent);
  background: color-mix(in srgb, var(--brand) 10%, transparent);
}
.layer--placeholder .hot__tag { display: block; }
.layer--placeholder .hot--poi { border-color: var(--pal-hairline); background: rgba(255,255,255,.05); }

/* ---------------------------------------------------------- brand slots */

/* --slot-transform lets a slot sit on a surface drawn in perspective (the
   jumbotron in the arquibancada art is a trapezoid). Flat art pasted on it reads
   as a sticker; the config supplies the matrix. */
.slot {
  --slot-transform: translate(0);
  position: absolute;
  transform: translate(-50%, -50%) var(--slot-transform);
  transform-origin: center;
  overflow: hidden;
  border-radius: 8px;
  z-index: 25;
  pointer-events: none;
}
.slot__art { width: 100%; height: 100%; object-fit: fill; display: block; }
.slot__tag {
  display: none;
  position: absolute;
  left: 4px; bottom: 4px;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(0,0,0,.6);
  color: #fff;
}
.slot--placeholder {
  border: 2px dashed color-mix(in srgb, var(--brand) 60%, transparent);
  background: color-mix(in srgb, var(--brand) 12%, transparent);
}
.slot--placeholder .slot__tag { display: block; }
.slot--fmt-off { outline: 2px solid #FFB020; }
.layer--placeholder .slot__tag { display: block; }

/* ---------------------------------------------------------------- board */

.board { position: absolute; inset: 0; }
.board.is-loading::after {
  content: "abrindo a busca…";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--pal-ink-dim);
  background: rgba(5,7,14,.5);
}

.cell {
  position: absolute;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
  cursor: pointer;
}
.cell svg,
.cell__art { width: 100%; height: 100%; display: block; pointer-events: none; object-fit: contain; }
.cell.is-target { filter: drop-shadow(0 0 10px var(--brand)); }

.cell--placeholder {
  border: 1px solid var(--pal-hairline);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: grid;
  place-items: center;
}
.cell__tag {
  font-size: 8px;
  color: var(--pal-ink-dim);
  pointer-events: none;
  padding: 2px;
  text-align: center;
  word-break: break-all;
}

/* hard: bigger sprites overlap more and contrast is pulled down */
.board[data-difficulty="hard"] .cell { filter: contrast(.88) saturate(.9); }

/* ---------------------------------------------------------------- pulse */

/* Zone feedback. Three states, no gradient, drawn where the player tapped and
   gone right after — a persistent bar was a needle you could binary-search. */
.pulse {
  position: absolute;
  width: 26%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .55);
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 60;
  transform: translate(-50%, -50%);
}
.pulse__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 3px 9px;
  border-radius: 999px;
  color: #0B0F1C;
  background: #fff;
  white-space: nowrap;
}
.pulse--cold { border-color: #5AA9E6; }
.pulse--cold .pulse__tag { background: #5AA9E6; color: #06121C; }
.pulse--warm { border-color: #E6C15A; }
.pulse--warm .pulse__tag { background: #E6C15A; color: #1C1606; }
.pulse--hot  { border-color: var(--brand); }
.pulse--hot  .pulse__tag { background: var(--brand); color: var(--brand-ink); }

/* ------------------------------------------------------------------ bar */

.bar {
  flex: 0 0 auto;
  min-height: var(--bar-h);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--pal-surface);
  border-top: 1px solid var(--pal-hairline);
  z-index: 40;
}
.bar__text { margin: 0; font-size: 14px; line-height: 1.35; color: var(--pal-ink); }
.bar__text.is-caption { color: var(--pal-ink-dim); font-style: italic; }
.bar__action {
  margin-left: auto;
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 0;
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 700;
  cursor: pointer;
}

/* --------------------------------------------------------------- banner */

.banner {
  position: absolute;
  left: 12px; right: 12px;
  top: calc(var(--hud-h) + env(safe-area-inset-top) + 8px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.35;
  background: #1B2233;
  border: 1px solid var(--pal-hairline);
  color: #E8ECF6;
  z-index: 70;
}
.banner[hidden] { display: none; }
.banner[data-kind="warn"]  { border-color: #C9922E; }
.banner[data-kind="error"] { border-color: #D0453B; }
.banner__btn {
  margin-left: auto;
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

/* ---------------------------------------------------------------- modal */

/* ---------------------------------------------------------------- intro */

/* absolute, not fixed: these live inside .app, so on desktop they stay inside
   the 520px column instead of taking over the whole screen. */
.intro {
  position: absolute;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(120% 80% at 50% 0%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 60%),
    #05070E;
}

.intro__card {
  width: min(100%, 400px);
  padding: 26px 22px;
  border-radius: 20px;
  background: #121826;
  border: 1px solid var(--pal-hairline);
  text-align: center;
}

.intro__sponsor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--pal-hairline);
}
.intro__sponsor-label {
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(232, 236, 246, .5);
}
.intro__sponsor-art { max-width: 190px; width: 100%; height: auto; display: block; }

.intro__eyebrow {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}
.intro__title { margin: 0 0 18px; font-size: 23px; line-height: 1.2; }

.intro__points {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.intro__points li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(232, 236, 246, .84);
}
.intro__icon { flex: 0 0 auto; font-size: 17px; line-height: 1.2; }

.intro__cta { width: 100%; }

.modal, .end {
  position: absolute;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal[hidden], .end[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(3,5,12,.72); }

.modal__card, .end__card {
  position: relative;
  width: min(100%, 380px);
  /* The end panel stacks reveal + title + badges + stats + sponsor + button.
     On a short phone that overflows, so it scrolls inside itself rather than
     pushing the button off-screen. */
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px;
  border-radius: 18px;
  background: #121826;
  border: 1px solid var(--pal-hairline);
  color: #E8ECF6;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.modal__title, .end__title { margin: 0 0 8px; font-size: 19px; }
.modal__body, .end__text { margin: 0 0 18px; font-size: 15px; line-height: 1.45; color: rgba(232,236,246,.8); }
.modal__actions, .end__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.btn {
  flex: 1 1 auto;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--pal-hairline);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
}
.btn--primary { background: var(--brand); color: var(--brand-ink); border-color: transparent; font-weight: 700; }

/* ------------------------------------------------------------------ end */

.end__card { text-align: center; }

/* The card the player found, cloned out of the board and given room. */
.end__reveal {
  width: 132px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .55));
}
.end__reveal .cell {
  position: static;
  width: 100% !important;
  transform: none !important;
  cursor: default;
}
.end__reveal .cell svg,
.end__reveal .cell__art { width: 100%; height: auto; }

.end__eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
}
.end__title { font-size: 22px; }
.end__text { margin-bottom: 16px; }

.end__badges {
  margin: 0 0 16px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--pal-hairline);
}
.end__pips { display: flex; justify-content: center; gap: 8px; margin-bottom: 8px; }
.end__pip {
  font-size: 20px;
  line-height: 1;
  opacity: .22;
  filter: grayscale(1);
}
.end__pip.is-on { opacity: 1; filter: none; }
.end__badges-line { margin: 0; font-size: 13px; line-height: 1.4; color: rgba(232,236,246,.8); }

.end__stats {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  margin: 0 0 16px;
  font-size: 13px;
  text-align: left;
}
.end__stats dt { color: rgba(232,236,246,.55); }
.end__stats dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; }

/* The reward moment is the most valuable placement in the session. */
.end__sponsor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 12px;
  margin: 0 0 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--pal-hairline);
}
.end__sponsor-label {
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(232, 236, 246, .5);
}
.end__sponsor-art { max-width: 150px; width: 100%; height: auto; display: block; }

.confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; border-radius: 18px; }
.confetti i { position: absolute; top: 0; width: 7px; height: 11px; border-radius: 2px; display: block; }

/* -------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hot--next::after { animation: none; opacity: .28; }
}
.reduce-motion .hot--next::after { animation: none; opacity: .28; }

/* =================================================================== */
/* editor.html                                                          */
/* =================================================================== */

.ed {
  max-width: none;
  height: 100dvh;
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 0;
  background: #0A0E18;
}
@media (max-width: 860px) {
  .ed { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
}

.ed__side {
  overflow: auto;
  padding: 14px;
  border-right: 1px solid var(--pal-hairline);
  background: #0E1420;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ed__main { position: relative; display: grid; place-items: center; padding: 14px; min-height: 0; }

.ed h1 { font-size: 17px; margin: 0; }
.ed h2 { font-size: 13px; margin: 0 0 8px; text-transform: uppercase; letter-spacing: .6px; color: var(--pal-ink-dim); }
.ed fieldset { border: 1px solid var(--pal-hairline); border-radius: 12px; padding: 12px; margin: 0; }
.ed label { display: block; font-size: 12px; color: var(--pal-ink-dim); margin-bottom: 4px; }
.ed input[type="text"], .ed input[type="number"], .ed select, .ed textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--pal-hairline);
  background: #070B14;
  color: #E8ECF6;
  font: inherit;
  font-size: 13px;
}
.ed textarea { min-height: 64px; resize: vertical; }
.ed .row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ed .stack { display: flex; flex-direction: column; gap: 8px; }
.ed .inline { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

.ed__btn {
  padding: 8px 12px;
  border-radius: 9px;
  border: 1px solid var(--pal-hairline);
  background: #161E2E;
  cursor: pointer;
  font-size: 13px;
}
.ed__btn--primary { background: var(--brand); color: var(--brand-ink); border-color: transparent; font-weight: 700; }
.ed__btn--danger { border-color: #D0453B; color: #FF9A92; }

.ed__canvas {
  position: relative;
  aspect-ratio: 2 / 3;
  max-height: 100%;
  max-width: 100%;
  background: #05070E;
  border-radius: 12px;
  overflow: hidden;
  touch-action: none;
}
.ed__canvas img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; filter: var(--pal-filter); }
.ed__canvas .frame__overlay { position: absolute; inset: 0; }

.ed__item {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 2px solid #6AA9FF;
  background: rgba(106,169,255,.14);
  border-radius: 8px;
  cursor: move;
  font-size: 10px;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: visible;
}
.ed__item[data-type="next"]   { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 16%, transparent); }
.ed__item[data-type="badge"]  { border-color: #58D68D; background: rgba(88,214,141,.16); border-radius: 50%; }
.ed__item[data-type="slot"]   { border-color: #F1C40F; background: rgba(241,196,15,.14); }
.ed__item[data-type="decoy"]  { border-color: #9AA6BF; background: rgba(154,166,191,.14); }
.ed__item.is-selected { box-shadow: 0 0 0 2px #fff, 0 0 0 5px var(--brand); z-index: 10; }
.ed__item.is-fmt-off { border-style: dashed; box-shadow: 0 0 0 2px #FFB020; }

.ed__handle {
  position: absolute;
  right: -7px; bottom: -7px;
  width: 16px; height: 16px;
  border-radius: 4px;
  background: #fff;
  border: 2px solid #05070E;
  cursor: nwse-resize;
}

.ed__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.ed__list li { display: flex; gap: 6px; align-items: center; }
.ed__list button { flex: 1 1 auto; text-align: left; }
.ed__list .is-active { border-color: var(--brand); }

.ed__msg { font-size: 12px; line-height: 1.4; padding: 8px 10px; border-radius: 8px; border: 1px solid; }
.ed__msg--ok    { border-color: #58D68D; color: #A8ECC4; }
.ed__msg--warn  { border-color: #C9922E; color: #F0CE8E; }
.ed__msg--error { border-color: #D0453B; color: #FF9A92; }

.ed__out {
  width: 100%;
  min-height: 160px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  white-space: pre;
  overflow: auto;
}
