/* ============================================================= *
 * OkBet Casino - visuals-native-85e056.css
 * Mobile-first lobby styling (320-430px canvas, centered on wide screens).
 *
 * Navigation design language for this site:
 *   - Header: LOGO-led action bar
 *   - Menu: stacked overlay
 *   - Bottom band: brand-accented footer band
 *   - Icons: monochrome icons with accent indicator
 *   - Active state: top indicator line
 *   - Micro-interaction: rapid scale feedback
 *
 * Palette: #4682B4 | #228B22 | #1E90FF | #2D2D2D | #48D1CC
 *   (dark tones = background, light tones = text/accent)
 *
 * All custom classes and CSS variables use the uie056e- prefix.
 * ============================================================= */

:root {
  --uie056e-bg: #2D2D2D;
  --uie056e-bg-deep: #232323;
  --uie056e-surface: #34373c;
  --uie056e-surface-2: #3d4148;
  --uie056e-line: #454a52;
  --uie056e-primary: #4682B4;
  --uie056e-primary-dark: #356a96;
  --uie056e-secondary: #228B22;
  --uie056e-accent: #1E90FF;
  --uie056e-highlight: #48D1CC;
  --uie056e-text: #f1f4f8;
  --uie056e-text-muted: #aab4c0;
  --uie056e-text-dim: #828b97;
  --uie056e-warn: #f4c544;
  --uie056e-radius: 14px;
  --uie056e-radius-sm: 9px;
  --uie056e-radius-lg: 22px;
  --uie056e-gap: 14px;
  --uie056e-touch: 44px;
  --uie056e-header-h: 60px;
  --uie056e-bottomnav-h: 64px;
  --uie056e-max: 460px;
  --uie056e-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
  --uie056e-shadow-soft: 0 3px 10px rgba(0, 0, 0, 0.22);
}

/* ---------------- Reset ---------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, system-ui, sans-serif;
  background: var(--uie056e-bg);
  color: var(--uie056e-text);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--uie056e-highlight);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--uie056e-accent);
  text-decoration: underline;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

/* ---------------- Mobile canvas shell ---------------- */

.uie056e-shell {
  width: 100%;
  max-width: var(--uie056e-max);
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, #2f3338 0%, var(--uie056e-bg) 30%, var(--uie056e-bg-deep) 100%);
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.55);
  overflow-x: hidden;
}

@media (min-width: 480px) {
  body {
    background: #15171a;
  }
}

/* ---------------- Header (LOGO-led action bar) ---------------- */

.uie056e-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--uie056e-header-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: linear-gradient(90deg, rgba(53, 106, 150, 0.96), rgba(30, 144, 255, 0.92) 60%, rgba(72, 209, 204, 0.9));
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(241, 244, 248, 0.14);
  transition: height 0.22s ease, background 0.22s ease;
}

.uie056e-header-compact {
  height: 50px;
  background: linear-gradient(90deg, rgba(45, 45, 45, 0.97), rgba(53, 106, 150, 0.96));
  box-shadow: var(--uie056e-shadow-soft);
}

.uie056e-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1 1 auto;
  min-width: 0;
}

.uie056e-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.92);
  padding: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.uie056e-header-compact .uie056e-logo {
  width: 30px;
  height: 30px;
}

.uie056e-brandname {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.2px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.uie056e-brandname b {
  color: #fff;
}

.uie056e-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.uie056e-btn {
  min-height: var(--uie056e-touch);
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.uie056e-btn:active {
  transform: scale(0.94);
}

.uie056e-login {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  min-width: 58px;
}

.uie056e-login:hover {
  background: rgba(255, 255, 255, 0.26);
}

.uie056e-register {
  color: #15201a;
  background: linear-gradient(135deg, #f7c948, #f4a83f);
  box-shadow: 0 3px 8px rgba(244, 168, 63, 0.35);
  min-width: 74px;
}

.uie056e-register:hover {
  filter: brightness(1.06);
}

.uie056e-menubtn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.uie056e-menubtn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.uie056e-menubtn svg {
  width: 20px;
  height: 20px;
}

/* ---------------- Stacked overlay menu ---------------- */

.uie056e-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: 86%;
  max-width: 360px;
  height: 100vh;
  background: linear-gradient(180deg, #2b2f34, #202327);
  box-shadow: -12px 0 36px rgba(0, 0, 0, 0.55);
  transform: translateX(105%);
  transition: transform 0.3s cubic-bezier(0.22, 0.9, 0.3, 1);
  overflow-y: auto;
  padding: 18px 16px calc(var(--uie056e-bottomnav-h) + 24px);
  visibility: hidden;
}

.uie056e-menu-open {
  transform: translateX(0);
  visibility: visible;
}

.uie056e-menuhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--uie056e-line);
}

.uie056e-menuhead .uie056e-brandname {
  font-size: 15px;
}

.uie056e-menuclose {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--uie056e-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--uie056e-surface);
}

.uie056e-menuclose:hover {
  color: #fff;
  background: var(--uie056e-surface-2);
}

.uie056e-menuclose svg {
  width: 18px;
  height: 18px;
}

.uie056e-menutitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--uie056e-text-dim);
  margin: 16px 4px 8px;
  font-weight: 700;
}

.uie056e-menulist li {
  margin-bottom: 4px;
}

.uie056e-menulist a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 10px;
  color: var(--uie056e-text);
  font-weight: 600;
  font-size: 14px;
  min-height: var(--uie056e-touch);
  background: transparent;
  border-left: 3px solid transparent;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.1s ease;
}

.uie056e-menulist a:hover,
.uie056e-menulist a:focus {
  text-decoration: none;
  background: var(--uie056e-surface);
  color: #fff;
  border-left-color: var(--uie056e-highlight);
}

.uie056e-menulist a:active {
  transform: scale(0.98);
}

.uie056e-menulist a span.uie056e-menuicon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--uie056e-highlight);
  flex-shrink: 0;
}

.uie056e-menulist a span.uie056e-menuicon svg {
  width: 18px;
  height: 18px;
}

.uie056e-menupromo {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uie056e-menupromo .uie056e-btn {
  width: 100%;
  min-height: 48px;
  font-size: 14px;
}

.uie056e-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(8, 10, 14, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.uie056e-backdrop-on {
  opacity: 1;
  visibility: visible;
}

.uie056e-noscroll {
  overflow: hidden;
}

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

.uie056e-main {
  padding: 14px 12px calc(var(--uie056e-bottomnav-h) + 28px);
}

.uie056e-hero {
  background: radial-gradient(120% 120% at 15% 10%, rgba(30, 144, 255, 0.22), transparent 55%),
    radial-gradient(120% 120% at 90% 0%, rgba(72, 209, 204, 0.18), transparent 50%),
    linear-gradient(160deg, #2f4252, #20272d);
  border: 1px solid var(--uie056e-line);
  border-radius: var(--uie056e-radius-lg);
  padding: 18px 16px;
  margin-bottom: 16px;
  box-shadow: var(--uie056e-shadow);
}

.uie056e-hero h1 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.uie056e-hero h1 span {
  color: var(--uie056e-highlight);
}

.uie056e-hero p {
  color: var(--uie056e-text-muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.uie056e-herocta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.uie056e-herocta .uie056e-btn {
  flex: 1 1 auto;
  min-height: 46px;
  font-size: 14px;
}

.uie056e-herocta .uie056e-register {
  flex: 1.4 1 auto;
}

.uie056e-herocta .uie056e-login {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.uie056e-herocta .uie056e-login:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}

/* ---------------- Carousel ---------------- */

.uie056e-carousel {
  position: relative;
  border-radius: var(--uie056e-radius);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--uie056e-shadow);
  background: #1a1d21;
}

.uie056e-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 0.85, 0.32, 1);
  will-change: transform;
}

.uie056e-slide {
  min-width: 100%;
  position: relative;
}

.uie056e-slidebtn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
}

.uie056e-slidebtn img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  display: block;
}

.uie056e-slidecap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  padding: 24px 6px 4px;
  pointer-events: none;
}

.uie056e-carctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 18, 22, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.uie056e-carctrl:hover {
  background: rgba(15, 18, 22, 0.8);
}

.uie056e-carctrl svg {
  width: 16px;
  height: 16px;
}

.uie056e-prev {
  left: 8px;
}

.uie056e-next {
  right: 8px;
}

.uie056e-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.uie056e-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.22s ease, background 0.22s ease;
}

.uie056e-dot-active {
  width: 20px;
  border-radius: 6px;
  background: var(--uie056e-highlight);
}

/* ---------------- Section header ---------------- */

.uie056e-section {
  margin-bottom: 20px;
}

.uie056e-secthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
  padding: 0 2px;
}

.uie056e-secthead h2 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  flex: 1 1 auto;
}

.uie056e-secttag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--uie056e-highlight);
  background: rgba(72, 209, 204, 0.12);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.uie056e-sectrule {
  height: 2px;
  background: linear-gradient(90deg, var(--uie056e-primary), transparent);
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ---------------- Game grid (compact mobile) ---------------- */

.uie056e-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (min-width: 360px) {
  .uie056e-grid {
    gap: 9px;
  }
}

@media (min-width: 395px) {
  .uie056e-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}

.uie056e-game {
  background: var(--uie056e-surface);
  border: 1px solid var(--uie056e-line);
  border-radius: var(--uie056e-radius-sm);
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.16s ease, border-color 0.16s ease;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  width: 100%;
}

.uie056e-game:hover {
  border-color: var(--uie056e-highlight);
  box-shadow: 0 4px 12px rgba(72, 209, 204, 0.18);
}

.uie056e-game-pressed {
  transform: scale(0.9);
  border-color: var(--uie056e-accent);
}

.uie056e-gamethumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  overflow: hidden;
  background: #1a1d21;
  position: relative;
}

.uie056e-gamethumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.uie056e-gamethumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35));
  border-radius: 7px;
}

.uie056e-gamename {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--uie056e-text-muted);
  line-height: 1.2;
  min-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  width: 100%;
}

.uie056e-game:hover .uie056e-gamename {
  color: #fff;
}

/* ---------------- Content modules ---------------- */

.uie056e-module {
  background: var(--uie056e-surface);
  border: 1px solid var(--uie056e-line);
  border-left: 4px solid var(--uie056e-primary);
  border-radius: var(--uie056e-radius);
  padding: 16px 14px;
  margin-bottom: 16px;
  box-shadow: var(--uie056e-shadow-soft);
}

.uie056e-module h2 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.uie056e-module h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--uie056e-highlight);
  margin-top: 12px;
  margin-bottom: 6px;
}

.uie056e-module p {
  color: var(--uie056e-text-muted);
  font-size: 13.5px;
  margin-bottom: 10px;
}

.uie056e-module p:last-child {
  margin-bottom: 0;
}

.uie056e-module ul,
.uie056e-module ol {
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--uie056e-text-muted);
  font-size: 13.5px;
}

.uie056e-module ul li,
.uie056e-module ol li {
  margin-bottom: 6px;
  list-style: disc;
}

.uie056e-module ol li {
  list-style: decimal;
}

.uie056e-module a {
  color: var(--uie056e-highlight);
  font-weight: 600;
}

.uie056e-module strong {
  color: #fff;
  font-weight: 700;
}

.uie056e-stepgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.uie056e-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--uie056e-bg-deep);
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid var(--uie056e-line);
}

.uie056e-stepnum {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--uie056e-primary), var(--uie056e-accent));
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.uie056e-step p {
  margin: 0;
  font-size: 13px;
  color: var(--uie056e-text);
}

.uie056e-catgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 380px) {
  .uie056e-catgrid {
    grid-template-columns: 1fr 1fr;
  }
}

.uie056e-catcard {
  background: var(--uie056e-bg-deep);
  border: 1px solid var(--uie056e-line);
  border-radius: 12px;
  padding: 12px;
}

.uie056e-catcard h3 {
  margin-top: 0;
  font-size: 13px;
  color: var(--uie056e-highlight);
}

.uie056e-catcard p {
  font-size: 12.5px;
  margin: 0;
}

.uie056e-styletable {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.uie056e-stylerow {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  background: var(--uie056e-bg-deep);
  border: 1px solid var(--uie056e-line);
  border-radius: 10px;
  padding: 10px;
  align-items: center;
}

.uie056e-styletag {
  font-weight: 800;
  font-size: 12px;
  color: #15201a;
  background: linear-gradient(135deg, var(--uie056e-highlight), #7ee0db);
  border-radius: 7px;
  padding: 6px 4px;
  text-align: center;
}

.uie056e-stylerow p {
  margin: 0;
  font-size: 12.5px;
  color: var(--uie056e-text-muted);
}

.uie056e-rtpbar {
  height: 10px;
  border-radius: 6px;
  background: var(--uie056e-bg-deep);
  overflow: hidden;
  margin: 4px 0 12px;
  border: 1px solid var(--uie056e-line);
}

.uie056e-rtpfill {
  height: 100%;
  background: linear-gradient(90deg, var(--uie056e-secondary), var(--uie056e-highlight));
  border-radius: 6px;
}

.uie056e-paygrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 380px) {
  .uie056e-paygrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.uie056e-paychip {
  background: var(--uie056e-bg-deep);
  border: 1px solid var(--uie056e-line);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--uie056e-text);
}

.uie056e-paychip span {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--uie056e-text-dim);
  margin-top: 2px;
}

/* ---------------- Inline promo note ---------------- */

.uie056e-promonote {
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.22), rgba(30, 144, 255, 0.16));
  border: 1px solid rgba(72, 209, 204, 0.4);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 10px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.uie056e-promonote p {
  margin: 0;
  color: var(--uie056e-text);
  font-size: 13px;
  flex: 1 1 60%;
}

.uie056e-promonote .uie056e-btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 12.5px;
}

/* ---------------- Expanded homepage footer ---------------- */

.uie056e-expfooter {
  margin-top: 20px;
  border-top: 1px solid var(--uie056e-line);
  padding-top: 16px;
}

.uie056e-expblock {
  margin-bottom: 16px;
}

.uie056e-expblock h2 {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.uie056e-expblock p {
  font-size: 12.5px;
  color: var(--uie056e-text-muted);
  margin-bottom: 8px;
}

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

.uie056e-shortcut {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--uie056e-surface);
  border: 1px solid var(--uie056e-line);
  border-radius: 9px;
  padding: 9px 10px;
  font-size: 12px;
  color: var(--uie056e-text);
  font-weight: 600;
  min-height: 42px;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.uie056e-shortcut:hover,
.uie056e-shortcut:focus {
  text-decoration: none;
  color: #fff;
  background: var(--uie056e-surface-2);
  border-color: var(--uie056e-highlight);
}

.uie056e-shortcut:active {
  transform: scale(0.96);
}

.uie056e-shortcut svg {
  width: 16px;
  height: 16px;
  color: var(--uie056e-highlight);
  flex-shrink: 0;
}

.uie056e-promorow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.uie056e-promocard {
  display: block;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 12.5px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.12s ease, filter 0.16s ease;
}

.uie056e-promocard:active {
  transform: scale(0.95);
}

.uie056e-promocard svg {
  width: 16px;
  height: 16px;
}

.uie056e-promo-a {
  color: #15201a;
  background: linear-gradient(135deg, #f7c948, #f4a83f);
}

.uie056e-promo-b {
  color: #fff;
  background: linear-gradient(135deg, var(--uie056e-primary), var(--uie056e-accent));
}

.uie056e-promo-c {
  color: #15201a;
  background: linear-gradient(135deg, #7ee0db, var(--uie056e-highlight));
}

.uie056e-promo-d {
  color: #fff;
  background: linear-gradient(135deg, var(--uie056e-secondary), #2fa84f);
}

.uie056e-disclaim {
  font-size: 11.5px;
  color: var(--uie056e-text-dim);
  line-height: 1.5;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 9px;
  border-left: 3px solid var(--uie056e-warn);
}

/* ---------------- Common footer ---------------- */

.uie056e-footer {
  text-align: center;
  padding: 18px 14px calc(var(--uie056e-bottomnav-h) + 14px);
  color: var(--uie056e-text-dim);
  font-size: 11.5px;
  border-top: 1px solid var(--uie056e-line);
  background: var(--uie056e-bg-deep);
}

.uie056e-footer p {
  margin-bottom: 4px;
}

.uie056e-footer .uie056e-footbrand {
  color: var(--uie056e-text-muted);
  font-weight: 700;
  margin-bottom: 6px;
}

/* ---------------- Mobile bottom navigation (brand band) ---------------- */

.uie056e-bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  max-width: var(--uie056e-max);
  margin: 0 auto;
  height: var(--uie056e-bottomnav-h);
  background: linear-gradient(180deg, #2c3036, #1e2126);
  border-top: 2px solid var(--uie056e-primary);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom);
}

.uie056e-navitem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--uie056e-text-muted);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  padding: 6px 2px 4px;
  background: transparent;
  border: none;
  min-height: var(--uie056e-bottomnav-h);
  transition: color 0.16s ease, transform 0.1s ease;
  -webkit-tap-highlight-color: transparent;
}

.uie056e-navitem svg {
  width: 22px;
  height: 22px;
  color: currentColor;
  transition: transform 0.14s ease;
}

.uie056e-navitem:hover {
  color: #fff;
}

.uie056e-navitem:hover svg {
  transform: scale(1.12);
}

.uie056e-navitem:active {
  transform: scale(0.92);
}

.uie056e-navitem:hover {
  text-decoration: none;
}

.uie056e-navitem span {
  letter-spacing: 0.2px;
  line-height: 1.1;
}

/* Top indicator line for active state */
.uie056e-navactive {
  color: #fff;
}

.uie056e-navactive::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--uie056e-highlight), var(--uie056e-accent));
  box-shadow: 0 0 8px rgba(72, 209, 204, 0.6);
}

.uie056e-navactive svg {
  color: var(--uie056e-highlight);
  transform: scale(1.08);
}

.uie056e-navpromo {
  color: #fff;
}

.uie056e-navpromo .uie056e-navbadge {
  position: absolute;
  top: 3px;
  right: 50%;
  margin-right: -16px;
  background: var(--uie056e-warn);
  color: #15201a;
  font-size: 8px;
  font-weight: 800;
  border-radius: 6px;
  padding: 1px 4px;
  line-height: 1;
}

/* ---------------- Accessibility helpers ---------------- */

.uie056e-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--uie056e-highlight);
  color: #15201a;
  padding: 8px 14px;
  z-index: 100;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}

.uie056e-skip:focus {
  left: 0;
}

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

/* ---------------- Reduced motion ---------------- */

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

  .uie056e-slides {
    transition: none;
  }
}
