.hero-mini-game {
  position: absolute;
  /* When --main-gutter is 0 (mobile #main), align with section card margins (10px) + safe-area. */
  left: max(var(--main-gutter), 10px, env(safe-area-inset-left, 0px));
  right: max(var(--main-gutter), 10px, env(safe-area-inset-right, 0px));
  bottom: 0;
  width: auto;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-mini-game__toolbar {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 0.4rem;
}

.hero-mini-game__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.45rem;
}

.hero-mini-game__start,
.hero-mini-game__share {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: transparent;
  color: rgba(245, 245, 247, 0.42);
  font: 500 0.68rem/1 var(--font-body);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.32rem 0.62rem;
  cursor: pointer;
}

.hero-mini-game__start:hover,
.hero-mini-game__share:hover {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 245, 247, 0.72);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-mini-game__start:focus-visible,
.hero-mini-game__share:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.hero-mini-game__share[hidden] {
  display: none !important;
}

.hero-dino-game {
  width: 100%;
  max-width: 760px;
  align-self: center;
}

.hero-dino-game[hidden] {
  display: none !important;
}

.hero-dino-game__track {
  position: relative;
  width: 100%;
  height: 58px;
  overflow: hidden;
}

.hero-dino-game__track::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(245, 245, 247, 0.52);
}

.hero-dino-game__dino {
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cg%20fill%3D%22%23000%22%3E%3Crect%20x%3D%2211%22%20y%3D%222%22%20width%3D%225%22%20height%3D%225%22%2F%3E%3Crect%20x%3D%227%22%20y%3D%226%22%20width%3D%228%22%20height%3D%226%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%229%22%20width%3D%225%22%20height%3D%223%22%2F%3E%3Crect%20x%3D%227%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%225%22%2F%3E%3Crect%20x%3D%2211%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%223%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  filter: brightness(0) invert(1);
}

.hero-dino-game__dino.hero-dino-game__dino--run1 {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cg%20fill%3D%22%23000%22%3E%3Crect%20x%3D%2211%22%20y%3D%222%22%20width%3D%225%22%20height%3D%225%22%2F%3E%3Crect%20x%3D%227%22%20y%3D%226%22%20width%3D%228%22%20height%3D%226%22%2F%3E%3Crect%20x%3D%223%22%20y%3D%229%22%20width%3D%225%22%20height%3D%223%22%2F%3E%3Crect%20x%3D%226%22%20y%3D%2214%22%20width%3D%223%22%20height%3D%223%22%2F%3E%3Crect%20x%3D%2211%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%225%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.hero-dino-game__dino::before {
  content: none;
}

.hero-dino-game__dino::after {
  content: none;
}

.hero-dino-game__cacti {
  position: absolute;
  inset: 0;
}

.hero-dino-game__cactus {
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 9px;
  height: 13px;
  border: 1px solid rgba(241, 245, 249, 0.88);
  border-radius: 2px;
  background: rgba(241, 245, 249, 0.08);
}

.hero-dino-game__cactus::before,
.hero-dino-game__cactus::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 4px;
  top: 5px;
  border: 1px solid rgba(241, 245, 249, 0.88);
  background: rgba(241, 245, 249, 0.08);
}

.hero-dino-game__cactus::before {
  left: -3px;
  border-right: 0;
}

.hero-dino-game__cactus::after {
  right: -3px;
  border-left: 0;
}

.hero-dino-game__bird {
  position: absolute;
  left: 0;
  width: 16px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2016%2012%22%3E%3Cg%20transform%3D%22translate(16%200)%20scale(-1%201)%22%20fill%3D%22%23f1f5f9%22%3E%3Crect%20x%3D%225%22%20y%3D%224%22%20width%3D%226%22%20height%3D%223%22/%3E%3Crect%20x%3D%227%22%20y%3D%223%22%20width%3D%225%22%20height%3D%221%22/%3E%3Crect%20x%3D%229%22%20y%3D%222%22%20width%3D%223%22%20height%3D%221%22/%3E%3Crect%20x%3D%2212%22%20y%3D%224%22%20width%3D%222%22%20height%3D%221%22/%3E%3Crect%20x%3D%223%22%20y%3D%225%22%20width%3D%222%22%20height%3D%221%22/%3E%3Crect%20x%3D%221%22%20y%3D%226%22%20width%3D%222%22%20height%3D%221%22/%3E%3Crect%20x%3D%220%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22/%3E%3Crect%20x%3D%224%22%20y%3D%227%22%20width%3D%223%22%20height%3D%221%22/%3E%3Crect%20x%3D%225%22%20y%3D%228%22%20width%3D%223%22%20height%3D%221%22/%3E%3Crect%20x%3D%226%22%20y%3D%229%22%20width%3D%222%22%20height%3D%221%22/%3E%3Crect%20x%3D%229%22%20y%3D%227%22%20width%3D%221%22%20height%3D%222%22/%3E%3Crect%20x%3D%2210%22%20y%3D%227%22%20width%3D%221%22%20height%3D%221%22/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.hero-dino-game__bird.hero-dino-game__bird--flap1 {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2016%2012%22%3E%3Cg%20transform%3D%22translate(16%200)%20scale(-1%201)%22%20fill%3D%22%23f1f5f9%22%3E%3Crect%20x%3D%225%22%20y%3D%225%22%20width%3D%226%22%20height%3D%223%22/%3E%3Crect%20x%3D%227%22%20y%3D%224%22%20width%3D%225%22%20height%3D%221%22/%3E%3Crect%20x%3D%229%22%20y%3D%223%22%20width%3D%223%22%20height%3D%221%22/%3E%3Crect%20x%3D%2212%22%20y%3D%225%22%20width%3D%222%22%20height%3D%221%22/%3E%3Crect%20x%3D%223%22%20y%3D%223%22%20width%3D%222%22%20height%3D%221%22/%3E%3Crect%20x%3D%221%22%20y%3D%224%22%20width%3D%222%22%20height%3D%221%22/%3E%3Crect%20x%3D%220%22%20y%3D%225%22%20width%3D%221%22%20height%3D%221%22/%3E%3Crect%20x%3D%224%22%20y%3D%226%22%20width%3D%223%22%20height%3D%221%22/%3E%3Crect%20x%3D%225%22%20y%3D%227%22%20width%3D%223%22%20height%3D%221%22/%3E%3Crect%20x%3D%226%22%20y%3D%228%22%20width%3D%222%22%20height%3D%221%22/%3E%3Crect%20x%3D%229%22%20y%3D%228%22%20width%3D%221%22%20height%3D%222%22/%3E%3Crect%20x%3D%2210%22%20y%3D%228%22%20width%3D%221%22%20height%3D%221%22/%3E%3C/g%3E%3C/svg%3E");
}

.hero-dino-game__score {
  position: absolute;
  right: 4px;
  /* Above tallest cactus (JS: up to 17px tall, bottom 1px) + small gap */
  bottom: calc(1px + 17px + 4px);
  color: rgba(245, 245, 247, 0.88);
  font: 600 0.7rem/1 var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  text-align: right;
  z-index: 1;
}

@media (max-width: 700px) {
  .hero-dino-game {
    width: min(100%, 560px);
  }
}

@media print {
  .hero-mini-game {
    display: none !important;
  }
}
