/*!
 * 889bet.homes stylesheet
 * Class prefix: surface491eb-
 * Mobile-first canvas: 320-430px phone frame, centered on wider screens.
 * Palette anchors: #0C0C0C (deep), #FF8000 (orange), #FFB347 (light orange),
 * #FFCC02 (gold). Square high-contrast CTAs, mixed rounded compact cards,
 * floating light game tiles, asymmetric brand head, slide-up routing panel,
 * floating bottom dock.
 */

:root {
  --surface491eb-bg: #0C0C0C;
  --surface491eb-bg-2: #141414;
  --surface491eb-card: #1a1a1a;
  --surface491eb-card-2: #202020;
  --surface491eb-text: #FFE9C7;
  --surface491eb-text-soft: #B6A886;
  --surface491eb-text-dim: #897c61;
  --surface491eb-accent: #FF8000;
  --surface491eb-accent-2: #FFB347;
  --surface491eb-gold: #FFCC02;
  --surface491eb-border: rgba(255, 179, 71, 0.16);
  --surface491eb-border-strong: rgba(255, 204, 2, 0.42);
  --surface491eb-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
  --surface491eb-radius-sm: 6px;
  --surface491eb-radius-md: 12px;
  --surface491eb-radius-lg: 18px;
  --surface491eb-header-h: 60px;
  --surface491eb-bottom-h: 64px;
  --surface491eb-max-w: 430px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--surface491eb-bg);
  color: var(--surface491eb-text);
  font-family: "Hind Siliguri", "Noto Sans Bengali", "SolaimanLipi", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding-top: var(--surface491eb-header-h);
  padding-bottom: calc(var(--surface491eb-bottom-h) + 18px);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--surface491eb-gold); text-decoration: none; }
a:hover, a:focus { color: var(--surface491eb-accent-2); }
a:focus-visible { outline: 2px solid var(--surface491eb-gold); outline-offset: 2px; border-radius: 2px; }
button { font-family: inherit; }

/* ===== Layout shell ===== */
.surface491eb-shell {
  width: 100%;
  max-width: var(--surface491eb-max-w);
  margin: 0 auto;
  padding: 0 14px;
}
main { display: block; }

/* ===== Header ===== */
.surface491eb-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--surface491eb-header-h);
  background: linear-gradient(180deg, #0e0e0e 0%, #0a0a0a 100%);
  border-bottom: 1px solid var(--surface491eb-border);
  z-index: 50;
}
.surface491eb-header-row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  max-width: var(--surface491eb-max-w);
  margin: 0 auto;
  padding: 0 12px;
}
.surface491eb-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.surface491eb-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--surface491eb-border-strong);
  background: #1a1a1a;
}
.surface491eb-brand-name {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.4px;
  color: var(--surface491eb-gold);
  white-space: nowrap;
  line-height: 1;
}
.surface491eb-brand-name span { color: var(--surface491eb-accent); }
.surface491eb-brand-tag {
  font-size: 10px;
  color: var(--surface491eb-text-dim);
  letter-spacing: 0.4px;
  margin-top: 2px;
  display: block;
}
.surface491eb-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.surface491eb-btn {
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 13px;
  border: 0;
  cursor: pointer;
  border-radius: 0;
  line-height: 1;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-family: inherit;
}
.surface491eb-btn-login {
  background: transparent;
  color: var(--surface491eb-gold);
  border: 1px solid var(--surface491eb-gold);
}
.surface491eb-btn-register {
  background: var(--surface491eb-gold);
  color: #1a1100;
  box-shadow: 0 4px 12px rgba(255, 204, 2, 0.28);
}
.surface491eb-btn-register:active { transform: scale(0.96); }
.surface491eb-icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--surface491eb-border);
  background: #161616;
  color: var(--surface491eb-accent-2);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.surface491eb-icon-btn:active { transform: scale(0.94); }
.surface491eb-icon-btn svg { width: 18px; height: 18px; }

/* ===== Slide-up routing panel ===== */
.surface491eb-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.surface491eb-menu-backdrop.surface491eb-backdrop-on {
  opacity: 1;
  pointer-events: auto;
}
.surface491eb-menu-panel {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
  border-top: 2px solid var(--surface491eb-accent);
  border-radius: 18px 18px 0 0;
  padding: 14px 16px calc(env(safe-area-inset-bottom, 0px) + 18px);
  z-index: 70;
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-width: var(--surface491eb-max-w);
  margin: 0 auto;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.45);
}
.surface491eb-menu-panel.surface491eb-menu-open {
  transform: translateY(0);
}
.surface491eb-menu-handle {
  width: 42px;
  height: 4px;
  background: var(--surface491eb-border-strong);
  border-radius: 2px;
  margin: 0 auto 14px;
}
.surface491eb-menu-title {
  font-size: 12px;
  color: var(--surface491eb-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 10px;
}
.surface491eb-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.surface491eb-menu-link {
  background: #1d1d1d;
  border: 1px solid var(--surface491eb-border);
  border-radius: 10px;
  padding: 11px 6px;
  text-align: center;
  color: var(--surface491eb-text);
  font-size: 11.5px;
  font-weight: 600;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.surface491eb-menu-link:active { transform: scale(0.95); }
.surface491eb-menu-link .surface491eb-menu-ic {
  width: 20px;
  height: 20px;
  color: var(--surface491eb-accent);
}

/* ===== Hero carousel ===== */
.surface491eb-hero {
  margin: 12px 0 14px;
  position: relative;
  border-radius: var(--surface491eb-radius-md);
  overflow: hidden;
  background: #161616;
  border: 1px solid var(--surface491eb-border);
}
.surface491eb-hero-track {
  position: relative;
  aspect-ratio: 16 / 9;
}
.surface491eb-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  height: 100%;
}
.surface491eb-hero-slide.surface491eb-slide-active {
  opacity: 1;
}
.surface491eb-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.surface491eb-hero-cap {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.88) 100%);
  padding: 30px 12px 10px;
  border-radius: 0 0 var(--surface491eb-radius-md) var(--surface491eb-radius-md);
  pointer-events: none;
}
.surface491eb-hero-cap-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.surface491eb-hero-cap-sub {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--surface491eb-accent-2);
}
.surface491eb-hero-dots {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.surface491eb-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.surface491eb-hero-dot.surface491eb-dot-active {
  background: var(--surface491eb-gold);
  width: 18px;
  border-radius: 3px;
}

/* ===== Page intro ===== */
.surface491eb-page-intro {
  margin: 6px 0 14px;
  padding: 14px 14px 16px;
  background: linear-gradient(180deg, #1c1408 0%, #161616 100%);
  border: 1px solid var(--surface491eb-border);
  border-left: 3px solid var(--surface491eb-accent);
  border-radius: var(--surface491eb-radius-md);
}
.surface491eb-h1 {
  font-size: 21px;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--surface491eb-gold);
  font-weight: 800;
}
.surface491eb-lead {
  margin: 0;
  color: var(--surface491eb-text);
  font-size: 14px;
  line-height: 1.75;
}

/* ===== Quick metric strip ===== */
.surface491eb-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 16px;
}
.surface491eb-stat {
  background: #141414;
  border: 1px solid var(--surface491eb-border);
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
}
.surface491eb-stat-num {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--surface491eb-gold);
  line-height: 1;
}
.surface491eb-stat-lbl {
  display: block;
  font-size: 10.5px;
  color: var(--surface491eb-text-soft);
  margin-top: 4px;
}

/* ===== Category chip strip ===== */
.surface491eb-cat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 0 0 16px;
}
.surface491eb-cat-chip {
  background: #161616;
  border: 1px solid var(--surface491eb-border);
  border-radius: 8px;
  padding: 9px 4px;
  text-align: center;
  color: var(--surface491eb-accent-2);
  font-size: 11px;
  font-weight: 700;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.surface491eb-cat-chip:active {
  transform: scale(0.95);
  border-bottom-color: var(--surface491eb-accent);
}

/* ===== Section heading ===== */
.surface491eb-section {
  margin: 0 0 22px;
}
.surface491eb-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}
.surface491eb-section-bar {
  width: 4px;
  height: 22px;
  background: var(--surface491eb-accent);
  border-radius: 2px;
}
.surface491eb-section-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--surface491eb-gold);
  flex: 1;
  line-height: 1.3;
}
.surface491eb-section-link {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--surface491eb-accent-2);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ===== Game grid ===== */
.surface491eb-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.surface491eb-game-card {
  background: var(--surface491eb-card);
  border: 1px solid var(--surface491eb-border);
  border-radius: var(--surface491eb-radius-sm);
  padding: 5px;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font: inherit;
  color: inherit;
}
.surface491eb-game-card:active {
  transform: scale(0.96);
  border-color: var(--surface491eb-border-strong);
}
.surface491eb-game-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  background: #0c0c0c;
}
.surface491eb-game-name {
  margin: 5px 0 0;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--surface491eb-text);
  line-height: 1.25;
  min-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Inline promo banner ===== */
.surface491eb-promo-inline {
  background: linear-gradient(90deg, #FF8000 0%, #FFCC02 100%);
  color: #1a1100;
  padding: 12px 14px;
  border-radius: var(--surface491eb-radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 16px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(255, 128, 0, 0.22);
  border: 0;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.surface491eb-promo-inline:active { transform: scale(0.98); }
.surface491eb-promo-inline-t {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.4;
}
.surface491eb-promo-inline-b {
  background: #0C0C0C;
  color: var(--surface491eb-gold);
  border-radius: 0;
  padding: 8px 13px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* ===== Panel / content card ===== */
.surface491eb-panel {
  background: #141414;
  border: 1px solid var(--surface491eb-border);
  border-radius: var(--surface491eb-radius-md);
  padding: 14px;
  margin: 0 0 16px;
}
.surface491eb-h2 {
  font-size: 16px;
  margin: 0 0 10px;
  color: var(--surface491eb-gold);
  font-weight: 800;
  line-height: 1.4;
}
.surface491eb-h3 {
  font-size: 14px;
  margin: 14px 0 6px;
  color: var(--surface491eb-accent-2);
  font-weight: 700;
}
.surface491eb-p {
  margin: 0 0 10px;
  color: var(--surface491eb-text);
  font-size: 14px;
  line-height: 1.75;
}
.surface491eb-ul {
  margin: 0 0 10px;
  padding-left: 20px;
}
.surface491eb-ul li {
  margin-bottom: 6px;
  color: var(--surface491eb-text);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ===== Testimonials ===== */
.surface491eb-testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.surface491eb-testi {
  background: #161208;
  border: 1px solid var(--surface491eb-border);
  border-radius: 10px;
  padding: 12px;
}
.surface491eb-testi-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.surface491eb-testi-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface491eb-accent);
  color: #1a1100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex: 0 0 32px;
}
.surface491eb-testi-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--surface491eb-gold);
  margin: 0;
}
.surface491eb-testi-meta {
  font-size: 11px;
  color: var(--surface491eb-text-dim);
  margin: 0;
}
.surface491eb-testi-quote {
  margin: 0;
  font-size: 13px;
  color: var(--surface491eb-text);
  line-height: 1.7;
}

/* ===== Achievements ===== */
.surface491eb-ach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.surface491eb-ach {
  background: #14110a;
  border: 1px solid var(--surface491eb-border);
  border-left: 3px solid var(--surface491eb-gold);
  border-radius: 8px;
  padding: 10px;
}
.surface491eb-ach-title {
  margin: 0 0 4px;
  font-size: 12.5px;
  color: var(--surface491eb-gold);
  font-weight: 700;
}
.surface491eb-ach-desc {
  margin: 0;
  font-size: 11.5px;
  color: var(--surface491eb-text-soft);
  line-height: 1.55;
}

/* ===== FAQ ===== */
.surface491eb-faq-item {
  border-bottom: 1px solid var(--surface491eb-border);
  padding: 10px 0;
}
.surface491eb-faq-item:last-child { border-bottom: 0; }
.surface491eb-faq-q {
  margin: 0 0 6px;
  font-size: 13.5px;
  color: var(--surface491eb-gold);
  font-weight: 700;
  line-height: 1.5;
}
.surface491eb-faq-a {
  margin: 0;
  font-size: 13px;
  color: var(--surface491eb-text);
  line-height: 1.7;
}

/* ===== Trick list ===== */
.surface491eb-trick {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  background: #141414;
  border: 1px solid var(--surface491eb-border);
  border-radius: 8px;
  padding: 10px;
}
.surface491eb-trick:last-child { margin-bottom: 0; }
.surface491eb-trick-num {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  background: var(--surface491eb-accent);
  color: #1a1100;
  font-weight: 800;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.surface491eb-trick-body { flex: 1; min-width: 0; }
.surface491eb-trick-t {
  margin: 0 0 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--surface491eb-gold);
}
.surface491eb-trick-d {
  margin: 0;
  font-size: 12.5px;
  color: var(--surface491eb-text);
  line-height: 1.6;
}

/* ===== Direct answer ===== */
.surface491eb-direct {
  background: linear-gradient(135deg, #2a1a05 0%, #1a1208 100%);
  border: 1px solid var(--surface491eb-border-strong);
  border-radius: var(--surface491eb-radius-md);
  padding: 16px;
  margin: 0 0 18px;
}
.surface491eb-direct-label {
  display: inline-block;
  background: var(--surface491eb-gold);
  color: #1a1100;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 4px 8px;
  border-radius: 0;
  margin-bottom: 8px;
}
.surface491eb-direct-q {
  margin: 0 0 8px;
  font-size: 14.5px;
  color: var(--surface491eb-accent-2);
  font-weight: 700;
  line-height: 1.5;
}
.surface491eb-direct-a {
  margin: 0;
  font-size: 14px;
  color: var(--surface491eb-text);
  line-height: 1.75;
}

/* ===== Category note row ===== */
.surface491eb-cat-note {
  background: #141414;
  border: 1px dashed var(--surface491eb-border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--surface491eb-text-soft);
  line-height: 1.65;
  margin: 10px 0 0;
}
.surface491eb-cat-note a {
  color: var(--surface491eb-gold);
  font-weight: 700;
}

/* ===== Extended footer ===== */
.surface491eb-extended {
  margin: 18px 0;
  background: #0e0e0e;
  border: 1px solid var(--surface491eb-border);
  border-radius: var(--surface491eb-radius-md);
  padding: 16px;
}
.surface491eb-extended-h {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--surface491eb-gold);
  font-weight: 800;
}
.surface491eb-extended p {
  font-size: 13px;
  color: var(--surface491eb-text-soft);
  line-height: 1.7;
  margin: 0 0 12px;
}
.surface491eb-promo-cluster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0 0 14px;
}
.surface491eb-promo-cell {
  background: #161616;
  border: 1px solid var(--surface491eb-border);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  color: var(--surface491eb-text);
  font-size: 12px;
  font-weight: 600;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.surface491eb-promo-cell:active { transform: scale(0.96); }
.surface491eb-promo-cell-accent {
  background: var(--surface491eb-gold);
  color: #1a1100;
  border-color: var(--surface491eb-gold);
}
.surface491eb-dir-title {
  font-size: 12.5px;
  color: var(--surface491eb-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
}
.surface491eb-dir-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 12px;
}
.surface491eb-dir-grid a {
  font-size: 12.5px;
  color: var(--surface491eb-text);
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 180, 71, 0.14);
}
.surface491eb-dir-grid a:hover { color: var(--surface491eb-gold); }
.surface491eb-disclaim {
  font-size: 11px;
  color: var(--surface491eb-text-dim);
  line-height: 1.6;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--surface491eb-border);
}

/* ===== Common footer ===== */
.surface491eb-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--surface491eb-border);
  padding: 16px 14px;
  text-align: center;
  margin-top: 12px;
}
.surface491eb-footer p {
  font-size: 11px;
  color: var(--surface491eb-text-dim);
  margin: 0 0 4px;
  line-height: 1.6;
}

/* ===== Bottom dock nav ===== */
.surface491eb-dock {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--surface491eb-bottom-h);
  background: linear-gradient(180deg, #0e0e0e 0%, #050505 100%);
  border-top: 1px solid var(--surface491eb-border);
  display: flex;
  align-items: stretch;
  z-index: 45;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.surface491eb-dock-row {
  flex: 1;
  display: flex;
  align-items: stretch;
  max-width: var(--surface491eb-max-w);
  margin: 0 auto;
  width: 100%;
}
.surface491eb-dock-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--surface491eb-text-soft);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px 2px 6px;
  min-height: 44px;
  font-family: inherit;
}
.surface491eb-dock-item:active { transform: scale(0.94); }
.surface491eb-dock-item.surface491eb-active { color: var(--surface491eb-gold); }
.surface491eb-dock-tile {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border: 1px solid var(--surface491eb-border);
  color: var(--surface491eb-accent-2);
}
.surface491eb-dock-item.surface491eb-active .surface491eb-dock-tile {
  background: var(--surface491eb-gold);
  color: #1a1100;
  border-color: var(--surface491eb-gold);
}
.surface491eb-dock-item.surface491eb-dock-promo .surface491eb-dock-tile {
  background: linear-gradient(135deg, var(--surface491eb-accent) 0%, var(--surface491eb-gold) 100%);
  color: #1a1100;
  border-color: var(--surface491eb-gold);
}
.surface491eb-dock-tile svg { width: 16px; height: 16px; }
.surface491eb-dock-lbl {
  font-size: 9.5px;
  line-height: 1;
}

/* ===== Visually hidden ===== */
.surface491eb-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== 430px breakpoint - widen game grid to 5 columns ===== */
@media (min-width: 430px) {
  body { font-size: 15.5px; }
  .surface491eb-game-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .surface491eb-h1 { font-size: 24px; }
  .surface491eb-section-title { font-size: 18px; }
  .surface491eb-dir-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .surface491eb-promo-cluster {
    grid-template-columns: repeat(3, 1fr);
  }
  .surface491eb-ach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .surface491eb-testi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== 375-429px in-between tweaks ===== */
@media (min-width: 375px) and (max-width: 429px) {
  .surface491eb-game-grid { gap: 9px; }
  .surface491eb-game-name { font-size: 11px; }
  .surface491eb-h1 { font-size: 22px; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
