/* ==========================================================================
   dc44.homes — mobile layer styles (dc44-layers-835835.css)
   Canvas: 320-430px phone-first, centered phone frame on wide screens.
   All classes and custom properties use the mobile83583- prefix.
   Palette: #0F0F23 base / #CD853F gold / #FAFAD2 cream / #C71585 magenta / #FF7F50 coral
   ========================================================================== */

:root {
  --mobile83583-c-bg: #0f0f23;
  --mobile83583-c-bgdeep: #07071a;
  --mobile83583-c-panel: #191934;
  --mobile83583-c-panel2: #20203f;
  --mobile83583-c-line: #2c2c52;
  --mobile83583-c-gold: #cd853f;
  --mobile83583-c-cream: #fafad2;
  --mobile83583-c-creamdim: rgba(250, 250, 210, 0.75);
  --mobile83583-c-magenta: #c71585;
  --mobile83583-c-coral: #ff7f50;
  --mobile83583-font-display: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  --mobile83583-font-body: 'Hind Siliguri', 'Noto Sans Bengali', 'Segoe UI', sans-serif;
  --mobile83583-radius-card: 14px;
  --mobile83583-radius-btn: 10px;
  --mobile83583-top-h: 56px;
  --mobile83583-bnav-h: 62px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

* {
  box-sizing: border-box;
}

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

body.mobile83583-body {
  margin: 0;
  min-height: 100vh;
  background: var(--mobile83583-c-bgdeep);
  color: var(--mobile83583-c-cream);
  font-family: var(--mobile83583-font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

.mobile83583-shell {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
  min-height: 100vh;
  background: var(--mobile83583-c-bg);
  box-shadow: 0 0 42px rgba(0, 0, 0, 0.55);
  overflow-x: clip;
}

.mobile83583-main {
  padding-top: calc(var(--mobile83583-top-h) + env(safe-area-inset-top, 0px));
  /* reserve room so the fixed bottom bar never covers the last content */
  padding-bottom: calc(var(--mobile83583-bnav-h) + 26px + env(safe-area-inset-bottom, 0px));
}

.mobile83583-section {
  padding: 20px 14px 8px;
  border-top: 1px solid rgba(44, 44, 82, 0.65);
}

.mobile83583-sronly {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.mobile83583-body ::selection {
  background: var(--mobile83583-c-magenta);
  color: var(--mobile83583-c-cream);
}

.mobile83583-body :focus-visible {
  outline: 2px solid var(--mobile83583-c-cream);
  outline-offset: 2px;
  border-radius: 6px;
}

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

.mobile83583-body a {
  color: var(--mobile83583-c-coral);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 127, 80, 0.55);
}

.mobile83583-body a:hover {
  color: var(--mobile83583-c-gold);
  border-bottom-color: var(--mobile83583-c-gold);
}

/* --------------------------------------------------------------------------
   Fixed top action bar: logo-led brand strip + register / login / menu
   -------------------------------------------------------------------------- */

.mobile83583-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: calc(var(--mobile83583-top-h) + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) 10px 6px;
  background: rgba(15, 15, 35, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mobile83583-c-line);
}

.mobile83583-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  min-width: 0;
}

.mobile83583-logo {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1.5px solid var(--mobile83583-c-gold);
  object-fit: cover;
  flex: 0 0 auto;
}

.mobile83583-brandname {
  font-family: var(--mobile83583-font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.4px;
  color: var(--mobile83583-c-cream);
  white-space: nowrap;
}

.mobile83583-btnreg {
  font-family: var(--mobile83583-font-body);
  font-size: 12.5px;
  font-weight: 600;
  min-height: 34px;
  padding: 6px 12px;
  border: 0;
  border-radius: var(--mobile83583-radius-btn);
  background: linear-gradient(135deg, var(--mobile83583-c-coral), var(--mobile83583-c-magenta));
  color: #14040f;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.mobile83583-btnlogin {
  font-family: var(--mobile83583-font-body);
  font-size: 12.5px;
  font-weight: 600;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--mobile83583-c-gold);
  border-radius: var(--mobile83583-radius-btn);
  background: transparent;
  color: var(--mobile83583-c-gold);
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}

.mobile83583-btnreg:active,
.mobile83583-btnlogin:active {
  transform: translateY(1px) scale(0.97);
}

.mobile83583-menubtn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 34px;
  border: 1px solid var(--mobile83583-c-line);
  border-radius: var(--mobile83583-radius-btn);
  background: var(--mobile83583-c-panel);
  color: var(--mobile83583-c-cream);
  cursor: pointer;
}

.mobile83583-menubtn:active {
  transform: scale(0.94);
}

.mobile83583-menubtn svg {
  width: 18px;
  height: 18px;
}

/* compact route panel that folds out under the top bar */

.mobile83583-menupanel {
  position: fixed;
  top: calc(var(--mobile83583-top-h) + env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 70;
  background: rgba(20, 20, 44, 0.985);
  border-bottom: 2px solid var(--mobile83583-c-gold);
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.28s ease;
}

.mobile83583-menupanel.mobile83583-menuopen {
  max-height: 420px;
  opacity: 1;
  visibility: visible;
  padding: 12px;
}

.mobile83583-mroute {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--mobile83583-c-line);
  border-radius: 12px;
  background: var(--mobile83583-c-panel);
  color: var(--mobile83583-c-cream);
  font-size: 13.5px;
  font-weight: 500;
  border-bottom: 1px solid var(--mobile83583-c-line);
}

.mobile83583-mroute:hover {
  border-color: var(--mobile83583-c-coral);
  color: var(--mobile83583-c-coral);
}

.mobile83583-mroute:active {
  transform: scale(0.97);
}

.mobile83583-mdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mobile83583-c-magenta);
  flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   Hero banner carousel
   -------------------------------------------------------------------------- */

.mobile83583-hero {
  padding: 12px 14px 0;
}

.mobile83583-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--mobile83583-radius-card);
  border: 1px solid var(--mobile83583-c-line);
  background: var(--mobile83583-c-panel);
}

.mobile83583-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.33, 0.9, 0.3, 1);
}

.mobile83583-slide {
  flex: 0 0 100%;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: var(--mobile83583-c-panel2);
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.mobile83583-slideimg {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mobile83583-slidecap {
  display: block;
  padding: 9px 12px 11px;
  background: linear-gradient(180deg, rgba(15, 15, 35, 0.1), rgba(15, 15, 35, 0.92));
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--mobile83583-c-cream);
}

.mobile83583-dots {
  display: flex;
  justify-content: center;
  gap: 2px;
  padding: 8px 0 2px;
}

.mobile83583-dot {
  width: 44px;
  height: 30px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.mobile83583-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(250, 250, 210, 0.32);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile83583-dot.mobile83583-doton::before {
  background: var(--mobile83583-c-coral);
  transform: translate(-50%, -50%) scale(1.25);
}

/* --------------------------------------------------------------------------
   Intro headline + staggered CTA pair
   -------------------------------------------------------------------------- */

.mobile83583-intro {
  padding: 18px 16px 6px;
}

.mobile83583-h1 {
  font-family: var(--mobile83583-font-display);
  font-size: clamp(24px, 6.4vw, 31px);
  line-height: 1.22;
  margin: 0 0 10px;
  color: var(--mobile83583-c-cream);
}

.mobile83583-h1 em {
  font-style: normal;
  color: var(--mobile83583-c-coral);
}

.mobile83583-h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 9px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--mobile83583-c-gold), var(--mobile83583-c-magenta));
}

.mobile83583-lede {
  margin: 0 0 14px;
  color: var(--mobile83583-c-creamdim);
  font-size: 14.5px;
}

.mobile83583-ctarow {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

.mobile83583-ctamain {
  flex: 1 1 170px;
  min-height: 48px;
  border: 0;
  border-radius: 13px;
  padding: 12px 16px;
  font-family: var(--mobile83583-font-display);
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--mobile83583-c-coral) 0%, var(--mobile83583-c-magenta) 100%);
  color: #14040f;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(199, 21, 133, 0.35);
  transition: transform 0.12s ease;
}

.mobile83583-ctasec {
  flex: 0 1 auto;
  min-height: 40px;
  align-self: center;
  border: 1.5px solid var(--mobile83583-c-gold);
  border-radius: var(--mobile83583-radius-btn);
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  background: rgba(205, 133, 63, 0.1);
  color: var(--mobile83583-c-gold);
  cursor: pointer;
  transition: transform 0.12s ease;
}

.mobile83583-ctamain:active,
.mobile83583-ctasec:active {
  transform: translateY(1px) scale(0.97);
}

/* --------------------------------------------------------------------------
   Section headings (h2) with side counter chip
   -------------------------------------------------------------------------- */

.mobile83583-sechead {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.mobile83583-h2 {
  font-family: var(--mobile83583-font-display);
  font-size: clamp(18.5px, 4.8vw, 22px);
  line-height: 1.3;
  margin: 0;
  color: var(--mobile83583-c-cream);
}

.mobile83583-h2 b {
  color: var(--mobile83583-c-gold);
  font-weight: 700;
}

.mobile83583-count {
  flex: 0 0 auto;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--mobile83583-c-cream);
  background: rgba(199, 21, 133, 0.22);
  border: 1px solid rgba(199, 21, 133, 0.5);
  border-radius: 999px;
  padding: 2px 9px;
  white-space: nowrap;
}

.mobile83583-seclede {
  margin: 0 0 12px;
  font-size: 13.8px;
  color: var(--mobile83583-c-creamdim);
}

/* --------------------------------------------------------------------------
   Game tiles — compact 4 column grid (5 columns from 400px up)
   -------------------------------------------------------------------------- */

.mobile83583-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

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

.mobile83583-gcard {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--mobile83583-c-line);
  border-radius: var(--mobile83583-radius-card);
  background: var(--mobile83583-c-panel);
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.12s ease, border-color 0.12s ease;
}

.mobile83583-gcard:active {
  transform: scale(0.94);
  border-color: var(--mobile83583-c-gold);
}

.mobile83583-gicon {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--mobile83583-c-panel2);
}

.mobile83583-gname {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  padding: 4px 5px 6px;
  font-size: 11.5px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--mobile83583-c-cream);
}

/* --------------------------------------------------------------------------
   Hot picks — horizontal icon + name strips (scroll-snap lane)
   -------------------------------------------------------------------------- */

.mobile83583-stripwrap {
  margin: 0 -14px;
  padding: 2px 14px 6px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.mobile83583-stripwrap::-webkit-scrollbar {
  display: none;
}

.mobile83583-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  width: max-content;
}

.mobile83583-hcard {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 196px;
  min-height: 56px;
  padding: 7px 10px 7px 7px;
  border: 1px solid var(--mobile83583-c-line);
  border-radius: var(--mobile83583-radius-card);
  background: linear-gradient(120deg, var(--mobile83583-c-panel2), var(--mobile83583-c-panel));
  cursor: pointer;
  scroll-snap-align: start;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.12s ease, border-color 0.12s ease;
}

.mobile83583-hcard:active {
  transform: scale(0.96);
  border-color: var(--mobile83583-c-coral);
}

.mobile83583-hicon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid var(--mobile83583-c-line);
}

.mobile83583-hname {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--mobile83583-c-cream);
}

.mobile83583-hflame {
  flex: 0 0 auto;
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mobile83583-c-coral);
  box-shadow: 0 0 8px rgba(255, 127, 80, 0.8);
}

/* --------------------------------------------------------------------------
   Content panels shared by the after-game modules
   -------------------------------------------------------------------------- */

.mobile83583-panel {
  background: var(--mobile83583-c-panel);
  border: 1px solid var(--mobile83583-c-line);
  border-radius: var(--mobile83583-radius-card);
  padding: 14px 13px;
  margin: 0 0 12px;
}

.mobile83583-panel p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--mobile83583-c-creamdim);
}

.mobile83583-panel p:last-child {
  margin-bottom: 0;
}

.mobile83583-panel strong {
  color: var(--mobile83583-c-cream);
  font-weight: 600;
}

/* ordered steps with gold rail */

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

.mobile83583-steps li {
  counter-increment: mobile83583-step;
  position: relative;
  padding: 0 0 12px 34px;
  font-size: 13.8px;
  color: var(--mobile83583-c-creamdim);
}

.mobile83583-steps li::before {
  content: counter(mobile83583-step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(205, 133, 63, 0.16);
  border: 1px solid var(--mobile83583-c-gold);
  color: var(--mobile83583-c-gold);
  font-size: 12px;
  font-weight: 700;
}

.mobile83583-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 27px;
  bottom: -2px;
  width: 1.5px;
  background: rgba(205, 133, 63, 0.35);
}

/* winners table-like strips */

.mobile83583-winners {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile83583-wrow {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 7px 10px;
  border: 1px solid var(--mobile83583-c-line);
  border-radius: 12px;
  background: var(--mobile83583-c-panel2);
}

.mobile83583-wicon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  flex: 0 0 auto;
}

.mobile83583-wname {
  font-size: 13px;
  font-weight: 600;
  color: var(--mobile83583-c-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.mobile83583-wgame {
  font-size: 11.5px;
  color: var(--mobile83583-c-creamdim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.mobile83583-wmeta {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.mobile83583-wamt {
  flex: 0 0 auto;
  font-family: var(--mobile83583-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--mobile83583-c-gold);
  white-space: nowrap;
}

/* category highlight cards, two wide */

.mobile83583-catgrid {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.mobile83583-catcard {
  border: 1px solid var(--mobile83583-c-line);
  border-left: 3px solid var(--mobile83583-c-magenta);
  border-radius: 12px;
  background: var(--mobile83583-c-panel);
  padding: 10px 11px;
}

.mobile83583-catcard:nth-child(even) {
  border-left-color: var(--mobile83583-c-gold);
}

.mobile83583-catcard h3 {
  margin: 0 0 5px;
  font-family: var(--mobile83583-font-display);
  font-size: 14.5px;
  color: var(--mobile83583-c-cream);
}

.mobile83583-catcard p {
  margin: 0;
  font-size: 12.8px;
  line-height: 1.55;
  color: var(--mobile83583-c-creamdim);
}

/* selection guide rows: goal strip -> advice */

.mobile83583-guide {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile83583-grow {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(205, 133, 63, 0.55);
  background: rgba(205, 133, 63, 0.07);
}

.mobile83583-grow dt {
  font-family: var(--mobile83583-font-display);
  font-size: 14px;
  color: var(--mobile83583-c-gold);
}

.mobile83583-grow dd {
  margin: 0;
  font-size: 13.5px;
  color: var(--mobile83583-c-creamdim);
}

/* requirements checklist */

.mobile83583-checklist {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile83583-checklist li {
  position: relative;
  padding: 9px 11px 9px 36px;
  border-radius: 11px;
  background: var(--mobile83583-c-panel2);
  border: 1px solid var(--mobile83583-c-line);
  font-size: 13.5px;
  color: var(--mobile83583-c-creamdim);
}

.mobile83583-checklist li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 14px;
  width: 12px;
  height: 7px;
  border-left: 2.5px solid var(--mobile83583-c-coral);
  border-bottom: 2.5px solid var(--mobile83583-c-coral);
  transform: rotate(-45deg);
}

/* folded question blocks */

.mobile83583-qa {
  margin: 14px 0 0;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(199, 21, 133, 0.08);
  border: 1px solid rgba(199, 21, 133, 0.35);
}

.mobile83583-qa h3 {
  margin: 0 0 6px;
  font-family: var(--mobile83583-font-display);
  font-size: 14.5px;
  color: var(--mobile83583-c-coral);
}

.mobile83583-qa p {
  margin: 0;
  font-size: 13.5px;
  color: var(--mobile83583-c-creamdim);
}

/* --------------------------------------------------------------------------
   Extended footer: page directory > brand > promo shortcuts > disclaimer
   -------------------------------------------------------------------------- */

.mobile83583-extfoot {
  margin-top: 22px;
  padding: 20px 14px 10px;
  border-top: 2px solid var(--mobile83583-c-gold);
  background: linear-gradient(180deg, rgba(205, 133, 63, 0.05), transparent 40%);
}

.mobile83583-dir {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mobile83583-dirlink {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 7px 6px;
  border: 1px solid var(--mobile83583-c-line);
  border-radius: 11px;
  background: var(--mobile83583-c-panel);
  color: var(--mobile83583-c-cream);
  font-size: 12.3px;
  font-weight: 500;
  text-align: center;
  line-height: 1.25;
  border-bottom: 1px solid var(--mobile83583-c-line);
}

.mobile83583-dirlink:hover {
  border-color: var(--mobile83583-c-coral);
  color: var(--mobile83583-c-coral);
}

.mobile83583-brandnote {
  margin: 16px 0 0;
  font-size: 13.2px;
  line-height: 1.6;
  color: var(--mobile83583-c-creamdim);
  border-left: 3px solid var(--mobile83583-c-magenta);
  padding-left: 10px;
}

.mobile83583-promorow {
  display: flex;
  gap: 8px;
  margin: 14px 0 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.mobile83583-promorow::-webkit-scrollbar {
  display: none;
}

.mobile83583-promolink {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  font-size: 12.8px;
  font-weight: 600;
  background: linear-gradient(120deg, rgba(255, 127, 80, 0.16), rgba(199, 21, 133, 0.2));
  border: 1px solid rgba(255, 127, 80, 0.55);
  color: var(--mobile83583-c-cream);
  cursor: pointer;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.12s ease;
}

.mobile83583-promolink:active {
  transform: scale(0.95);
}

.mobile83583-promolink svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.mobile83583-disclaim {
  margin: 14px 0 4px;
  padding: 10px 11px;
  border-radius: 11px;
  background: rgba(15, 15, 35, 0.75);
  border: 1px solid var(--mobile83583-c-line);
  font-size: 12.2px;
  line-height: 1.55;
  color: rgba(250, 250, 210, 0.6);
}

/* --------------------------------------------------------------------------
   Common footer (copyright only) + fixed bottom icon rail
   -------------------------------------------------------------------------- */

.mobile83583-footer {
  padding: 14px 14px calc(var(--mobile83583-bnav-h) + 14px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 12.3px;
  color: rgba(250, 250, 210, 0.55);
}

.mobile83583-footer p {
  margin: 0;
}

.mobile83583-bnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: rgba(15, 15, 35, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1.5px solid var(--mobile83583-c-gold);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile83583-bnavitem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: var(--mobile83583-bnav-h);
  padding: 7px 2px 6px;
  color: rgba(250, 250, 210, 0.72);
  font-size: 10.8px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  border-bottom: 0;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s ease;
}

.mobile83583-bnavitem:active {
  transform: translateY(1px);
}

.mobile83583-bnavitem svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 0.18s ease;
}

.mobile83583-bnavitem.mobile83583-bactive {
  color: var(--mobile83583-c-coral);
}

.mobile83583-bnavitem.mobile83583-bactive svg {
  fill: rgba(255, 127, 80, 0.32);
  stroke: var(--mobile83583-c-coral);
}

/* --------------------------------------------------------------------------
   Short-distance reveal motion (skipped when the visitor prefers stillness)
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  .mobile83583-reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .mobile83583-reveal.mobile83583-revealin {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile83583-section {
    transition: opacity 0.35s ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile83583-track,
  .mobile83583-menupanel {
    transition: none;
  }
}
