:root {
  --bg-1: #111b2a;
  --bg-2: #344b5f;
  --card: rgba(10, 16, 25, 0.76);
  --card-border: rgba(255, 255, 255, 0.12);
  --ink: #edf6f7;
  --muted: #adbfca;
  --accent: #ffb347;
  --accent-strong: #ff7b54;
  --success: #69d2a2;
  --danger: #ff6f61;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  --panel-gap: 16px;
  --app-height: 100svh;
}

* {
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: none;
  overscroll-behavior: none;
  background:
    radial-gradient(circle at top left, rgba(255, 179, 71, 0.28), transparent 28%),
    radial-gradient(circle at bottom right, rgba(105, 210, 162, 0.18), transparent 30%),
    linear-gradient(155deg, var(--bg-1), var(--bg-2) 56%, #1f2f3c 100%);
  color: var(--ink);
  font-family: "Trebuchet MS", "Avenir Next Condensed", "Gill Sans", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

button,
canvas {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}

button {
  touch-action: none;
}

html,
body,
body *,
body *::before,
body *::after {
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-touch-callout: none !important;
  caret-color: transparent;
}

input,
textarea,
[contenteditable="true"] {
  user-select: text !important;
  -webkit-user-select: text !important;
  -webkit-touch-callout: default !important;
  caret-color: auto !important;
}

.app-shell {
  min-height: var(--app-height);
  height: var(--app-height);
  max-height: var(--app-height);
  padding:
    max(16px, env(safe-area-inset-top))
    max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left));
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.header-buttons .ghost-button {
  padding: 8px 12px;
  font-size: 0.85rem;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.topbar h1,
.overlay-card h2,
.panel-block h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.topbar h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.layout {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 360px);
  gap: 16px;
}

.stage-card,
.panel-block {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stage-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}

#game-canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 24px;
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(4, 7, 12, 0.18), rgba(4, 7, 12, 0.74));
  transition: opacity 240ms ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.hidden {
  display: none !important;
}

.overlay-card {
  width: min(420px, 100%);
  padding: 24px;
  border-radius: 24px;
  max-height: 85vh;
  overflow-y: auto;
  background:
    radial-gradient(circle at top left, rgba(255, 179, 71, 0.18), transparent 35%),
    rgba(13, 18, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.overlay-warning {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 111, 97, 0.14), rgba(255, 179, 71, 0.08)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 179, 71, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 111, 97, 0.08);
}

.overlay-warning strong {
  color: #ffe39f;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.overlay-warning p {
  margin: 0;
  color: #f8e9d2;
  line-height: 1.55;
  font-size: 0.92rem;
}

.overlay-details {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
  max-height: min(34svh, 240px);
  overflow: auto;
  padding-right: 4px;
}

.overlay-details.hidden {
  display: none;
}

.overlay-detail-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.overlay-detail-index {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 179, 71, 0.18);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.overlay-detail-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.overlay-detail-copy strong {
  font-size: 0.96rem;
}

.overlay-detail-copy span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.overlay-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.difficulty-select,
.mode-select {
  margin: 10px 0;
}

.difficulty-select label,
.mode-select label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.difficulty-buttons,
.mode-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.difficulty-btn,
.mode-btn {
  flex: 1;
  min-width: 55px;
  padding: 8px 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 160ms ease;
}

.difficulty-btn:hover,
.mode-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.difficulty-btn.active,
.mode-btn.active {
  background: rgba(255, 179, 71, 0.2);
  border-color: var(--accent);
  color: var(--accent);
}

.player-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  margin: 10px 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-level {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9rem;
}

.player-title {
  color: var(--ink);
  font-size: 0.9rem;
}

.player-xp {
  color: var(--muted);
  font-size: 0.85rem;
}

.scene-select {
  margin: 10px 0;
}

.scene-select label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.scene-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.scene-btn {
  flex: 1;
  min-width: 55px;
  padding: 8px 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 160ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.scene-btn:hover:not(.locked) {
  background: rgba(255, 255, 255, 0.08);
}

.scene-btn.active {
  background: rgba(255, 179, 71, 0.2);
  border-color: var(--accent);
  color: var(--accent);
}

.scene-btn.locked {
  opacity: 0.4;
  cursor: not-allowed;
}

.scene-btn .scene-icon {
  font-size: 1.2rem;
}

.scene-btn .scene-unlock {
  font-size: 0.65rem;
  opacity: 0.7;
}

.overlay-card p {
  color: var(--muted);
  line-height: 1.55;
}

.control-panel {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: var(--panel-gap);
}

.panel-block {
  padding: 16px;
}

.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;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metrics-grid article {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.metrics-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
}

.meter-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.touch-panel {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-height: 0;
  padding: 12px 14px;
  gap: 0;
}

.touch-surface {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 138px);
  gap: 12px;
  align-items: stretch;
  width: 100%;
}

.touch-control {
  position: relative;
}

.joystick-control {
  width: min(100%, 182px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.action-control {
  min-height: 100%;
}

.joystick-zone {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 66%);
  touch-action: none;
  pointer-events: none;
}

.joystick-axis {
  position: absolute;
  inset: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.joystick-axis.horizontal {
  height: 1px;
  width: calc(100% - 32px);
  transform: translate(-50%, -50%);
}

.joystick-axis.vertical {
  width: 1px;
  height: calc(100% - 32px);
  transform: translate(-50%, -50%);
}

.joystick-edge {
  position: absolute;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.joystick-top,
.joystick-bottom {
  left: 50%;
  transform: translateX(-50%);
}

.joystick-top {
  top: 14px;
}

.joystick-bottom {
  bottom: 14px;
}

.joystick-left,
.joystick-right {
  top: 50%;
  transform: translateY(-50%);
  max-width: 56px;
  text-align: center;
}

.joystick-left {
  left: 12px;
}

.joystick-right {
  right: 12px;
}

.joystick-knob {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.meter-header span,
.advisory p,
.keys-text,
.references-block li,
#event-log li,
.control-button small,
.action-button small {
  color: var(--muted);
}

.meter-shell {
  position: relative;
  height: 18px;
  margin-top: 14px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 111, 97, 0.78), rgba(255, 179, 71, 0.8), rgba(255, 111, 97, 0.78));
  overflow: hidden;
}

.meter-zone {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 36%;
  width: 24%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(105, 210, 162, 0.82), rgba(183, 255, 216, 0.9));
  box-shadow: 0 0 18px rgba(105, 210, 162, 0.44);
}

.meter-pointer {
  position: absolute;
  top: -4px;
  width: 10px;
  height: 26px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.controls-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.control-button,
.action-button,
.primary-button,
.ghost-button {
  border: 0;
  border-radius: 18px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  transition:
    transform 160ms ease,
    filter 160ms ease,
    background 160ms ease;
}

.control-button,
.action-button {
  padding: 15px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.control-button.active,
.action-button.active,
.control-button:active,
.action-button:active,
.primary-button:active,
.ghost-button:active {
  transform: translateY(2px) scale(0.99);
  filter: brightness(1.08);
}

.control-button {
  min-height: 84px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 6px;
}

.control-button span,
.action-button {
  font-size: 1rem;
  font-weight: 700;
}

.rope-control {
  background:
    linear-gradient(180deg, rgba(105, 210, 162, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.05);
}

.action-button {
  width: 100%;
  margin-top: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 48%),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.88);
}

.jump-pad {
  margin-top: 0;
  min-height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 14px 10px;
  text-align: center;
  touch-action: none;
  pointer-events: none;
}

.jump-pad span {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  pointer-events: none;
}

.touch-hit-layer,
.touch-hit-button {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: inherit;
  appearance: none;
  -webkit-appearance: none;
  touch-action: none;
  color: transparent;
  font-size: 0;
}

.touch-hit-button:focus,
.touch-hit-button:focus-visible {
  outline: none;
}

.touch-control.active .joystick-zone,
.touch-control.active .action-visual {
  filter: brightness(1.08);
}

.primary-button,
.ghost-button {
  padding: 12px 18px;
  font-weight: 700;
}

.primary-button {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.ghost-button {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

kbd {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

#event-log {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.references-block ul {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

@media (max-width: 980px) {
  .app-shell {
    min-height: var(--app-height);
    height: var(--app-height);
    max-height: var(--app-height);
  }

  .layout {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .stage-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .app-shell {
    min-height: var(--app-height);
    height: var(--app-height);
    max-height: var(--app-height);
    padding:
      max(12px, env(safe-area-inset-top))
      max(12px, env(safe-area-inset-right))
      max(12px, env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
    gap: 10px;
  }

  .topbar {
    align-items: center;
    gap: 10px;
  }

  .topbar h1 {
    font-size: 1.55rem;
  }

  .ghost-button {
    padding: 10px 14px;
  }

  .layout {
    gap: 10px;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .stage-card {
    min-height: 0;
    border-radius: 22px;
  }

  .touch-panel {
    padding: 6px 8px;
    border-radius: 16px;
  }

  .touch-surface {
    grid-template-columns: minmax(0, 1fr) 90px;
    gap: 8px;
  }

  .joystick-control {
    width: min(100%, 140px);
  }

  .joystick-zone {
    width: 100%;
  }

  .jump-pad {
    padding: 8px 6px;
    border-radius: 14px;
  }

  .jump-pad span {
    font-size: 0.75rem;
  }

  .joystick-knob {
    width: 32px;
    height: 32px;
  }

  .overlay {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .modal-card {
    padding: 16px;
    border-radius: 16px;
    max-height: 85vh;
  }

  .modal-header {
    margin-bottom: 14px;
  }

  .modal-header h2 {
    font-size: 1.2rem;
  }

  .settings-content {
    gap: 10px;
  }

  .setting-item {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
  }

  .setting-item label {
    width: 100%;
    font-size: 0.9rem;
  }

  .setting-item > *:not(label) {
    flex: 1;
    min-width: 80px;
  }

  #dev-password {
    width: 100% !important;
    flex: 1;
  }

  #dev-unlock,
  #dev-exit,
  #god-mode-toggle,
  #dev-add-xp {
    flex: 1;
    min-width: 70px;
  }

  #xp-change-log {
    width: 100%;
    text-align: center;
    margin: 4px 0;
  }

  #god-mode-hint {
    width: 100%;
    text-align: center;
    margin-top: -4px;
  }

  .danger-btn {
    width: 100%;
    padding: 12px;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: grid;
  place-items: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay.hidden {
  display: none;
}

.modal-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 24px;
  max-width: 480px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.4rem;
}

.modal-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.modal-close:hover {
  color: var(--ink);
}

.stats-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

.stats-details h3 {
  font-size: 1rem;
  margin: 16px 0 12px;
  color: var(--ink);
}

.difficulty-stats {
  display: grid;
  gap: 8px;
}

.diff-stat {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.diff-name {
  color: var(--ink);
}

.diff-value {
  color: var(--muted);
}

.best-stats {
  display: grid;
  gap: 8px;
}

.best-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.best-label {
  color: var(--muted);
}

.best-value {
  color: var(--accent);
  font-weight: 700;
}

.achievements-content {
  display: grid;
  gap: 10px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.achievement-item.locked {
  opacity: 0.5;
  filter: grayscale(0.8);
}

.achievement-icon {
  font-size: 1.8rem;
}

.achievement-info {
  flex: 1;
}

.achievement-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

.achievement-desc {
  font-size: 0.8rem;
  color: var(--muted);
}

.achievement-progress {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 4px;
  font-weight: 600;
}

.achievement-xp {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
}

.settings-content {
  display: grid;
  gap: 16px;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.setting-item label {
  color: var(--ink);
}

.toggle-btn {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
}

.toggle-btn.active {
  background: rgba(105, 210, 162, 0.2);
  border-color: var(--success);
  color: var(--success);
}

.danger-btn {
  padding: 8px 16px;
  border: 1px solid rgba(255, 111, 97, 0.4);
  border-radius: 10px;
  background: rgba(255, 111, 97, 0.1);
  color: var(--danger);
  cursor: pointer;
}

.danger-btn:hover {
  background: rgba(255, 111, 97, 0.2);
}
