/* Mobile-first visual system for cv9993 */
:root {
  --mobile815da-ink: #212f3d;
  --mobile815da-ink-soft: #2d4052;
  --mobile815da-paper: #f8f8ff;
  --mobile815da-cyan: #00ced1;
  --mobile815da-teal: #4db6ac;
  --mobile815da-deep-teal: #008b8b;
  --mobile815da-muted: #808080;
  --mobile815da-line: rgba(77, 182, 172, 0.28);
  --mobile815da-shadow: 0 10px 30px rgba(9, 28, 39, 0.22);
  --mobile815da-header-height: 108px;
  --mobile815da-bottom-height: 68px;
  --mobile815da-focus: 0 0 0 3px rgba(0, 206, 209, 0.42);
  --mobile815da-title-font: "Trebuchet MS", "Noto Sans Bengali", sans-serif;
  --mobile815da-body-font: "Noto Sans Bengali", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #101b24;
  color-scheme: dark;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 4%, rgba(0, 206, 209, 0.12), transparent 25%),
    linear-gradient(180deg, #172532 0%, #212f3d 35%, #172832 100%);
  color: var(--mobile815da-paper);
  font-family: var(--mobile815da-body-font);
  font-size: 15px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: var(--mobile815da-cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #7ff5ed;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--mobile815da-focus);
}

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

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

.mobile815da-shell {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin-inline: auto;
  background: var(--mobile815da-ink);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.42);
  isolation: isolate;
}

.mobile815da-skip {
  position: fixed;
  z-index: 90;
  top: 8px;
  left: 50%;
  min-height: 44px;
  padding: 10px 14px;
  transform: translate(-50%, -160%);
  background: var(--mobile815da-paper);
  color: var(--mobile815da-ink);
  font-weight: 800;
}

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

.mobile815da-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 50%;
  width: min(100%, 430px);
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(0, 206, 209, 0.34);
  background: rgba(33, 47, 61, 0.97);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.mobile815da-brand-row {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 10px 5px;
}

.mobile815da-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: var(--mobile815da-paper);
  text-decoration: none;
}

.mobile815da-brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 2px solid var(--mobile815da-cyan);
  border-radius: 8px 2px 8px 2px;
  object-fit: cover;
  box-shadow: 3px 3px 0 var(--mobile815da-deep-teal);
}

.mobile815da-brand strong {
  overflow: hidden;
  font-family: var(--mobile815da-title-font);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile815da-menu-button {
  display: inline-grid;
  width: 46px;
  height: 44px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid var(--mobile815da-line);
  border-radius: 4px;
  background: #172733;
  color: var(--mobile815da-paper);
  cursor: pointer;
}

.mobile815da-menu-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.mobile815da-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 10px 8px;
}

.mobile815da-action-button {
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--mobile815da-cyan);
  border-radius: 2px;
  background: transparent;
  color: var(--mobile815da-paper);
  font-weight: 800;
  cursor: pointer;
}

.mobile815da-action-button:first-child {
  background: var(--mobile815da-cyan);
  color: #10232c;
}

.mobile815da-action-button:active,
.mobile815da-promo-button:active,
.mobile815da-game-button:active,
.mobile815da-bottom-action:active {
  transform: translateY(1px) scale(0.985);
}

.mobile815da-menu-panel {
  position: fixed;
  z-index: 55;
  top: var(--mobile815da-header-height);
  left: 50%;
  width: min(100%, 430px);
  max-height: calc(100dvh - var(--mobile815da-header-height) - 10px);
  padding: 10px;
  transform: translateX(-50%) translateY(-12px);
  overflow-y: auto;
  border-bottom: 3px solid var(--mobile815da-cyan);
  background: #172733;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.mobile815da-menu-panel[data-open="true"] {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile815da-menu-heading {
  margin: 0 0 8px;
  color: var(--mobile815da-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.mobile815da-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.mobile815da-menu-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 10px;
  border-left: 3px solid var(--mobile815da-deep-teal);
  background: rgba(248, 248, 255, 0.06);
  color: var(--mobile815da-paper);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.mobile815da-menu-link[aria-current="page"] {
  border-color: var(--mobile815da-cyan);
  background: var(--mobile815da-paper);
  color: var(--mobile815da-ink);
}

.mobile815da-menu-backdrop {
  position: fixed;
  z-index: 50;
  inset: var(--mobile815da-header-height) 0 0;
  max-width: 430px;
  margin-inline: auto;
  background: rgba(4, 13, 19, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.mobile815da-menu-backdrop[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.mobile815da-main {
  padding-top: calc(var(--mobile815da-header-height) + 10px);
  padding-bottom: calc(var(--mobile815da-bottom-height) + 42px + env(safe-area-inset-bottom));
}

.mobile815da-hero {
  padding: 8px 10px 0;
}

.mobile815da-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  color: #9be9e3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.mobile815da-kicker::before {
  width: 22px;
  height: 3px;
  background: var(--mobile815da-cyan);
  content: "";
}

.mobile815da-hero h1 {
  margin: 0 0 10px;
  font-family: var(--mobile815da-title-font);
  font-size: clamp(25px, 8vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.7px;
}

.mobile815da-hero-summary {
  margin: 0 0 12px;
  color: #d9e8e9;
  font-size: 14px;
}

.mobile815da-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mobile815da-line);
  border-radius: 8px 2px 8px 2px;
  background: #12222e;
}

.mobile815da-slides {
  display: flex;
  transition: transform 360ms ease;
  will-change: transform;
}

.mobile815da-slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 16 / 7;
  padding: 0;
  overflow: hidden;
  background: #101c26;
  color: var(--mobile815da-paper);
  cursor: pointer;
}

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

.mobile815da-slide-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 12px 9px;
  background: linear-gradient(transparent, rgba(10, 23, 31, 0.92));
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.mobile815da-slider-controls {
  position: absolute;
  right: 7px;
  bottom: 7px;
  display: flex;
  gap: 5px;
}

.mobile815da-slide-dot {
  width: 24px;
  height: 5px;
  padding: 0;
  border-radius: 0;
  background: rgba(248, 248, 255, 0.5);
  cursor: pointer;
}

.mobile815da-slide-dot[aria-current="true"] {
  background: var(--mobile815da-cyan);
}

.mobile815da-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 10px 0 0;
  border: 1px solid var(--mobile815da-line);
  background: #192b37;
}

.mobile815da-trust-item {
  min-width: 0;
  padding: 8px 4px;
  border-right: 1px solid var(--mobile815da-line);
  text-align: center;
}

.mobile815da-trust-item:last-child {
  border-right: 0;
}

.mobile815da-trust-item strong,
.mobile815da-trust-item span {
  display: block;
}

.mobile815da-trust-item strong {
  color: var(--mobile815da-cyan);
  font-family: var(--mobile815da-title-font);
  font-size: 17px;
  line-height: 1.1;
}

.mobile815da-trust-item span {
  margin-top: 3px;
  color: #c8d5d8;
  font-size: 10px;
  line-height: 1.25;
}

.mobile815da-category-jump {
  position: sticky;
  z-index: 20;
  top: var(--mobile815da-header-height);
  display: flex;
  gap: 6px;
  margin: 12px 0 0;
  padding: 8px 10px;
  overflow-x: auto;
  border-block: 1px solid var(--mobile815da-line);
  background: rgba(23, 39, 51, 0.96);
  scrollbar-width: none;
}

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

.mobile815da-category-link {
  display: inline-flex;
  min-width: max-content;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(0, 206, 209, 0.35);
  border-radius: 2px;
  background: #213646;
  color: var(--mobile815da-paper);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.mobile815da-category-link[data-active="true"] {
  background: var(--mobile815da-cyan);
  color: #10232c;
}

.mobile815da-game-zone {
  padding: 4px 10px 0;
}

.mobile815da-category-block {
  scroll-margin-top: calc(var(--mobile815da-header-height) + 54px);
  margin-top: 14px;
  border-top: 4px solid var(--mobile815da-deep-teal);
  background: #1a2b38;
}

.mobile815da-category-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px;
  padding: 10px 8px 7px;
}

.mobile815da-category-title {
  margin: 0;
  font-family: var(--mobile815da-title-font);
  font-size: 20px;
  line-height: 1.2;
}

.mobile815da-category-count {
  color: var(--mobile815da-teal);
  font-size: 11px;
  font-weight: 800;
}

.mobile815da-category-note {
  margin: 0;
  padding: 0 8px 10px;
  color: #c9d8da;
  font-size: 12px;
  line-height: 1.5;
}

.mobile815da-category-note a {
  font-weight: 800;
}

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

.mobile815da-game-button {
  display: flex;
  min-width: 0;
  min-height: 104px;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 248, 255, 0.1);
  border-radius: 5px 1px 5px 1px;
  background: #233746;
  color: var(--mobile815da-paper);
  cursor: pointer;
  text-align: center;
}

.mobile815da-game-button:hover {
  border-color: var(--mobile815da-cyan);
}

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

.mobile815da-game-name {
  display: -webkit-box;
  min-height: 34px;
  padding: 5px 3px 4px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.mobile815da-content-flow {
  padding: 14px 10px 0;
}

.mobile815da-content-band {
  margin-top: 14px;
  padding: 15px 13px;
  border-left: 4px solid var(--mobile815da-teal);
  background: #f8f8ff;
  color: var(--mobile815da-ink);
}

.mobile815da-content-band:nth-child(even) {
  border-left-color: var(--mobile815da-cyan);
  background: #e7f5f4;
}

.mobile815da-content-band h2 {
  margin: 0 0 8px;
  color: #173342;
  font-family: var(--mobile815da-title-font);
  font-size: 21px;
  line-height: 1.25;
}

.mobile815da-content-band h3 {
  margin: 16px 0 5px;
  color: #126b6b;
  font-size: 16px;
  line-height: 1.3;
}

.mobile815da-content-band p {
  margin: 7px 0 0;
}

.mobile815da-content-band a {
  color: #006f73;
  font-weight: 800;
}

.mobile815da-decision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
}

.mobile815da-decision-item {
  padding: 10px;
  border: 1px solid rgba(0, 139, 139, 0.25);
  background: rgba(255, 255, 255, 0.72);
}

.mobile815da-decision-item strong {
  display: block;
  margin-bottom: 3px;
  color: #006f73;
}

.mobile815da-step-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: mobile815da-step;
}

.mobile815da-step-list li {
  position: relative;
  min-height: 48px;
  margin-top: 8px;
  padding: 8px 8px 8px 47px;
  border-bottom: 1px solid rgba(0, 139, 139, 0.22);
  counter-increment: mobile815da-step;
}

.mobile815da-step-list li::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--mobile815da-ink);
  color: var(--mobile815da-cyan);
  font-weight: 900;
  content: counter(mobile815da-step, bengali);
}

.mobile815da-promo-panel {
  position: relative;
  margin-top: 14px;
  padding: 18px 14px;
  overflow: hidden;
  border: 1px solid var(--mobile815da-cyan);
  background:
    linear-gradient(105deg, rgba(0, 206, 209, 0.16), transparent 58%),
    #142732;
  color: var(--mobile815da-paper);
}

.mobile815da-promo-panel::after {
  position: absolute;
  right: -30px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border: 16px solid rgba(77, 182, 172, 0.13);
  transform: rotate(28deg);
  content: "";
}

.mobile815da-promo-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 7px;
  font-family: var(--mobile815da-title-font);
  font-size: 22px;
  line-height: 1.2;
}

.mobile815da-promo-panel p {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #dcebec;
}

.mobile815da-promo-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid #a6fffa;
  border-radius: 1px;
  background: var(--mobile815da-cyan);
  color: #10232c;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.mobile815da-promo-button.mobile815da-promo-button-secondary {
  background: transparent;
  color: var(--mobile815da-paper);
}

.mobile815da-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mobile815da-faq-list {
  margin-top: 10px;
}

.mobile815da-faq {
  border-top: 1px solid rgba(0, 139, 139, 0.25);
}

.mobile815da-faq:last-child {
  border-bottom: 1px solid rgba(0, 139, 139, 0.25);
}

.mobile815da-faq summary {
  position: relative;
  min-height: 48px;
  padding: 12px 30px 10px 2px;
  color: #173342;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.mobile815da-faq summary::-webkit-details-marker {
  display: none;
}

.mobile815da-faq summary::after {
  position: absolute;
  top: 11px;
  right: 3px;
  color: #007b7c;
  font-size: 20px;
  content: "+";
}

.mobile815da-faq[open] summary::after {
  content: "−";
}

.mobile815da-faq p {
  margin: 0;
  padding: 0 2px 13px;
}

.mobile815da-app-layout {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.mobile815da-app-mark {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 4px solid var(--mobile815da-teal);
  background: var(--mobile815da-ink);
}

.mobile815da-app-mark img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.mobile815da-check-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.mobile815da-check-list li {
  position: relative;
  margin-top: 6px;
  padding-left: 24px;
}

.mobile815da-check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: #007b7c;
  font-weight: 900;
  content: "✓";
}

.mobile815da-relation-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 11px;
}

.mobile815da-relation-node {
  min-height: 82px;
  padding: 9px;
  border-top: 3px solid var(--mobile815da-deep-teal);
  background: rgba(255, 255, 255, 0.7);
}

.mobile815da-relation-node strong,
.mobile815da-relation-node span {
  display: block;
}

.mobile815da-relation-node strong {
  color: #006d71;
  font-size: 13px;
}

.mobile815da-relation-node span {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.45;
}

.mobile815da-extended-footer {
  margin-top: 20px;
  border-top: 5px solid var(--mobile815da-cyan);
  background: #12232e;
}

.mobile815da-footer-directory {
  padding: 16px 12px 12px;
}

.mobile815da-footer-directory h2,
.mobile815da-footer-brand h2,
.mobile815da-footer-promos h2 {
  margin: 0 0 9px;
  font-family: var(--mobile815da-title-font);
  font-size: 18px;
  line-height: 1.2;
}

.mobile815da-footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.mobile815da-footer-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 7px 8px;
  border: 1px solid rgba(77, 182, 172, 0.22);
  background: rgba(248, 248, 255, 0.05);
  color: #dff5f3;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.mobile815da-footer-brand {
  margin: 0 12px;
  padding: 15px 0;
  border-block: 1px solid rgba(77, 182, 172, 0.22);
}

.mobile815da-footer-brand p {
  margin: 0;
  color: #bed0d4;
  font-size: 13px;
}

.mobile815da-footer-promos {
  padding: 14px 12px;
}

.mobile815da-footer-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.mobile815da-footer-promo-grid button {
  min-height: 46px;
  padding: 8px;
  border: 1px solid var(--mobile815da-cyan);
  border-radius: 1px;
  background: transparent;
  color: var(--mobile815da-paper);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.mobile815da-footer-promo-grid button:first-child,
.mobile815da-footer-promo-grid button:last-child {
  background: var(--mobile815da-cyan);
  color: #10232c;
}

.mobile815da-disclaimer {
  margin: 0;
  padding: 10px 12px 14px;
  border-top: 1px solid rgba(77, 182, 172, 0.22);
  color: #aebec2;
  font-size: 11px;
  line-height: 1.5;
}

.mobile815da-copyright {
  margin: 0;
  padding: 12px 10px calc(var(--mobile815da-bottom-height) + 12px);
  background: #0f1f29;
  color: #adbec2;
  font-size: 11px;
  text-align: center;
}

.mobile815da-bottom-nav {
  position: fixed;
  z-index: 70;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  width: min(100%, 430px);
  min-height: var(--mobile815da-bottom-height);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-inline: auto;
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 2px solid var(--mobile815da-cyan);
  background: rgba(18, 35, 46, 0.98);
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.mobile815da-bottom-link,
.mobile815da-bottom-action {
  display: flex;
  min-width: 0;
  min-height: 66px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 5px 2px 3px;
  border-right: 1px solid rgba(77, 182, 172, 0.14);
  background: transparent;
  color: #aebfc2;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.mobile815da-bottom-link:last-child,
.mobile815da-bottom-action:last-child {
  border-right: 0;
}

.mobile815da-bottom-link svg,
.mobile815da-bottom-action svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.mobile815da-bottom-link[aria-current="page"] {
  background: var(--mobile815da-paper);
  color: var(--mobile815da-ink);
}

.mobile815da-bottom-action {
  color: var(--mobile815da-cyan);
}

.mobile815da-noscript {
  margin: 8px 10px;
  padding: 10px;
  border: 1px solid #ffca6a;
  background: #442f13;
  color: #fff2d7;
  font-size: 12px;
}

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

/* Help pages use a calmer reading rail while retaining the shared mobile language. */
.mobile815da-help-hero {
  padding: 14px 12px 4px;
  border-bottom: 1px solid var(--mobile815da-line);
}

.mobile815da-help-hero h1 {
  margin: 0 0 9px;
  font-family: var(--mobile815da-title-font);
  font-size: clamp(24px, 7.5vw, 33px);
  line-height: 1.1;
}

.mobile815da-help-lede {
  margin: 0;
  color: #d9e8e9;
}

.mobile815da-help-toc {
  display: grid;
  gap: 7px;
  margin: 12px;
  padding: 11px;
  border: 1px solid var(--mobile815da-line);
  background: #192b37;
}

.mobile815da-help-toc strong {
  color: var(--mobile815da-cyan);
}

.mobile815da-help-toc a {
  display: block;
  min-height: 44px;
  padding: 9px 10px;
  background: rgba(248, 248, 255, 0.07);
  color: var(--mobile815da-paper);
  font-weight: 800;
  text-decoration: none;
}

.mobile815da-help-article {
  padding: 0 12px;
}

.mobile815da-help-article section {
  margin: 14px 0;
  padding: 15px 13px;
  border-top: 4px solid var(--mobile815da-teal);
  background: var(--mobile815da-paper);
  color: var(--mobile815da-ink);
}

.mobile815da-help-article section:nth-child(odd) {
  border-top-color: var(--mobile815da-cyan);
  background: #e7f5f4;
}

.mobile815da-help-article h2 {
  margin: 0 0 8px;
  color: #173342;
  font-family: var(--mobile815da-title-font);
  font-size: 20px;
  line-height: 1.25;
}

.mobile815da-help-article h3 {
  margin: 16px 0 6px;
  color: #126b6b;
  font-size: 16px;
  line-height: 1.3;
}

.mobile815da-help-article p {
  margin: 8px 0 0;
}

.mobile815da-help-article ul,
.mobile815da-help-article ol {
  margin: 9px 0 0;
  padding-left: 22px;
}

.mobile815da-help-article li + li {
  margin-top: 7px;
}

.mobile815da-help-article a {
  color: #006f73;
  font-weight: 800;
}

.mobile815da-help-callout {
  padding: 13px;
  border-left: 5px solid var(--mobile815da-deep-teal);
  background: #d5f2ef;
}

.mobile815da-help-callout strong {
  color: #006f73;
}

.mobile815da-help-qa {
  border-bottom: 1px solid rgba(0, 139, 139, 0.28);
}

.mobile815da-help-qa summary {
  min-height: 48px;
  padding: 12px 25px 10px 0;
  color: #173342;
  font-weight: 900;
  cursor: pointer;
}

.mobile815da-help-qa p {
  margin: 0;
  padding: 0 0 12px;
}

.mobile815da-help-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 13px;
}

.mobile815da-help-table th,
.mobile815da-help-table td {
  padding: 8px 6px;
  border: 1px solid rgba(0, 139, 139, 0.3);
  text-align: left;
  vertical-align: top;
}

.mobile815da-help-table th {
  background: #c4ece8;
  color: #173342;
}

.mobile815da-help-promo {
  margin: 14px 0;
}

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

  .mobile815da-game-button {
    min-height: 98px;
  }

  .mobile815da-decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 400px) and (max-width: 430px) {
  .mobile815da-brand-row,
  .mobile815da-action-row,
  .mobile815da-hero,
  .mobile815da-game-zone,
  .mobile815da-content-flow {
    padding-right: 12px;
    padding-left: 12px;
  }

  .mobile815da-hero h1 {
    font-size: 34px;
  }

  .mobile815da-game-grid {
    gap: 8px 6px;
  }
}

@media (max-width: 339px) {
  :root {
    --mobile815da-header-height: 106px;
  }

  .mobile815da-brand strong {
    font-size: 18px;
  }

  .mobile815da-game-name {
    font-size: 9px;
  }

  .mobile815da-footer-link-grid,
  .mobile815da-footer-promo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@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;
  }
}

@media print {
  .mobile815da-header,
  .mobile815da-category-jump,
  .mobile815da-bottom-nav,
  .mobile815da-slider-controls,
  .mobile815da-menu-panel,
  .mobile815da-menu-backdrop {
    display: none !important;
  }

  .mobile815da-main {
    padding: 0;
  }

  .mobile815da-shell {
    max-width: none;
    box-shadow: none;
  }
}
