/* ============================================================
   native-a55ce1-palette.css
   jilicrown apk - mobile-first palette
   class prefix: mobilece104-
   ============================================================ */

/* ---- Design tokens ---- */
:root {
  /* 5-color palette (deep = background, light = text/accent) */
  --mobilece104-c-deep: #2C2C2C;
  --mobilece104-c-blue: #0000FF;
  --mobilece104-c-sky: #00BFFF;
  --mobilece104-c-sand: #F4A460;
  --mobilece104-c-cadet: #5F9EA0;
  /* Paper / text tones */
  --mobilece104-c-paper: #F4F1EA;
  --mobilece104-c-paper-dim: rgba(244, 241, 234, 0.72);
  --mobilece104-c-paper-soft: rgba(244, 241, 234, 0.55);
  /* Derived surfaces */
  --mobilece104-line: rgba(95, 158, 160, 0.34);
  --mobilece104-line-bright: rgba(0, 191, 255, 0.45);
  --mobilece104-tile: rgba(95, 158, 160, 0.10);
  --mobilece104-panel: rgba(95, 158, 160, 0.07);
  --mobilece104-shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
  --mobilece104-shadow-tight: 0 4px 12px rgba(0, 0, 0, 0.28);
  /* Geometry */
  --mobilece104-r-lg: 18px;
  --mobilece104-r-md: 12px;
  --mobilece104-r-sm: 8px;
  --mobilece104-r-pill: 999px;
  --mobilece104-canvas: 430px;
  --mobilece104-header-h: 56px;
  --mobilece104-bottomnav-h: 66px;
  /* Type stacks */
  --mobilece104-font-rounded: 'SF Pro Rounded', 'Segoe Rounded', 'Trebuchet MS', 'Hiragino Maru Gothic ProN', system-ui, sans-serif;
  --mobilece104-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Helvetica Neue', Arial, sans-serif;
}

/* ---- Reset & base ---- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #0a0a0a;
  color: var(--mobilece104-c-paper);
  font-family: var(--mobilece104-font-body);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--mobilece104-c-sky); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---- Mobile canvas (centered on wide screens) ---- */
.mobilece104-canvas {
  position: relative;
  max-width: var(--mobilece104-canvas);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(0, 191, 255, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--mobilece104-c-deep) 0%, #1f1f1f 60%, #141414 100%);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

/* ---- Top header (edge-aligned functional header) ---- */
.mobilece104-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  height: var(--mobilece104-header-h);
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mobilece104-line);
}
.mobilece104-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.mobilece104-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--mobilece104-c-cadet);
  flex-shrink: 0;
}
.mobilece104-brand-name {
  font-family: var(--mobilece104-font-rounded);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--mobilece104-c-paper);
  white-space: nowrap;
}
.mobilece104-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mobilece104-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 34px;
  padding: 0 13px;
  border-radius: var(--mobilece104-r-pill);
  font-size: 12.5px;
  font-weight: 700;
  font-family: var(--mobilece104-font-body);
  transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.mobilece104-btn:active { transform: scale(0.94); }
.mobilece104-btn--login {
  background: transparent;
  color: var(--mobilece104-c-paper);
  border: 1px solid var(--mobilece104-c-cadet);
}
.mobilece104-btn--register {
  background: linear-gradient(135deg, var(--mobilece104-c-sky), var(--mobilece104-c-blue));
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 191, 255, 0.35);
}
.mobilece104-iconbtn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--mobilece104-c-paper);
  border: 1px solid var(--mobilece104-line);
  transition: transform 0.12s ease, background 0.18s ease;
}
.mobilece104-iconbtn:active { transform: scale(0.92); background: var(--mobilece104-tile); }
.mobilece104-iconbtn svg { width: 18px; height: 18px; }

/* ---- Drawer menu (partition menu page) ---- */
.mobilece104-drawer-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.mobilece104-drawer-mask.is-open { opacity: 1; visibility: visible; }
.mobilece104-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86%;
  max-width: 340px;
  background: linear-gradient(180deg, #1c1c1c 0%, #111 100%);
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.26s cubic-bezier(0.32, 0.72, 0.24, 1);
  overflow-y: auto;
  padding: 16px 14px calc(var(--mobilece104-bottomnav-h) + 24px);
  border-left: 1px solid var(--mobilece104-line);
}
.mobilece104-drawer.is-open { transform: translateX(0); }
.mobilece104-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mobilece104-drawer-title {
  font-family: var(--mobilece104-font-rounded);
  font-size: 15px;
  font-weight: 700;
  color: var(--mobilece104-c-paper);
}
.mobilece104-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--mobilece104-line);
  color: var(--mobilece104-c-paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobilece104-drawer-close:active { background: var(--mobilece104-tile); }
.mobilece104-drawer-section {
  margin-bottom: 12px;
  border: 1px solid var(--mobilece104-line);
  border-radius: var(--mobilece104-r-md);
  background: var(--mobilece104-panel);
  overflow: hidden;
}
.mobilece104-drawer-section-label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mobilece104-c-cadet);
  padding: 9px 12px 3px;
  font-weight: 700;
}
.mobilece104-drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  font-size: 13.5px;
  color: var(--mobilece104-c-paper);
  border-top: 1px solid rgba(95, 158, 160, 0.18);
}
.mobilece104-drawer-link:active { background: var(--mobilece104-tile); }
.mobilece104-drawer-link .mobilece104-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mobilece104-c-sky);
  flex-shrink: 0;
}

/* ---- Main scroll area ---- */
.mobilece104-main {
  padding: 12px 12px 0;
  padding-bottom: calc(var(--mobilece104-bottomnav-h) + 28px);
}

/* ---- Hero carousel ---- */
.mobilece104-hero {
  position: relative;
  border-radius: var(--mobilece104-r-lg);
  overflow: hidden;
  border: 1px solid var(--mobilece104-line);
  background: #0c0c0c;
  box-shadow: var(--mobilece104-shadow);
  margin-top: 4px;
}
.mobilece104-hero-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobilece104-hero-slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
}
.mobilece104-hero-slide img {
  width: 100%;
  height: 184px;
  object-fit: cover;
  display: block;
}
.mobilece104-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 100%);
  padding: 28px 14px 12px;
}
.mobilece104-hero-title {
  font-family: var(--mobilece104-font-rounded);
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}
.mobilece104-hero-sub {
  font-size: 11.5px;
  color: var(--mobilece104-c-sand);
  margin-top: 2px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.mobilece104-hero-dots {
  position: absolute;
  bottom: 10px;
  right: 12px;
  display: flex;
  gap: 5px;
  z-index: 4;
}
.mobilece104-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  padding: 0;
  transition: width 0.2s ease, background 0.2s ease;
}
.mobilece104-hero-dot.is-active {
  background: var(--mobilece104-c-sky);
  width: 18px;
  border-radius: 3px;
}

/* ---- H1 / page heading ---- */
.mobilece104-h1 {
  font-family: var(--mobilece104-font-rounded);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--mobilece104-c-paper);
  margin: 16px 2px 4px;
  letter-spacing: 0.1px;
}
.mobilece104-h1-sub {
  font-size: 12px;
  color: var(--mobilece104-c-sand);
  margin: 0 2px 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ---- H2 / section heading ---- */
.mobilece104-h2 {
  font-family: var(--mobilece104-font-rounded);
  font-size: 16.5px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--mobilece104-c-paper);
  margin: 20px 2px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobilece104-h2::before {
  content: "";
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, var(--mobilece104-c-sky), var(--mobilece104-c-blue));
  border-radius: 2px;
  flex-shrink: 0;
}
.mobilece104-h3 {
  font-family: var(--mobilece104-font-rounded);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--mobilece104-c-sand);
  margin: 12px 2px 4px;
  letter-spacing: 0.04em;
}

/* ---- Game category grid (outlined tile cards) ---- */
.mobilece104-section { margin-top: 12px; }
.mobilece104-section-intro {
  font-size: 12.5px;
  color: var(--mobilece104-c-paper-dim);
  margin: 0 2px 8px;
  line-height: 1.6;
}
.mobilece104-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.mobilece104-tile {
  display: block;
  width: 100%;
  border: 1px solid var(--mobilece104-line);
  background: linear-gradient(180deg, rgba(95, 158, 160, 0.10) 0%, rgba(0, 0, 0, 0.20) 100%);
  border-radius: var(--mobilece104-r-md);
  padding: 6px;
  text-align: center;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.18s ease, background 0.18s ease;
  overflow: hidden;
}
.mobilece104-tile:active {
  transform: scale(0.94);
  border-color: var(--mobilece104-c-sky);
  background: linear-gradient(180deg, rgba(0, 191, 255, 0.12) 0%, rgba(0, 0, 0, 0.22) 100%);
}
.mobilece104-tile-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--mobilece104-r-sm);
  background: #0c0c0c;
}
.mobilece104-tile-name {
  display: block;
  font-size: 11px;
  line-height: 1.3;
  color: var(--mobilece104-c-paper);
  margin-top: 5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- Generic content panel ---- */
.mobilece104-panel {
  border: 1px solid var(--mobilece104-line);
  border-radius: var(--mobilece104-r-lg);
  padding: 14px;
  margin-top: 12px;
  background: linear-gradient(180deg, var(--mobilece104-panel), rgba(0, 0, 0, 0.12));
}
.mobilece104-panel p {
  margin: 0 0 10px;
  color: var(--mobilece104-c-paper);
  font-size: 13px;
  line-height: 1.72;
}
.mobilece104-panel p:last-child { margin-bottom: 0; }
.mobilece104-panel strong { color: var(--mobilece104-c-sand); font-weight: 700; }

/* ---- Inline link chip ---- */
.mobilece104-inline-link {
  color: var(--mobilece104-c-sky);
  font-weight: 600;
  border-bottom: 1px dashed rgba(0, 191, 255, 0.5);
}
.mobilece104-inline-link:active { color: var(--mobilece104-c-sand); }

/* ---- Comparison table ---- */
.mobilece104-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 8px;
}
.mobilece104-compare-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  padding: 9px 11px;
  border-radius: var(--mobilece104-r-sm);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(95, 158, 160, 0.22);
  font-size: 12.5px;
  align-items: start;
}
.mobilece104-compare-key {
  font-family: var(--mobilece104-font-rounded);
  color: var(--mobilece104-c-sky);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
}
.mobilece104-compare-val {
  color: var(--mobilece104-c-paper);
  line-height: 1.55;
}

/* ---- Steps list ---- */
.mobilece104-steps {
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.mobilece104-steps li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  padding: 9px 11px;
  border-radius: var(--mobilece104-r-sm);
  background: rgba(0, 0, 0, 0.22);
  border-left: 3px solid var(--mobilece104-c-sand);
  font-size: 12.5px;
  color: var(--mobilece104-c-paper);
  line-height: 1.55;
  align-items: center;
}
.mobilece104-steps li b {
  font-family: var(--mobilece104-font-rounded);
  color: var(--mobilece104-c-sand);
  font-size: 13px;
}

/* ---- CTA block ---- */
.mobilece104-cta {
  margin-top: 14px;
  padding: 16px 14px;
  border-radius: var(--mobilece104-r-lg);
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.18), rgba(0, 0, 255, 0.20));
  border: 1px solid var(--mobilece104-line-bright);
  text-align: center;
}
.mobilece104-cta-title {
  font-family: var(--mobilece104-font-rounded);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.mobilece104-cta-text {
  font-size: 12.5px;
  color: var(--mobilece104-c-paper);
  margin: 0 auto 12px;
  line-height: 1.6;
  max-width: 320px;
}
.mobilece104-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: var(--mobilece104-r-pill);
  background: linear-gradient(135deg, var(--mobilece104-c-sky), var(--mobilece104-c-blue));
  color: #fff;
  font-family: var(--mobilece104-font-rounded);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(0, 191, 255, 0.4);
  transition: transform 0.12s ease;
}
.mobilece104-cta-btn:active { transform: scale(0.94); }
.mobilece104-cta-btn svg { width: 16px; height: 16px; }

/* ---- Mobile App Download block ---- */
.mobilece104-download-card {
  border: 1px solid var(--mobilece104-line);
  border-radius: var(--mobilece104-r-md);
  background: rgba(0, 0, 0, 0.22);
  padding: 12px;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.mobilece104-download-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  font-size: 11.5px;
  color: var(--mobilece104-c-paper-dim);
}
.mobilece104-download-meta div {
  background: rgba(95, 158, 160, 0.08);
  border: 1px solid var(--mobilece104-line);
  border-radius: var(--mobilece104-r-sm);
  padding: 7px 9px;
}
.mobilece104-download-meta b {
  display: block;
  color: var(--mobilece104-c-sand);
  font-family: var(--mobilece104-font-rounded);
  font-size: 12px;
  margin-bottom: 1px;
}
.mobilece104-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 14px;
  border-radius: var(--mobilece104-r-pill);
  background: linear-gradient(135deg, var(--mobilece104-c-sand), #d88647);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--mobilece104-font-rounded);
  box-shadow: 0 4px 12px rgba(244, 164, 96, 0.35);
  transition: transform 0.12s ease;
  width: 100%;
}
.mobilece104-download-btn:active { transform: scale(0.95); }
.mobilece104-download-btn svg { width: 16px; height: 16px; }

/* ---- Extended footer (homepage-specific) ---- */
.mobilece104-ext-footer {
  margin-top: 24px;
  border-top: 1px solid var(--mobilece104-line);
  padding-top: 14px;
}
.mobilece104-ext-section { margin-bottom: 16px; }
.mobilece104-ext-h {
  font-family: var(--mobilece104-font-rounded);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mobilece104-c-cadet);
  margin-bottom: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mobilece104-ext-h::before {
  content: "";
  width: 10px;
  height: 2px;
  background: var(--mobilece104-c-sand);
  border-radius: 1px;
}
.mobilece104-ext-brand {
  font-size: 12.5px;
  color: var(--mobilece104-c-paper);
  line-height: 1.7;
}
.mobilece104-ext-dir {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mobilece104-ext-dir a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  padding: 8px 9px;
  border-radius: var(--mobilece104-r-sm);
  background: rgba(95, 158, 160, 0.08);
  border: 1px solid var(--mobilece104-line);
  color: var(--mobilece104-c-paper);
  line-height: 1.35;
}
.mobilece104-ext-dir a:active { background: var(--mobilece104-tile); }
.mobilece104-ext-dir a svg { width: 13px; height: 13px; color: var(--mobilece104-c-cadet); flex-shrink: 0; }
.mobilece104-ext-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mobilece104-ext-promo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: var(--mobilece104-r-sm);
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.16), rgba(0, 0, 255, 0.10));
  border: 1px solid var(--mobilece104-line-bright);
  color: var(--mobilece104-c-paper);
  font-size: 11.5px;
  font-weight: 600;
  transition: transform 0.12s ease;
  text-align: left;
  width: 100%;
}
.mobilece104-ext-promo:active { transform: scale(0.95); }
.mobilece104-ext-promo svg { width: 16px; height: 16px; color: var(--mobilece104-c-sand); flex-shrink: 0; }
.mobilece104-ext-promo b {
  display: block;
  font-family: var(--mobilece104-font-rounded);
  color: var(--mobilece104-c-sand);
  font-size: 12.5px;
  margin-bottom: 1px;
}
.mobilece104-ext-disclaimer {
  font-size: 11.5px;
  color: var(--mobilece104-c-paper-soft);
  line-height: 1.7;
  padding: 10px 12px;
  border-radius: var(--mobilece104-r-sm);
  background: rgba(0, 0, 0, 0.22);
  border-left: 3px solid var(--mobilece104-c-cadet);
}

/* ---- Common footer ---- */
.mobilece104-foot {
  padding: 14px 12px calc(var(--mobilece104-bottomnav-h) + 18px);
  text-align: center;
  font-size: 11.5px;
  color: var(--mobilece104-c-paper-soft);
  line-height: 1.65;
  border-top: 1px solid var(--mobilece104-line);
}
.mobilece104-foot a { color: var(--mobilece104-c-cadet); }
.mobilece104-foot a + a { margin-left: 6px; }

/* ---- Bottom nav (layered bottom panel) ---- */
.mobilece104-bottomnav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--mobilece104-canvas);
  height: var(--mobilece104-bottomnav-h);
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--mobilece104-line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 50;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobilece104-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 10px;
  color: var(--mobilece104-c-paper-soft);
  font-weight: 600;
  position: relative;
  padding: 4px 2px;
  transition: color 0.18s ease, transform 0.12s ease;
  text-align: center;
}
.mobilece104-nav-item:active { transform: scale(0.9); }
.mobilece104-nav-item.is-active { color: var(--mobilece104-c-sky); }
.mobilece104-nav-item.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--mobilece104-c-sky);
  border-radius: 0 0 3px 3px;
}
.mobilece104-nav-item svg { width: 22px; height: 22px; }
.mobilece104-nav-item.is-promo { color: var(--mobilece104-c-sand); }
.mobilece104-nav-item.is-promo svg { filter: drop-shadow(0 0 4px rgba(244, 164, 96, 0.5)); }
.mobilece104-nav-label { line-height: 1.1; }

/* ---- Utility ---- */
.mobilece104-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mobilece104-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--mobilece104-c-sky);
  color: #000;
  padding: 8px 12px;
  border-radius: 0 0 8px 0;
  z-index: 100;
  font-weight: 700;
  font-size: 12px;
}
.mobilece104-skip:focus { left: 0; }

/* ---- Wide screen: keep phone canvas centered ---- */
@media (min-width: 431px) {
  body { background: #060606; }
}

/* ---- Small phones fine-tune ---- */
@media (max-width: 359px) {
  .mobilece104-h1 { font-size: 19px; }
  .mobilece104-tile-name { font-size: 10.5px; }
  .mobilece104-game-grid { gap: 6px; }
  .mobilece104-hero-slide img { height: 160px; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .mobilece104-hero-track { transition: none; }
  .mobilece104-btn:active, .mobilece104-tile:active, .mobilece104-cta-btn:active,
  .mobilece104-download-btn:active, .mobilece104-ext-promo:active, .mobilece104-nav-item:active,
  .mobilece104-iconbtn:active { transform: none; }
}
