@charset "UTF-8";

:root {
  --frameb4dd5-ink: #0d1117;
  --frameb4dd5-ink-soft: #151b23;
  --frameb4dd5-panel: #1d1713;
  --frameb4dd5-panel-warm: #271a13;
  --frameb4dd5-copper: #d2691e;
  --frameb4dd5-copper-bright: #f28a3b;
  --frameb4dd5-brown: #8b4513;
  --frameb4dd5-cream: #fff3df;
  --frameb4dd5-muted: #cdbba9;
  --frameb4dd5-line: rgba(242, 138, 59, 0.25);
  --frameb4dd5-safe: #55c69a;
  --frameb4dd5-danger: #f3ba55;
  --frameb4dd5-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  --frameb4dd5-header-height: 118px;
  --frameb4dd5-bottom-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #080b0f;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--frameb4dd5-cream);
  background:
    radial-gradient(circle at 16% 8%, rgba(210, 105, 30, 0.16), transparent 28rem),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 12px),
    var(--frameb4dd5-ink);
  font-family: "Avenir Next Condensed", "Roboto Condensed", "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
}

body.frameb4dd5-menu-locked {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--frameb4dd5-copper-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #fff2a9;
  outline-offset: 3px;
}

button {
  font: inherit;
}

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

.frameb4dd5-canvas {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(13, 17, 23, 0.2), rgba(13, 17, 23, 0.95)),
    var(--frameb4dd5-ink);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.55);
}

.frameb4dd5-skip {
  position: fixed;
  z-index: 120;
  top: 8px;
  left: 50%;
  transform: translate(-50%, -150%);
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--frameb4dd5-ink);
  background: var(--frameb4dd5-cream);
  font-weight: 800;
}

.frameb4dd5-skip:focus {
  transform: translate(-50%, 0);
}

.frameb4dd5-top {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 50%;
  width: min(100%, 430px);
  transform: translateX(-50%);
  border-bottom: 1px solid var(--frameb4dd5-line);
  background: rgba(13, 17, 23, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(15px);
}

.frameb4dd5-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 8px 10px 6px 13px;
}

.frameb4dd5-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--frameb4dd5-cream);
  text-decoration: none;
}

.frameb4dd5-brand img {
  width: 40px;
  height: 40px;
  margin-right: 9px;
  border: 2px solid rgba(242, 138, 59, 0.55);
  border-radius: 13px 5px 13px 5px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(210, 105, 30, 0.24);
}

.frameb4dd5-brand-name {
  overflow: hidden;
  font-family: "Trebuchet MS", "Avenir Next Rounded", sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.frameb4dd5-menu-button {
  display: inline-grid;
  width: 45px;
  height: 45px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--frameb4dd5-line);
  border-radius: 50% 50% 12px 50%;
  color: var(--frameb4dd5-cream);
  background: #201914;
  cursor: pointer;
}

.frameb4dd5-menu-button-lines,
.frameb4dd5-menu-button-lines::before,
.frameb4dd5-menu-button-lines::after {
  width: 19px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.frameb4dd5-menu-button-lines {
  position: relative;
}

.frameb4dd5-menu-button-lines::before,
.frameb4dd5-menu-button-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.frameb4dd5-menu-button-lines::before {
  top: -6px;
}

.frameb4dd5-menu-button-lines::after {
  top: 6px;
}

.frameb4dd5-menu-button[aria-expanded="true"] .frameb4dd5-menu-button-lines {
  background: transparent;
}

.frameb4dd5-menu-button[aria-expanded="true"] .frameb4dd5-menu-button-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.frameb4dd5-menu-button[aria-expanded="true"] .frameb4dd5-menu-button-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.frameb4dd5-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 0 10px 9px;
}

.frameb4dd5-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--frameb4dd5-copper);
  border-radius: 8px 2px 8px 2px;
  color: var(--frameb4dd5-cream);
  background: transparent;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
}

.frameb4dd5-action-primary {
  border-color: var(--frameb4dd5-copper-bright);
  color: #180c04;
  background: linear-gradient(135deg, #ffb06e, var(--frameb4dd5-copper));
  box-shadow: 0 5px 14px rgba(210, 105, 30, 0.28);
}

.frameb4dd5-action:active,
.frameb4dd5-menu-button:active,
.frameb4dd5-promo-button:active,
.frameb4dd5-game:active,
.frameb4dd5-bottom-item:active {
  transform: translateY(1px) scale(0.98);
}

.frameb4dd5-drawer-shade {
  position: fixed;
  z-index: 84;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.64);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.frameb4dd5-drawer-shade.frameb4dd5-is-open {
  visibility: visible;
  opacity: 1;
}

.frameb4dd5-drawer {
  position: fixed;
  z-index: 86;
  top: 0;
  right: max(0px, calc((100vw - 430px) / 2));
  width: min(88vw, 365px);
  height: 100dvh;
  padding: 18px 14px calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  transform: translateX(110%);
  border-left: 1px solid var(--frameb4dd5-line);
  background:
    radial-gradient(circle at 90% 2%, rgba(210, 105, 30, 0.22), transparent 20rem),
    #11161d;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.48);
  transition: transform 210ms ease;
}

.frameb4dd5-drawer.frameb4dd5-is-open {
  transform: translateX(0);
}

.frameb4dd5-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 17px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--frameb4dd5-line);
}

.frameb4dd5-drawer-title {
  margin: 0;
  font-family: "Trebuchet MS", "Avenir Next Rounded", sans-serif;
  font-size: 1.18rem;
}

.frameb4dd5-drawer-close {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--frameb4dd5-line);
  border-radius: 50%;
  color: var(--frameb4dd5-cream);
  background: #201914;
  font-size: 1.5rem;
  cursor: pointer;
}

.frameb4dd5-drawer-links {
  display: grid;
  gap: 7px;
}

.frameb4dd5-drawer-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px 2px 8px 2px;
  color: var(--frameb4dd5-cream);
  background: rgba(255, 255, 255, 0.025);
  font-weight: 750;
  text-decoration: none;
}

.frameb4dd5-drawer-link:hover,
.frameb4dd5-drawer-link[aria-current="page"] {
  border-color: var(--frameb4dd5-line);
  color: var(--frameb4dd5-copper-bright);
  background: rgba(210, 105, 30, 0.1);
}

.frameb4dd5-main {
  padding: calc(var(--frameb4dd5-header-height) + 12px) 10px calc(var(--frameb4dd5-bottom-height) + 34px);
}

.frameb4dd5-hero {
  position: relative;
  margin: 0 0 19px;
  overflow: hidden;
  border: 1px solid var(--frameb4dd5-line);
  border-radius: 22px 5px 22px 5px;
  background: var(--frameb4dd5-panel);
  box-shadow: var(--frameb4dd5-shadow);
}

.frameb4dd5-slides {
  position: relative;
  aspect-ratio: 16 / 9;
}

.frameb4dd5-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  border: 0;
  color: inherit;
  background: #24150e;
  cursor: pointer;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.frameb4dd5-slide.frameb4dd5-is-active {
  visibility: visible;
  opacity: 1;
}

.frameb4dd5-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frameb4dd5-slide::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(13, 17, 23, 0.86));
  content: "";
}

.frameb4dd5-hero-copy {
  position: relative;
  padding: 16px 15px 14px;
  background:
    linear-gradient(120deg, rgba(210, 105, 30, 0.11), transparent 58%),
    #171310;
}

.frameb4dd5-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 6px;
  color: #ffb574;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.frameb4dd5-eyebrow::before {
  width: 16px;
  height: 2px;
  background: currentColor;
  content: "";
}

.frameb4dd5-hero h1,
.frameb4dd5-section-title,
.frameb4dd5-copy h2,
.frameb4dd5-footer h2,
.frameb4dd5-footer h3 {
  font-family: "Trebuchet MS", "Avenir Next Rounded", sans-serif;
  line-height: 1.12;
}

.frameb4dd5-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.58rem, 7vw, 2.05rem);
  letter-spacing: -0.035em;
}

.frameb4dd5-hero p {
  margin: 0;
  color: var(--frameb4dd5-muted);
  font-size: 0.92rem;
}

.frameb4dd5-hero-actions {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 7px;
  margin-top: 13px;
}

.frameb4dd5-promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 9px 11px;
  border: 1px solid var(--frameb4dd5-copper-bright);
  border-radius: 10px 3px 10px 3px;
  color: #180c04;
  background: linear-gradient(135deg, #ffb271, var(--frameb4dd5-copper));
  box-shadow: 0 6px 16px rgba(210, 105, 30, 0.25);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.frameb4dd5-promo-button-secondary {
  color: var(--frameb4dd5-cream);
  background: transparent;
  box-shadow: none;
}

.frameb4dd5-slide-controls {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px 11px;
  background: #171310;
}

.frameb4dd5-slide-dot {
  width: 32px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.frameb4dd5-slide-dot::before {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: #594136;
  content: "";
}

.frameb4dd5-slide-dot[aria-current="true"]::before {
  background: var(--frameb4dd5-copper-bright);
}

.frameb4dd5-quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 0 0 23px;
}

.frameb4dd5-quick-item {
  min-width: 0;
  padding: 10px 7px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 5px 12px 5px 12px;
  background: linear-gradient(145deg, #201914, #151a21);
  text-align: center;
}

.frameb4dd5-quick-item strong,
.frameb4dd5-quick-item span {
  display: block;
}

.frameb4dd5-quick-item strong {
  color: var(--frameb4dd5-copper-bright);
  font-family: "Trebuchet MS", "Avenir Next Rounded", sans-serif;
  font-size: 1.08rem;
}

.frameb4dd5-quick-item span {
  color: var(--frameb4dd5-muted);
  font-size: 0.7rem;
  line-height: 1.2;
}

.frameb4dd5-category-jump {
  display: flex;
  gap: 7px;
  margin: 0 -10px 20px;
  padding: 0 10px 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.frameb4dd5-category-jump::-webkit-scrollbar {
  display: none;
}

.frameb4dd5-category-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--frameb4dd5-line);
  border-radius: 999px;
  color: var(--frameb4dd5-cream);
  background: #191a1b;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.frameb4dd5-category-link:hover {
  color: #1d0e04;
  background: var(--frameb4dd5-copper-bright);
}

.frameb4dd5-game-section {
  margin: 0 0 25px;
  scroll-margin-top: calc(var(--frameb4dd5-header-height) + 12px);
}

.frameb4dd5-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  padding: 0 2px 8px;
  border-bottom: 1px solid var(--frameb4dd5-line);
}

.frameb4dd5-section-title {
  margin: 0;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.frameb4dd5-section-count {
  flex: 0 0 auto;
  color: var(--frameb4dd5-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.frameb4dd5-game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.frameb4dd5-game {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px 2px 8px 2px;
  color: var(--frameb4dd5-cream);
  background: #18191a;
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.24);
  text-decoration: none;
  cursor: pointer;
}

.frameb4dd5-game:hover,
.frameb4dd5-game:focus-visible {
  border-color: var(--frameb4dd5-copper-bright);
}

.frameb4dd5-game-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #27170f;
}

.frameb4dd5-game-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  content: "";
}

.frameb4dd5-game img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.frameb4dd5-game:hover img {
  transform: scale(1.035);
}

.frameb4dd5-game-name {
  display: -webkit-box;
  min-height: 35px;
  padding: 5px 3px 4px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  overflow-wrap: anywhere;
}

.frameb4dd5-copy {
  margin: 29px 0 0;
}

.frameb4dd5-copy-block {
  position: relative;
  margin-bottom: 12px;
  padding: 17px 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px 18px 4px 18px;
  background:
    linear-gradient(140deg, rgba(210, 105, 30, 0.09), transparent 42%),
    var(--frameb4dd5-ink-soft);
}

.frameb4dd5-copy-block:nth-child(even) {
  border-radius: 18px 4px 18px 4px;
  background:
    linear-gradient(220deg, rgba(139, 69, 19, 0.13), transparent 46%),
    #191714;
}

.frameb4dd5-copy h2 {
  margin: 0 0 9px;
  color: var(--frameb4dd5-cream);
  font-size: 1.27rem;
  letter-spacing: -0.025em;
}

.frameb4dd5-copy h3 {
  margin: 15px 0 5px;
  color: #ffc08c;
  font-size: 0.98rem;
}

.frameb4dd5-copy p {
  margin: 0 0 10px;
  color: #dfd1c4;
}

.frameb4dd5-copy p:last-child {
  margin-bottom: 0;
}

.frameb4dd5-check-list,
.frameb4dd5-fact-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.frameb4dd5-check-list li,
.frameb4dd5-fact-list li {
  position: relative;
  padding: 9px 10px 9px 31px;
  border-left: 2px solid var(--frameb4dd5-copper);
  border-radius: 0 8px 8px 0;
  color: #dfd1c4;
  background: rgba(255, 255, 255, 0.035);
}

.frameb4dd5-check-list li::before,
.frameb4dd5-fact-list li::before {
  position: absolute;
  top: 9px;
  left: 10px;
  color: var(--frameb4dd5-copper-bright);
  font-weight: 900;
  content: "✓";
}

.frameb4dd5-review-rail {
  display: grid;
  grid-auto-columns: minmax(245px, 84%);
  grid-auto-flow: column;
  gap: 9px;
  margin: 12px -15px 0;
  padding: 0 15px 5px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.frameb4dd5-review {
  padding: 14px;
  border: 1px solid var(--frameb4dd5-line);
  border-radius: 13px 3px 13px 3px;
  background: #211914;
  scroll-snap-align: start;
}

.frameb4dd5-review p {
  font-size: 0.88rem;
}

.frameb4dd5-review footer {
  color: #ffb77d;
  font-size: 0.75rem;
  font-weight: 800;
}

.frameb4dd5-faq details {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px 2px 8px 2px;
  background: rgba(0, 0, 0, 0.12);
}

.frameb4dd5-faq summary {
  min-height: 44px;
  padding: 11px 32px 9px 11px;
  color: var(--frameb4dd5-cream);
  font-weight: 850;
  cursor: pointer;
}

.frameb4dd5-faq details p {
  padding: 0 11px 11px;
  color: var(--frameb4dd5-muted);
}

.frameb4dd5-relationship {
  display: grid;
  gap: 8px;
  margin-top: 11px;
}

.frameb4dd5-relation-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 9px;
  align-items: start;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.frameb4dd5-relation-row strong {
  color: var(--frameb4dd5-copper-bright);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.frameb4dd5-relation-row span {
  color: #dfd1c4;
  font-size: 0.85rem;
}

.frameb4dd5-footer {
  margin-top: 12px;
  padding: 25px 15px calc(var(--frameb4dd5-bottom-height) + 27px);
  border-top: 1px solid var(--frameb4dd5-line);
  background:
    radial-gradient(circle at 0 0, rgba(210, 105, 30, 0.2), transparent 17rem),
    #0a0d12;
}

.frameb4dd5-footer-brand {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 11px;
  align-items: center;
  margin-bottom: 17px;
}

.frameb4dd5-footer-brand img {
  width: 48px;
  height: 48px;
  border: 2px solid var(--frameb4dd5-copper);
  border-radius: 15px 5px 15px 5px;
  object-fit: cover;
}

.frameb4dd5-footer h2,
.frameb4dd5-footer h3 {
  margin: 0 0 8px;
}

.frameb4dd5-footer h2 {
  font-size: 1.18rem;
}

.frameb4dd5-footer h3 {
  font-size: 0.94rem;
  color: #ffc08c;
}

.frameb4dd5-footer p {
  margin: 0;
  color: var(--frameb4dd5-muted);
  font-size: 0.82rem;
}

.frameb4dd5-footer-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 16px 0 21px;
}

.frameb4dd5-footer-promo {
  min-height: 48px;
  padding: 8px 9px;
  border: 1px solid var(--frameb4dd5-copper);
  border-radius: 9px 3px 9px 3px;
  color: var(--frameb4dd5-cream);
  background: rgba(210, 105, 30, 0.1);
  font-weight: 850;
  cursor: pointer;
}

.frameb4dd5-footer-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 19px;
}

.frameb4dd5-footer-directory a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 7px 9px;
  border-left: 2px solid var(--frameb4dd5-brown);
  color: #ead9ca;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.frameb4dd5-footer-directory a:hover {
  border-color: var(--frameb4dd5-copper-bright);
  color: var(--frameb4dd5-copper-bright);
}

.frameb4dd5-disclaimer {
  padding: 12px;
  border: 1px solid rgba(243, 186, 85, 0.25);
  border-radius: 3px 12px 3px 12px;
  color: #d8c8b9;
  background: rgba(243, 186, 85, 0.055);
  font-size: 0.75rem;
}

.frameb4dd5-copyright {
  margin-top: 17px;
  color: #a99584;
  font-size: 0.72rem;
  text-align: center;
}

.frameb4dd5-bottom {
  position: fixed;
  z-index: 78;
  bottom: 0;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 430px);
  min-height: var(--frameb4dd5-bottom-height);
  padding: 6px 5px calc(6px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  border-top: 1px solid rgba(242, 138, 59, 0.3);
  background: rgba(10, 13, 18, 0.96);
  box-shadow: 0 -9px 25px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(16px);
}

.frameb4dd5-bottom-item {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 55px;
  padding: 5px 1px 3px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 0;
  border-radius: 8px 3px 8px 3px;
  color: #baa99a;
  background: transparent;
  font-size: 0.59rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.frameb4dd5-bottom-item[aria-current="page"] {
  color: var(--frameb4dd5-copper-bright);
  background: rgba(210, 105, 30, 0.1);
}

.frameb4dd5-bottom-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: currentColor;
}

.frameb4dd5-bottom-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.frameb4dd5-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.frameb4dd5-noscript {
  margin: calc(var(--frameb4dd5-header-height) + 8px) 10px 0;
  padding: 11px;
  border: 1px solid #e3a34a;
  color: #fff3df;
  background: #3a2413;
  text-align: center;
}

@media (min-width: 375px) {
  .frameb4dd5-game-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .frameb4dd5-game-name {
    font-size: 0.64rem;
  }
}

@media (min-width: 430px) {
  .frameb4dd5-main {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (max-width: 340px) {
  :root {
    --frameb4dd5-header-height: 114px;
  }

  .frameb4dd5-brand-name {
    font-size: 1rem;
  }

  .frameb4dd5-action {
    min-height: 42px;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.78rem;
  }

  .frameb4dd5-game-grid {
    gap: 5px;
  }

  .frameb4dd5-game-name {
    min-height: 33px;
    font-size: 0.57rem;
  }

  .frameb4dd5-bottom-item {
    font-size: 0.54rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Help pages use separate reading patterns while retaining the compact canvas. */
.frameb4dd5-help-lead,
.frameb4dd5-about-lead {
  margin: 0 0 15px;
  padding: 17px 15px;
  border: 1px solid var(--frameb4dd5-line);
  border-radius: 22px 5px 5px 22px;
  background: linear-gradient(135deg, rgba(210, 105, 30, 0.18), rgba(13, 17, 23, 0.72));
}

.frameb4dd5-help-lead h1,
.frameb4dd5-about-lead h1 {
  margin: 0 0 9px;
  color: var(--frameb4dd5-cream);
  font-family: "Trebuchet MS", "Avenir Next Rounded", sans-serif;
  font-size: clamp(1.6rem, 7vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.frameb4dd5-help-lead p,
.frameb4dd5-about-lead p {
  margin: 0;
  color: #dfd1c4;
}

.frameb4dd5-help-route {
  display: grid;
  gap: 8px;
  margin: 0 0 19px;
  padding: 12px;
  border-left: 3px solid var(--frameb4dd5-copper-bright);
  border-radius: 2px 13px 13px 2px;
  background: #19130f;
}

.frameb4dd5-help-route strong {
  color: #ffc08c;
}

.frameb4dd5-help-route span {
  color: var(--frameb4dd5-muted);
  font-size: 0.84rem;
}

.frameb4dd5-step-list {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: frameb4dd5-step;
}

.frameb4dd5-step-list li {
  position: relative;
  min-height: 58px;
  padding: 10px 10px 10px 45px;
  border: 1px solid rgba(242, 138, 59, 0.18);
  border-radius: 14px 3px 3px 14px;
  color: #dfd1c4;
  background: rgba(255, 255, 255, 0.035);
  counter-increment: frameb4dd5-step;
}

.frameb4dd5-step-list li::before {
  position: absolute;
  top: 10px;
  left: 11px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50% 4px 50% 50%;
  color: #180c04;
  background: var(--frameb4dd5-copper-bright);
  content: counter(frameb4dd5-step);
  font-weight: 900;
}

.frameb4dd5-step-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--frameb4dd5-cream);
}

.frameb4dd5-action-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 13px 0 2px;
}

.frameb4dd5-action-rail button {
  min-height: 46px;
  padding: 8px 9px;
  border: 1px solid var(--frameb4dd5-copper);
  border-radius: 10px 3px 10px 3px;
  color: var(--frameb4dd5-cream);
  background: rgba(210, 105, 30, 0.13);
  cursor: pointer;
  font-weight: 850;
}

.frameb4dd5-action-rail button:first-child {
  color: #180c04;
  background: linear-gradient(135deg, #ffb271, var(--frameb4dd5-copper));
}

.frameb4dd5-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 11px;
  color: #dfd1c4;
  font-size: 0.8rem;
}

.frameb4dd5-compare-table th,
.frameb4dd5-compare-table td {
  padding: 9px 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
  vertical-align: top;
}

.frameb4dd5-compare-table th {
  color: #ffc08c;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.frameb4dd5-compare-table tr:last-child td {
  border-bottom: 0;
}

.frameb4dd5-about-map {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.frameb4dd5-about-map div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 9px;
  padding: 10px;
  border-radius: 3px 12px 3px 12px;
  background: rgba(255, 255, 255, 0.04);
}

.frameb4dd5-about-map dt {
  color: var(--frameb4dd5-copper-bright);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.frameb4dd5-about-map dd {
  margin: 0;
  color: #dfd1c4;
  font-size: 0.84rem;
}

.frameb4dd5-choice-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.frameb4dd5-choice-list li {
  padding: 11px 12px;
  border-right: 3px solid var(--frameb4dd5-brown);
  border-radius: 12px 3px 12px 3px;
  background: linear-gradient(90deg, rgba(210, 105, 30, 0.08), rgba(255, 255, 255, 0.025));
}

.frameb4dd5-choice-list strong {
  display: block;
  color: #ffc08c;
}

@media (max-width: 340px) {
  .frameb4dd5-compare-table {
    font-size: 0.73rem;
  }

  .frameb4dd5-compare-table th,
  .frameb4dd5-compare-table td {
    padding-right: 4px;
    padding-left: 4px;
  }
}
