/* ==========================================================================
   scatter.click - base stylesheet (chrome-native-41ed0c.css)
   Palette: deep harbour #273746 / alice mist #F0F8FF / silver line #E9ECEF /
   deep-sky signal #00BFFF. Mobile canvas 320-430px, centered on wide screens.
   Class prefix: ui41ed0-
   ========================================================================== */

:root {
  --ui41ed0-ink: #273746;
  --ui41ed0-mist: #F0F8FF;
  --ui41ed0-line: #E9ECEF;
  --ui41ed0-signal: #00BFFF;
  --ui41ed0-shellW: 430px;
  --ui41ed0-rTile: 14px;
  --ui41ed0-rInner: 9px;
  --ui41ed0-rPill: 999px;
  --ui41ed0-headFont: "Century Gothic", "Poppins", "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  --ui41ed0-bodyFont: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ui41ed0-tap: 44px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ui41ed0-ink);
  color: var(--ui41ed0-mist);
  font-family: var(--ui41ed0-bodyFont);
  font-size: 15px;
  line-height: 1.55;
}

/* ---- centered phone canvas ------------------------------------------ */

.ui41ed0-shell {
  position: relative;
  width: 100%;
  max-width: var(--ui41ed0-shellW);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 191, 255, 0.14), transparent 55%),
    linear-gradient(180deg, #2c3e50 0%, #273746 42%, #222f3c 100%);
  box-shadow: 0 0 48px rgba(0, 0, 0, 0.55);
  overflow-x: hidden;
}

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

a { color: var(--ui41ed0-signal); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--ui41ed0-signal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==========================================================================
   Top action bar (logo-led)
   ========================================================================== */

.ui41ed0-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 60;
  background: rgba(39, 55, 70, 0.97);
  border-bottom: 1px solid rgba(233, 236, 239, 0.14);
  backdrop-filter: blur(8px);
}

.ui41ed0-brandRow {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 12px 8px 12px;
}

.ui41ed0-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ui41ed0-mist);
  min-height: var(--ui41ed0-tap);
  text-decoration: none;
}

.ui41ed0-brand:hover { text-decoration: none; }

.ui41ed0-logo {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  border: 1px solid rgba(0, 191, 255, 0.5);
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 191, 255, 0.25);
}

.ui41ed0-brandName {
  font-family: var(--ui41ed0-headFont);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ui41ed0-mist);
}

.ui41ed0-brandName::after {
  content: "";
  display: block;
  height: 2px;
  width: 74%;
  margin-top: 1px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ui41ed0-signal), rgba(0, 191, 255, 0));
}

.ui41ed0-topActions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Login: outlined ghost / Register: signal-filled */
.ui41ed0-btnLogin,
.ui41ed0-btnRegister {
  font-family: var(--ui41ed0-headFont);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-height: var(--ui41ed0-tap);
  padding: 10px 14px;
  border-radius: var(--ui41ed0-rInner);
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}

.ui41ed0-btnLogin {
  background: transparent;
  color: var(--ui41ed0-mist);
  border: 1px solid rgba(233, 236, 239, 0.4);
}

.ui41ed0-btnRegister {
  background: linear-gradient(135deg, #14c5ff, var(--ui41ed0-signal));
  color: #0b2534;
  border: 0;
  box-shadow: 0 3px 14px rgba(0, 191, 255, 0.35);
}

.ui41ed0-btnLogin:active,
.ui41ed0-btnRegister:active { transform: translateY(1px); }

.ui41ed0-btnLogin:hover { background: rgba(233, 236, 239, 0.08); }

.ui41ed0-btnRegister:hover { filter: brightness(1.08); }

/* menu toggle */
.ui41ed0-menuBtn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: var(--ui41ed0-tap);
  height: var(--ui41ed0-tap);
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(233, 236, 239, 0.3);
  border-radius: var(--ui41ed0-rInner);
  cursor: pointer;
}

.ui41ed0-menuBtn bar,
.ui41ed0-menuBtn span {
  display: block;
}

.ui41ed0-menuBtn i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ui41ed0-mist);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ui41ed0-menuBtn i:nth-child(2) { width: 75%; }

.ui41ed0-menuBtn[aria-expanded="true"] i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ui41ed0-menuBtn[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.ui41ed0-menuBtn[aria-expanded="true"] i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* expandable route list */
.ui41ed0-drawer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s ease;
  border-top: 0 solid rgba(233, 236, 239, 0.12);
}

.ui41ed0-drawer.ui41ed0-drawerOpen {
  max-height: 560px;
  border-top-width: 1px;
  overflow-y: auto;
}

.ui41ed0-drawerCols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 12px;
  padding: 10px 14px 14px;
}

.ui41ed0-drawerCol h3 {
  margin: 6px 0 4px;
  font-family: var(--ui41ed0-headFont);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 191, 255, 0.85);
}

.ui41ed0-drawerCol a {
  display: block;
  padding: 9px 8px 9px 10px;
  min-height: var(--ui41ed0-tap);
  color: var(--ui41ed0-mist);
  font-size: 13.5px;
  border-left: 2px solid rgba(0, 191, 255, 0);
  border-radius: 0 8px 8px 0;
  text-decoration: none;
}

.ui41ed0-drawerCol a:hover {
  background: rgba(233, 236, 239, 0.07);
  text-decoration: none;
}

.ui41ed0-drawerCol a.ui41ed0-routeNow {
  border-left-color: var(--ui41ed0-signal);
  color: var(--ui41ed0-signal);
  font-weight: 700;
}

/* ==========================================================================
   Page body
   ========================================================================== */

.ui41ed0-page {
  padding: 74px 0 calc(86px + env(safe-area-inset-bottom, 0px));
}

/* ---- hero ------------------------------------------------------------- */

.ui41ed0-hero {
  padding: 18px 16px 8px;
}

.ui41ed0-hero h1 {
  margin: 0 0 8px;
  font-family: var(--ui41ed0-headFont);
  font-size: 25px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ui41ed0-mist);
}

.ui41ed0-hero h1 .ui41ed0-h1Mark { color: var(--ui41ed0-signal); }

.ui41ed0-heroTag {
  margin: 0 0 14px;
  color: rgba(240, 248, 255, 0.78);
  font-size: 13.5px;
}

/* full-width primary CTA */
.ui41ed0-ctaMain {
  display: block;
  width: 100%;
  min-height: var(--ui41ed0-tap);
  padding: 13px 16px;
  font-family: var(--ui41ed0-headFont);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: #0b2534;
  background: linear-gradient(135deg, #14c5ff, var(--ui41ed0-signal) 60%, #33c9ff);
  border: 0;
  border-radius: var(--ui41ed0-rTile);
  box-shadow: 0 4px 18px rgba(0, 191, 255, 0.35);
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.ui41ed0-ctaMain:hover { filter: brightness(1.07); }
.ui41ed0-ctaMain:active { transform: translateY(1px); }

/* ---- promo rail -------------------------------------------------------- */

.ui41ed0-rail {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin: 14px 16px 4px;
  padding: 10px;
  border: 1px solid rgba(0, 191, 255, 0.28);
  border-radius: var(--ui41ed0-rTile);
  background: rgba(0, 191, 255, 0.06);
}

.ui41ed0-railTxt {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(240, 248, 255, 0.85);
}

.ui41ed0-railTxt strong { color: var(--ui41ed0-signal); }

.ui41ed0-railBtn {
  flex: 0 0 auto;
  align-self: center;
  min-height: var(--ui41ed0-tap);
  padding: 10px 14px;
  font-family: var(--ui41ed0-headFont);
  font-size: 12.5px;
  font-weight: 700;
  color: #0b2534;
  background: var(--ui41ed0-signal);
  border: 0;
  border-radius: var(--ui41ed0-rPill);
  cursor: pointer;
}

/* ---- carousel ------------------------------------------------------------ */

.ui41ed0-carousel {
  position: relative;
  margin: 16px 16px 6px;
  border-radius: var(--ui41ed0-rTile);
  overflow: hidden;
  border: 1px solid rgba(233, 236, 239, 0.16);
  background: #1d2935;
}

.ui41ed0-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
}

.ui41ed0-slide {
  flex: 0 0 100%;
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  width: 100%;
}

.ui41ed0-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 2.35 / 1;
  object-fit: cover;
}

.ui41ed0-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.ui41ed0-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: rgba(233, 236, 239, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ui41ed0-dot.ui41ed0-dotOn {
  background: var(--ui41ed0-signal);
  transform: scale(1.35);
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.7);
}

/* ---- category strip ------------------------------------------------------ */

.ui41ed0-catStrip {
  display: flex;
  gap: 8px;
  margin: 14px 16px 0;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ui41ed0-catStrip::-webkit-scrollbar { display: none; }

.ui41ed0-catChip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(233, 236, 239, 0.28);
  border-radius: var(--ui41ed0-rPill);
  color: var(--ui41ed0-mist);
  font-family: var(--ui41ed0-headFont);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  background: rgba(39, 55, 70, 0.6);
}

.ui41ed0-catChip:hover { border-color: var(--ui41ed0-signal); text-decoration: none; }

.ui41ed0-catChip svg { width: 14px; height: 14px; }

/* ==========================================================================
   Game shelves (outlined tile cards)
   ========================================================================== */

.ui41ed0-shelf {
  padding: 20px 16px 4px;
  scroll-margin-top: 70px;
}

.ui41ed0-shelfHead {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.ui41ed0-shelfNum {
  font-family: var(--ui41ed0-headFont);
  font-size: 12px;
  font-weight: 700;
  color: #0b2534;
  background: var(--ui41ed0-signal);
  border-radius: 7px;
  padding: 2px 8px;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}

.ui41ed0-shelf h2 {
  margin: 0;
  font-family: var(--ui41ed0-headFont);
  font-size: 18.5px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ui41ed0-mist);
}

.ui41ed0-shelfLede {
  margin: 6px 0 12px;
  font-size: 13px;
  color: rgba(240, 248, 255, 0.72);
}

.ui41ed0-shelfLede a { color: var(--ui41ed0-signal); }

/* 4 cols at 320px, 4-5 in 375-430 band */
.ui41ed0-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 8px;
}

@media (min-width: 375px) {
  .ui41ed0-grid { gap: 12px 10px; }
}

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

.ui41ed0-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 7px 6px 8px;
  background: rgba(240, 248, 255, 0.035);
  border: 1px solid rgba(233, 236, 239, 0.2);
  border-radius: var(--ui41ed0-rTile) 8px var(--ui41ed0-rTile) 8px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.ui41ed0-tile:hover {
  border-color: rgba(0, 191, 255, 0.75);
  background: rgba(0, 191, 255, 0.07);
}

.ui41ed0-tile:active { transform: scale(0.96); }

.ui41ed0-tileImg {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(233, 236, 239, 0.14);
  background: #1d2935;
}

.ui41ed0-tileName {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(240, 248, 255, 0.88);
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   Reading modules
   ========================================================================== */

.ui41ed0-read {
  padding: 26px 16px 2px;
}

.ui41ed0-read h2 {
  margin: 0 0 10px;
  font-family: var(--ui41ed0-headFont);
  font-size: 19px;
  line-height: 1.32;
  font-weight: 700;
  color: var(--ui41ed0-mist);
}

.ui41ed0-read h2::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 8px;
  border-radius: 2px;
  background: var(--ui41ed0-signal);
}

.ui41ed0-read h3 {
  margin: 18px 0 6px;
  font-family: var(--ui41ed0-headFont);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ui41ed0-signal);
}

.ui41ed0-read p {
  margin: 0 0 12px;
  font-size: 14px;
  color: rgba(240, 248, 255, 0.86);
}

.ui41ed0-read ul {
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
}

.ui41ed0-read li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 20px;
  font-size: 13.5px;
  color: rgba(240, 248, 255, 0.84);
}

.ui41ed0-read li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  border: 1.5px solid var(--ui41ed0-signal);
}

.ui41ed0-faq {
  margin: 0 0 10px;
  padding: 14px 14px 6px;
  border: 1px solid rgba(233, 236, 239, 0.16);
  border-radius: var(--ui41ed0-rTile);
  background: rgba(240, 248, 255, 0.035);
}

.ui41ed0-faq h3 {
  margin: 0 0 6px;
  font-family: var(--ui41ed0-headFont);
  font-size: 14px;
  font-weight: 700;
  color: var(--ui41ed0-mist);
}

.ui41ed0-faq p {
  margin: 0 0 10px;
  font-size: 13.5px;
  color: rgba(240, 248, 255, 0.8);
}

/* feature rows: label + fact */
.ui41ed0-feat {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 14px;
}

.ui41ed0-featRow {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid rgba(233, 236, 239, 0.14);
  border-radius: 10px;
  background: rgba(39, 55, 70, 0.5);
}

.ui41ed0-featRow svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--ui41ed0-signal);
}

.ui41ed0-featRow strong {
  display: block;
  font-family: var(--ui41ed0-headFont);
  font-size: 13px;
  color: var(--ui41ed0-mist);
}

.ui41ed0-featRow span {
  font-size: 12.5px;
  color: rgba(240, 248, 255, 0.72);
}

/* step ladder */
.ui41ed0-steps {
  counter-reset: ui41ed0-step;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.ui41ed0-steps li {
  counter-increment: ui41ed0-step;
  position: relative;
  margin: 0 0 9px;
  padding: 10px 12px 10px 44px;
  border: 1px solid rgba(233, 236, 239, 0.14);
  border-radius: 10px 4px 4px 10px;
  background: rgba(240, 248, 255, 0.035);
  font-size: 13.5px;
  color: rgba(240, 248, 255, 0.85);
}

.ui41ed0-steps li::before {
  content: counter(ui41ed0-step);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-family: var(--ui41ed0-headFont);
  font-size: 12.5px;
  font-weight: 700;
  color: #0b2534;
  background: var(--ui41ed0-signal);
  border-radius: 50%;
}

/* inline promo link style inside prose */
.ui41ed0-playLink {
  color: var(--ui41ed0-signal);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  text-decoration: underline;
}

.ui41ed0-playLink:hover { filter: brightness(1.15); }

/* ==========================================================================
   Extended footer directory (home only)
   ========================================================================== */

.ui41ed0-xfoot {
  margin: 26px 16px 6px;
  padding: 16px 14px;
  border: 1px solid rgba(0, 191, 255, 0.25);
  border-radius: var(--ui41ed0-rTile) 6px 6px var(--ui41ed0-rTile);
  background: rgba(13, 22, 31, 0.6);
}

.ui41ed0-xfoot h2 {
  margin: 0 0 8px;
  font-family: var(--ui41ed0-headFont);
  font-size: 16px;
  font-weight: 700;
  color: var(--ui41ed0-signal);
}

.ui41ed0-xfoot p {
  margin: 0 0 12px;
  font-size: 12.5px;
  color: rgba(240, 248, 255, 0.72);
}

.ui41ed0-xfBrand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ui41ed0-xfBrand img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid rgba(0, 191, 255, 0.4);
}

.ui41ed0-xfBrand strong {
  font-family: var(--ui41ed0-headFont);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
}

.ui41ed0-xfTitle {
  margin: 14px 0 6px;
  font-family: var(--ui41ed0-headFont);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 191, 255, 0.8);
}

/* two-column directory */
.ui41ed0-xfDir {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  margin: 0 0 12px;
}

.ui41ed0-xfDir a {
  display: block;
  padding: 8px 2px;
  font-size: 12.5px;
  color: rgba(240, 248, 255, 0.85);
  border-bottom: 1px dashed rgba(233, 236, 239, 0.14);
  text-decoration: none;
}

.ui41ed0-xfDir a:hover { color: var(--ui41ed0-signal); }

/* promotion buttons block */
.ui41ed0-xfPromos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 12px;
}

.ui41ed0-xfPromo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: var(--ui41ed0-tap);
  padding: 10px 12px;
  text-align: left;
  font-family: var(--ui41ed0-bodyFont);
  font-size: 13px;
  font-weight: 600;
  color: var(--ui41ed0-mist);
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid rgba(0, 191, 255, 0.4);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.ui41ed0-xfPromo:hover { background: rgba(0, 191, 255, 0.2); }

.ui41ed0-xfPromo svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--ui41ed0-signal);
}

.ui41ed0-xfNote {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(233, 236, 239, 0.12);
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(240, 248, 255, 0.55);
}

/* ==========================================================================
   Common footer
   ========================================================================== */

.ui41ed0-copy {
  padding: 18px 16px 8px;
  text-align: center;
  font-size: 11.5px;
  color: rgba(240, 248, 255, 0.5);
  border-top: 1px solid rgba(233, 236, 239, 0.1);
  margin-top: 18px;
}

.ui41ed0-copy a { color: rgba(240, 248, 255, 0.6); }

/* ==========================================================================
   Bottom action bar (segmented)
   ========================================================================== */

.ui41ed0-bottombar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
  background: rgba(23, 33, 44, 0.98);
  border-top: 1px solid rgba(0, 191, 255, 0.28);
}

.ui41ed0-bnItem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: var(--ui41ed0-tap);
  padding: 6px 2px 4px;
  background: none;
  border: 0;
  border-radius: 12px;
  color: rgba(240, 248, 255, 0.62);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.18s ease;
}

.ui41ed0-bnItem:hover { text-decoration: none; }

.ui41ed0-bnItem svg {
  width: 22px;
  height: 22px;
  transition: transform 0.18s ease;
}

.ui41ed0-bnLabel {
  font-family: var(--ui41ed0-headFont);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.72;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

/* active = color swap + label reveal */
.ui41ed0-bnItem.ui41ed0-bnOn {
  color: var(--ui41ed0-signal);
}

.ui41ed0-bnItem.ui41ed0-bnOn svg {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 6px rgba(0, 191, 255, 0.65));
}

.ui41ed0-bnItem.ui41ed0-bnOn .ui41ed0-bnLabel {
  opacity: 1;
  color: var(--ui41ed0-signal);
}

/* accent indicator notch */
.ui41ed0-bnItem::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 26px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--ui41ed0-signal);
  transition: transform 0.2s ease;
}

.ui41ed0-bnItem.ui41ed0-bnOn::after { transform: translateX(-50%) scaleX(1); }

/* promo seats get filled tint */
.ui41ed0-bnItem.ui41ed0-bnPromo {
  color: var(--ui41ed0-mist);
  background: rgba(0, 191, 255, 0.12);
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.ui41ed0-bnItem.ui41ed0-bnPromo .ui41ed0-bnLabel { opacity: 1; }

/* ==========================================================================
   Utilities
   ========================================================================== */

.ui41ed0-skip {
  position: absolute;
  left: -9999px;
  top: 0;
}

.ui41ed0-skip:focus {
  left: 8px;
  top: 8px;
  z-index: 99;
  padding: 10px 14px;
  background: var(--ui41ed0-signal);
  color: #0b2534;
  border-radius: 8px;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
