:root {
  --view0193b-ink: #1a1a1a;
  --view0193b-ink-soft: #25231f;
  --view0193b-panel: #302c24;
  --view0193b-orange: #ff8c00;
  --view0193b-orange-deep: #cc6500;
  --view0193b-gold: #ffef94;
  --view0193b-cream: #fffacd;
  --view0193b-white: #fffef4;
  --view0193b-muted: #d8cfad;
  --view0193b-line: rgba(255, 239, 148, 0.22);
  --view0193b-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  --view0193b-header-height: 116px;
  --view0193b-bottom-height: 70px;
  --view0193b-title-font: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --view0193b-body-font: Aptos, Candara, Calibri, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: #0d0d0c;
  color-scheme: dark;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 140, 0, 0.16), transparent 26rem),
    repeating-linear-gradient(135deg, rgba(255, 239, 148, 0.018) 0 1px, transparent 1px 12px),
    var(--view0193b-ink);
  color: var(--view0193b-cream);
  font-family: var(--view0193b-body-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.62;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: var(--view0193b-gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--view0193b-white);
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--view0193b-gold);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--view0193b-white);
  font-family: var(--view0193b-title-font);
  line-height: 1.12;
}

h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.85rem, 8vw, 2.65rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.42rem, 6.1vw, 2rem);
  letter-spacing: -0.032em;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.06rem;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1rem;
}

.view0193b-skip {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 0.65rem 0.9rem;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--view0193b-gold);
  color: var(--view0193b-ink);
  font-weight: 800;
}

.view0193b-skip:focus {
  transform: translateY(0);
}

.view0193b-shell {
  width: min(100%, 430px);
  min-height: 100vh;
  margin-inline: auto;
  border-inline: 1px solid rgba(255, 239, 148, 0.1);
  background: rgba(26, 26, 26, 0.9);
  box-shadow: 0 0 55px rgba(0, 0, 0, 0.52);
}

.view0193b-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 50%;
  width: min(100%, 430px);
  transform: translateX(-50%);
  border-bottom: 1px solid var(--view0193b-line);
  background: rgba(26, 26, 26, 0.96);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.view0193b-brand-row {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.52rem 0.72rem 0.38rem;
}

.view0193b-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.6rem;
  color: var(--view0193b-white);
  text-decoration: none;
}

.view0193b-brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 2px solid var(--view0193b-orange);
  border-radius: 12px 5px 12px 5px;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.11);
}

.view0193b-brand-name {
  overflow: hidden;
  font-family: var(--view0193b-title-font);
  font-size: 1.26rem;
  letter-spacing: 0.035em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.view0193b-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.38rem;
}

.view0193b-action,
.view0193b-menu-toggle {
  min-height: 44px;
  border: 1px solid var(--view0193b-orange);
  border-radius: 7px;
  background: transparent;
  color: var(--view0193b-cream);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.view0193b-action {
  padding: 0.7rem 0.58rem;
}

.view0193b-action:last-child {
  background: var(--view0193b-orange);
  color: var(--view0193b-ink);
}

.view0193b-route-row {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 54px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.36rem 0.72rem 0.52rem;
}

.view0193b-route-hint {
  margin: 0;
  overflow: hidden;
  color: var(--view0193b-muted);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.view0193b-menu-toggle {
  display: inline-flex;
  min-width: 88px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.68rem 0.78rem;
}

.view0193b-menu-icon {
  position: relative;
  width: 17px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transition: transform 180ms ease;
}

.view0193b-menu-icon::after {
  position: absolute;
  top: 3px;
  left: 0;
  width: 17px;
  border-top: 2px solid currentColor;
  content: "";
  transition: opacity 180ms ease;
}

.view0193b-menu-toggle[aria-expanded="true"] .view0193b-menu-icon {
  transform: rotate(90deg);
}

.view0193b-menu-toggle[aria-expanded="true"] .view0193b-menu-icon::after {
  opacity: 0;
}

.view0193b-route-panel {
  position: fixed;
  z-index: 75;
  top: var(--view0193b-header-height);
  left: 50%;
  width: min(100%, 430px);
  max-height: calc(100dvh - var(--view0193b-header-height) - var(--view0193b-bottom-height));
  padding: 0.8rem;
  overflow-y: auto;
  transform: translate(-50%, -112%);
  border-bottom: 2px solid var(--view0193b-orange);
  background: linear-gradient(180deg, #28251f 0%, #171716 100%);
  box-shadow: var(--view0193b-shadow);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms ease, opacity 180ms ease;
}

.view0193b-route-panel[aria-hidden="false"] {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.view0193b-route-panel-title {
  margin: 0 0 0.55rem;
  color: var(--view0193b-orange);
  font-family: var(--view0193b-title-font);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.view0193b-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.46rem;
}

.view0193b-route-grid a {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 0.62rem 0.72rem;
  border-left: 3px solid var(--view0193b-orange);
  border-radius: 3px;
  background: rgba(255, 250, 205, 0.06);
  color: var(--view0193b-cream);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.view0193b-route-grid a:hover,
.view0193b-route-grid a:focus-visible {
  background: rgba(255, 140, 0, 0.18);
}

.view0193b-main {
  padding-top: var(--view0193b-header-height);
  padding-bottom: calc(var(--view0193b-bottom-height) + 1.2rem + env(safe-area-inset-bottom));
}

.view0193b-hero {
  position: relative;
  isolation: isolate;
  padding: 1.25rem 0.85rem 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--view0193b-line);
}

.view0193b-hero::before {
  position: absolute;
  z-index: -1;
  top: -42px;
  right: -58px;
  width: 180px;
  height: 180px;
  transform: rotate(22deg);
  border: 1px solid rgba(255, 140, 0, 0.28);
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.22), transparent 64%);
  content: "";
}

.view0193b-kicker {
  display: inline-flex;
  margin-bottom: 0.72rem;
  align-items: center;
  gap: 0.4rem;
  color: var(--view0193b-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.view0193b-kicker::before {
  width: 24px;
  border-top: 3px solid currentColor;
  content: "";
}

.view0193b-lead {
  max-width: 37rem;
  color: var(--view0193b-gold);
  font-size: 1.03rem;
  line-height: 1.55;
}

.view0193b-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}

.view0193b-primary,
.view0193b-secondary,
.view0193b-inline-promo {
  min-height: 46px;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 900;
}

.view0193b-primary,
.view0193b-secondary {
  width: 100%;
  padding: 0.7rem 0.8rem;
}

.view0193b-primary {
  border: 1px solid var(--view0193b-orange);
  background: var(--view0193b-orange);
  color: var(--view0193b-ink);
  box-shadow: 4px 4px 0 var(--view0193b-gold);
}

.view0193b-secondary {
  border: 1px solid var(--view0193b-gold);
  background: transparent;
  color: var(--view0193b-gold);
}

.view0193b-primary:active,
.view0193b-secondary:active,
.view0193b-inline-promo:active {
  transform: translateY(2px);
}

.view0193b-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1rem 0 0;
  padding: 0;
  border-block: 1px solid var(--view0193b-line);
  list-style: none;
}

.view0193b-trust-strip li {
  padding: 0.62rem 0.35rem;
  color: var(--view0193b-muted);
  font-size: 0.7rem;
  line-height: 1.25;
  text-align: center;
}

.view0193b-trust-strip li + li {
  border-left: 1px solid var(--view0193b-line);
}

.view0193b-slider {
  position: relative;
  margin-top: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--view0193b-line);
  border-radius: 4px;
  background: #111;
  box-shadow: var(--view0193b-shadow);
}

.view0193b-slides {
  display: flex;
  transition: transform 420ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.view0193b-slide {
  position: relative;
  min-width: 100%;
  margin: 0;
  border: 0;
  background: #111;
  color: var(--view0193b-white);
  cursor: pointer;
}

.view0193b-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.view0193b-slide span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.8rem 0.8rem 0.7rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
  color: var(--view0193b-white);
  font-family: var(--view0193b-title-font);
  font-size: 0.92rem;
  text-align: left;
}

.view0193b-slider-controls {
  position: absolute;
  z-index: 2;
  top: 0.48rem;
  right: 0.48rem;
  display: flex;
  gap: 0.35rem;
}

.view0193b-slider-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 250, 205, 0.6);
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.78);
  color: var(--view0193b-white);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
}

.view0193b-slider-dots {
  position: absolute;
  z-index: 2;
  bottom: 0.52rem;
  left: 0.55rem;
  display: flex;
  gap: 0.32rem;
}

.view0193b-slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
}

.view0193b-slider-dot[aria-current="true"] {
  width: 22px;
  border-radius: 999px;
  background: var(--view0193b-orange);
}

.view0193b-section {
  padding: 1.45rem 0.85rem;
  border-bottom: 1px solid var(--view0193b-line);
}

.view0193b-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.view0193b-section-head h2 {
  margin: 0;
}

.view0193b-section-index {
  color: var(--view0193b-orange);
  font-family: var(--view0193b-title-font);
  font-size: 1.7rem;
  line-height: 1;
}

.view0193b-summary-band {
  margin: 0 0 1rem;
  padding: 0.72rem 0.78rem;
  border-left: 4px solid var(--view0193b-orange);
  background: linear-gradient(90deg, rgba(255, 140, 0, 0.14), transparent);
  color: var(--view0193b-gold);
  font-weight: 600;
}

.view0193b-category-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.8rem 0 0.9rem;
}

.view0193b-category-links a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border-bottom: 2px solid var(--view0193b-orange);
  background: rgba(255, 250, 205, 0.055);
  color: var(--view0193b-gold);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.view0193b-game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.46rem;
}

.view0193b-game {
  width: 100%;
  min-width: 0;
  min-height: 106px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 239, 148, 0.16);
  border-radius: 3px;
  background: #25221d;
  color: var(--view0193b-cream);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.view0193b-game:hover,
.view0193b-game:focus-visible {
  transform: translateY(-2px);
  border-color: var(--view0193b-orange);
  background: #332b20;
}

.view0193b-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #111;
}

.view0193b-game span {
  display: -webkit-box;
  min-height: 38px;
  padding: 0.36rem 0.3rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  color: var(--view0193b-cream);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.15;
  -webkit-line-clamp: 2;
}

.view0193b-game-note {
  margin: 0.78rem 0 0;
  color: var(--view0193b-muted);
  font-size: 0.78rem;
}

.view0193b-two-track {
  display: grid;
  gap: 0.72rem;
}

.view0193b-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
  margin: 0.8rem 0 1rem;
}

.view0193b-compare-column {
  padding: 0.76rem;
  border-top: 3px solid var(--view0193b-orange);
  background: rgba(255, 250, 205, 0.055);
}

.view0193b-compare-column:last-child {
  border-color: var(--view0193b-gold);
}

.view0193b-compare-column h3 {
  color: var(--view0193b-orange);
  font-size: 0.94rem;
}

.view0193b-compare-column p,
.view0193b-compare-column li {
  color: var(--view0193b-muted);
  font-size: 0.82rem;
}

.view0193b-compare-column ul {
  margin: 0;
  padding-left: 1rem;
}

.view0193b-steps {
  margin: 0;
  padding: 0;
  counter-reset: view0193b-step;
  list-style: none;
}

.view0193b-step {
  position: relative;
  min-height: 72px;
  padding: 0.1rem 0 1.05rem 3.5rem;
  counter-increment: view0193b-step;
}

.view0193b-step::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--view0193b-orange);
  border-radius: 9px 3px 9px 3px;
  background: rgba(255, 140, 0, 0.1);
  color: var(--view0193b-orange);
  content: counter(view0193b-step, decimal-leading-zero);
  font-family: var(--view0193b-title-font);
  font-size: 0.84rem;
}

.view0193b-step:not(:last-child)::after {
  position: absolute;
  top: 45px;
  bottom: 3px;
  left: 21px;
  border-left: 1px dashed rgba(255, 239, 148, 0.3);
  content: "";
}

.view0193b-step h3 {
  margin-bottom: 0.25rem;
}

.view0193b-step p {
  margin: 0;
  color: var(--view0193b-muted);
  font-size: 0.88rem;
}

.view0193b-inline-promo {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0.25rem 0 0.9rem;
  padding: 0.62rem 0.85rem;
  border: 1px solid var(--view0193b-orange);
  background: rgba(255, 140, 0, 0.1);
  color: var(--view0193b-gold);
}

.view0193b-review-list {
  display: grid;
  gap: 0.65rem;
}

.view0193b-review {
  position: relative;
  margin: 0;
  padding: 0.9rem 0.82rem 0.8rem 1rem;
  border-right: 1px solid var(--view0193b-line);
  border-bottom: 1px solid var(--view0193b-line);
  background: linear-gradient(135deg, rgba(255, 239, 148, 0.07), transparent);
}

.view0193b-review::before {
  position: absolute;
  top: -0.2rem;
  left: 0.35rem;
  color: var(--view0193b-orange);
  content: "“";
  font-family: Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.view0193b-review p {
  margin: 0 0 0.45rem;
  padding-left: 0.55rem;
  color: var(--view0193b-cream);
  font-size: 0.9rem;
}

.view0193b-review cite {
  display: block;
  color: var(--view0193b-muted);
  font-size: 0.73rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.view0193b-checklist {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.view0193b-checklist li {
  position: relative;
  padding: 0.68rem 0.7rem 0.68rem 2.2rem;
  border-left: 2px solid var(--view0193b-orange);
  background: rgba(255, 250, 205, 0.05);
  color: var(--view0193b-muted);
  font-size: 0.88rem;
}

.view0193b-checklist li::before {
  position: absolute;
  top: 0.68rem;
  left: 0.7rem;
  color: var(--view0193b-orange);
  content: "✓";
  font-weight: 900;
}

.view0193b-callout {
  margin-top: 1rem;
  padding: 0.88rem;
  border: 1px solid var(--view0193b-orange);
  background:
    linear-gradient(120deg, rgba(255, 140, 0, 0.18), rgba(255, 239, 148, 0.04)),
    #211f1b;
}

.view0193b-callout h3 {
  color: var(--view0193b-gold);
}

.view0193b-callout p {
  color: var(--view0193b-muted);
  font-size: 0.86rem;
}

.view0193b-mini-faq details {
  border-bottom: 1px solid var(--view0193b-line);
}

.view0193b-mini-faq summary {
  min-height: 48px;
  padding: 0.72rem 1.5rem 0.72rem 0;
  color: var(--view0193b-gold);
  cursor: pointer;
  font-family: var(--view0193b-title-font);
  font-size: 0.94rem;
}

.view0193b-mini-faq details p {
  padding-bottom: 0.75rem;
  color: var(--view0193b-muted);
  font-size: 0.86rem;
}

.view0193b-directory {
  padding: 1.35rem 0.85rem;
  background:
    linear-gradient(160deg, rgba(255, 140, 0, 0.14), transparent 42%),
    #121211;
}

.view0193b-directory-brand {
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--view0193b-line);
}

.view0193b-directory-brand strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--view0193b-orange);
  font-family: var(--view0193b-title-font);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.view0193b-directory-brand p {
  margin: 0;
  color: var(--view0193b-muted);
  font-size: 0.85rem;
}

.view0193b-directory-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 0.65rem;
}

.view0193b-directory-group h2 {
  margin: 0 0 0.48rem;
  color: var(--view0193b-orange);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.view0193b-directory-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.view0193b-directory-list li + li {
  margin-top: 0.35rem;
}

.view0193b-directory-list a {
  display: inline-block;
  min-height: 44px;
  padding: 0.52rem 0;
  color: var(--view0193b-cream);
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.view0193b-directory-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.46rem;
  margin-top: 1rem;
}

.view0193b-directory-actions button {
  min-height: 46px;
  padding: 0.62rem;
  border: 1px solid var(--view0193b-orange);
  border-radius: 6px;
  background: transparent;
  color: var(--view0193b-gold);
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 900;
}

.view0193b-directory-actions button:nth-child(2),
.view0193b-directory-actions button:nth-child(3) {
  background: var(--view0193b-orange);
  color: var(--view0193b-ink);
}

.view0193b-disclaimer {
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--view0193b-line);
  color: var(--view0193b-muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.view0193b-copyright {
  min-height: 54px;
  padding: 1rem 0.85rem;
  border-top: 1px solid var(--view0193b-line);
  background: #0d0d0c;
  color: var(--view0193b-muted);
  font-size: 0.76rem;
  text-align: center;
}

.view0193b-bottom-nav {
  position: fixed;
  z-index: 90;
  bottom: 0;
  left: 50%;
  display: grid;
  width: min(100%, 430px);
  min-height: var(--view0193b-bottom-height);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0.28rem 0.25rem calc(0.24rem + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  border-top: 2px solid var(--view0193b-orange);
  background: rgba(17, 17, 16, 0.98);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}

.view0193b-bottom-link,
.view0193b-bottom-button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  padding: 0.28rem 0.12rem;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--view0193b-muted);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.view0193b-bottom-link[aria-current="page"] {
  background: rgba(255, 140, 0, 0.12);
  color: var(--view0193b-orange);
}

.view0193b-bottom-link[aria-current="page"]::before {
  position: absolute;
  top: -0.28rem;
  left: 26%;
  width: 48%;
  border-top: 3px solid var(--view0193b-gold);
  content: "";
}

.view0193b-bottom-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.view0193b-bottom-link:hover .view0193b-bottom-icon,
.view0193b-bottom-button:hover .view0193b-bottom-icon,
.view0193b-bottom-link:focus-visible .view0193b-bottom-icon,
.view0193b-bottom-button:focus-visible .view0193b-bottom-icon {
  transform: translateY(-2px) scale(1.07);
}

.view0193b-bottom-button:nth-child(2),
.view0193b-bottom-button:nth-child(3) {
  color: var(--view0193b-gold);
}

.view0193b-no-scroll {
  overflow: hidden;
}

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

  .view0193b-game {
    min-height: 103px;
  }

  .view0193b-action {
    padding-inline: 0.7rem;
  }
}

@media (max-width: 349px) {
  :root {
    --view0193b-header-height: 112px;
  }

  .view0193b-brand-row,
  .view0193b-route-row {
    padding-inline: 0.48rem;
  }

  .view0193b-brand img {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .view0193b-brand-name {
    font-size: 1.02rem;
  }

  .view0193b-action {
    padding-inline: 0.42rem;
    font-size: 0.68rem;
  }

  .view0193b-route-hint {
    font-size: 0.68rem;
  }

  .view0193b-section,
  .view0193b-hero,
  .view0193b-directory {
    padding-inline: 0.65rem;
  }

  .view0193b-game-grid {
    gap: 0.34rem;
  }

  .view0193b-game span {
    padding-inline: 0.2rem;
    font-size: 0.61rem;
  }
}

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

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