/*!
 * Game 365 - Visuals stylesheet
 * Filename: game-365-visuals-b26023.css
 * Class prefix: mobile60233-
 * Palette: #00FF00 (lime) | #DDA0DD (plum) | #7B68EE (slate)
 *          #2D2D2D (charcoal) | #8B008B (magenta)
 * Mobile-first canvas 320-430px; wider screens keep the centered
 * mobile canvas, no desktop layout.
 */

:root {
  --mobile60233-bg-dark: #2D2D2D;
  --mobile60233-bg-deeper: #202020;
  --mobile60233-bg-panel: #1a1a1a;
  --mobile60233-bg-magenta: #8B008B;
  --mobile60233-bg-magenta-deep: #5c005c;
  --mobile60233-accent-lime: #00FF00;
  --mobile60233-accent-plum: #DDA0DD;
  --mobile60233-accent-slate: #7B68EE;
  --mobile60233-text-light: #f6f6f6;
  --mobile60233-text-soft: #d6d6d6;
  --mobile60233-text-muted: #9a9a9a;
  --mobile60233-border-soft: rgba(255, 255, 255, 0.09);
  --mobile60233-border-strong: rgba(255, 255, 255, 0.18);
  --mobile60233-shadow-card: 0 6px 18px rgba(0, 0, 0, 0.42);
  --mobile60233-shadow-float: 0 10px 30px rgba(0, 0, 0, 0.55);
  --mobile60233-radius-sm: 8px;
  --mobile60233-radius-md: 14px;
  --mobile60233-radius-lg: 22px;
  --mobile60233-radius-pill: 999px;
  --mobile60233-canvas: 430px;
  --mobile60233-header-h: 60px;
  --mobile60233-bottom-h: 68px;
}

/* ---------- Base reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, system-ui, sans-serif;
  background: radial-gradient(circle at 50% -10%, #3a103a 0%, var(--mobile60233-bg-dark) 55%, var(--mobile60233-bg-deeper) 100%);
  background-attachment: fixed;
  color: var(--mobile60233-text-light);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.mobile60233-no-scroll {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: var(--mobile60233-accent-lime);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  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(--mobile60233-accent-lime);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Mobile canvas frame ---------- */
.mobile60233-shell {
  width: 100%;
  max-width: var(--mobile60233-canvas);
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(139, 0, 139, 0.10) 0%, rgba(45, 45, 45, 0) 30%);
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}

/* ---------- Centered identity bar (header) ---------- */
.mobile60233-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  min-height: var(--mobile60233-header-h);
  background: linear-gradient(180deg, rgba(33, 33, 33, 0.96) 0%, rgba(45, 45, 45, 0.92) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mobile60233-border-soft);
}
.mobile60233-menu-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--mobile60233-radius-sm);
  color: var(--mobile60233-text-light);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mobile60233-border-soft);
  transition: background 0.2s ease, transform 0.15s ease;
}
.mobile60233-menu-btn:hover {
  background: rgba(0, 255, 0, 0.10);
}
.mobile60233-menu-btn:active {
  transform: scale(0.94);
}
.mobile60233-menu-btn svg {
  width: 22px;
  height: 22px;
}
.mobile60233-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}
.mobile60233-logo {
  width: 38px;
  height: 38px;
  border-radius: var(--mobile60233-radius-sm);
  object-fit: cover;
  border: 1px solid var(--mobile60233-border-strong);
  box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.25);
  flex-shrink: 0;
}
.mobile60233-brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, var(--mobile60233-accent-lime), var(--mobile60233-accent-plum));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.mobile60233-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mobile60233-login-btn,
.mobile60233-register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--mobile60233-radius-pill);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.mobile60233-login-btn {
  color: var(--mobile60233-text-light);
  background: rgba(123, 104, 238, 0.22);
  border: 1px solid rgba(123, 104, 238, 0.55);
}
.mobile60233-login-btn:hover {
  background: rgba(123, 104, 238, 0.36);
}
.mobile60233-register-btn {
  color: #062b06;
  background: linear-gradient(135deg, var(--mobile60233-accent-lime), #6cff6c);
  box-shadow: 0 4px 14px rgba(0, 255, 0, 0.35);
}
.mobile60233-register-btn:hover {
  text-decoration: none;
  filter: brightness(1.05);
}
.mobile60233-login-btn:active,
.mobile60233-register-btn:active {
  transform: translateY(1px) scale(0.97);
}

/* ---------- Expanded navigation drawer ---------- */
.mobile60233-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 70;
}
.mobile60233-nav-overlay.mobile60233-overlay-visible {
  opacity: 1;
  visibility: visible;
}
.mobile60233-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(82vw, 340px);
  height: 100vh;
  background: linear-gradient(180deg, #261426 0%, #1a1a1a 100%);
  border-right: 1px solid var(--mobile60233-border-strong);
  transform: translateX(-105%);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 80;
  overflow-y: auto;
  padding: 18px 16px calc(var(--mobile60233-bottom-h) + 24px);
}
.mobile60233-nav-drawer.mobile60233-nav-open {
  transform: translateX(0);
  box-shadow: var(--mobile60233-shadow-float);
}
.mobile60233-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--mobile60233-border-soft);
}
.mobile60233-nav-head .mobile60233-brand-name {
  font-size: 20px;
}
.mobile60233-nav-close {
  width: 40px;
  height: 40px;
  border-radius: var(--mobile60233-radius-sm);
  color: var(--mobile60233-text-light);
  background: rgba(255, 255, 255, 0.05);
  font-size: 22px;
  line-height: 1;
}
.mobile60233-nav-section {
  margin-bottom: 20px;
}
.mobile60233-nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--mobile60233-accent-plum);
  margin-bottom: 8px;
  padding: 0 6px;
}
.mobile60233-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--mobile60233-radius-sm);
  color: var(--mobile60233-text-soft);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
}
.mobile60233-nav-link:hover {
  text-decoration: none;
  background: rgba(0, 255, 0, 0.08);
  color: var(--mobile60233-text-light);
}
.mobile60233-nav-link:active {
  transform: translateX(3px);
}
.mobile60233-nav-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--mobile60233-accent-slate);
}
.mobile60233-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  padding: 14px;
  border-radius: var(--mobile60233-radius-md);
  background: linear-gradient(135deg, rgba(139, 0, 139, 0.35), rgba(123, 104, 238, 0.20));
  border: 1px solid rgba(221, 160, 221, 0.25);
}
.mobile60233-nav-cta button {
  width: 100%;
  min-height: 42px;
  border-radius: var(--mobile60233-radius-pill);
  font-weight: 700;
  font-size: 14px;
}
.mobile60233-nav-cta .mobile60233-register-btn {
  box-shadow: 0 4px 14px rgba(0, 255, 0, 0.30);
}
.mobile60233-nav-cta .mobile60233-login-btn {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ---------- Main content area ---------- */
.mobile60233-main {
  padding: 14px 12px 0;
  padding-bottom: calc(var(--mobile60233-bottom-h) + 26px);
}

/* ---------- Hero carousel ---------- */
.mobile60233-carousel {
  position: relative;
  border-radius: var(--mobile60233-radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--mobile60233-shadow-card);
  background: var(--mobile60233-bg-panel);
  aspect-ratio: 16 / 9;
}
.mobile60233-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.mobile60233-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  cursor: pointer;
}
.mobile60233-slide.mobile60233-slide-active {
  opacity: 1;
  visibility: visible;
}
.mobile60233-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile60233-slide-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.78) 100%);
  color: var(--mobile60233-text-light);
  pointer-events: none;
}
.mobile60233-slide-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--mobile60233-radius-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #062b06;
  background: var(--mobile60233-accent-lime);
  margin-bottom: 6px;
}
.mobile60233-slide-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.mobile60233-slide-sub {
  font-size: 12px;
  color: var(--mobile60233-text-soft);
  margin-top: 3px;
}
.mobile60233-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 3;
}
.mobile60233-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
  cursor: pointer;
}
.mobile60233-dot.mobile60233-dot-active {
  background: var(--mobile60233-accent-lime);
  width: 20px;
  border-radius: var(--mobile60233-radius-pill);
}

/* ---------- Quick promo strip ---------- */
.mobile60233-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.mobile60233-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: var(--mobile60233-radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mobile60233-border-soft);
  font-size: 11px;
  font-weight: 600;
  color: var(--mobile60233-text-soft);
  text-align: center;
  transition: transform 0.15s ease, background 0.2s ease;
}
.mobile60233-quick-item:active {
  transform: scale(0.95);
}
.mobile60233-quick-item:hover {
  text-decoration: none;
  background: rgba(0, 255, 0, 0.08);
  color: var(--mobile60233-text-light);
}
.mobile60233-quick-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mobile60233-bg-magenta), var(--mobile60233-accent-slate));
  color: var(--mobile60233-text-light);
}
.mobile60233-quick-icon svg {
  width: 17px;
  height: 17px;
}

/* ---------- Section heading ---------- */
.mobile60233-section {
  margin-bottom: 26px;
}
.mobile60233-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.mobile60233-section-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--mobile60233-text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile60233-section-title::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--mobile60233-accent-lime), var(--mobile60233-accent-slate));
}
.mobile60233-section-sub {
  font-size: 12px;
  color: var(--mobile60233-text-muted);
  font-weight: 500;
}
.mobile60233-section-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--mobile60233-accent-plum);
}

/* ---------- Game grid + cards ---------- */
.mobile60233-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.mobile60233-game-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
  padding: 0;
  border-radius: var(--mobile60233-radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--mobile60233-border-soft);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-width: 0;
}
.mobile60233-game-card:hover,
.mobile60233-game-card:focus {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--mobile60233-shadow-card);
  border-color: rgba(0, 255, 0, 0.45);
}
.mobile60233-game-card:active {
  transform: translateY(-1px) scale(0.97);
}
.mobile60233-game-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0e0e0e;
  overflow: hidden;
}
.mobile60233-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.mobile60233-game-card:hover .mobile60233-game-thumb img {
  transform: scale(1.06);
}
.mobile60233-game-name {
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--mobile60233-text-soft);
  padding: 0 5px 7px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 28px;
}

/* ---------- Content modules ---------- */
.mobile60233-module {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--mobile60233-border-soft);
  border-radius: var(--mobile60233-radius-lg);
  padding: 18px 16px;
  margin-bottom: 18px;
  box-shadow: var(--mobile60233-shadow-card);
}
.mobile60233-module p {
  color: var(--mobile60233-text-soft);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 10px;
}
.mobile60233-module p:last-child {
  margin-bottom: 0;
}
.mobile60233-module h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--mobile60233-accent-plum);
  margin-top: 14px;
  margin-bottom: 8px;
}
.mobile60233-module h3:first-child {
  margin-top: 0;
}
.mobile60233-module a {
  color: var(--mobile60233-accent-lime);
  font-weight: 600;
}
.mobile60233-module ul.mobile60233-bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.mobile60233-module ul.mobile60233-bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 13.5px;
  color: var(--mobile60233-text-soft);
  line-height: 1.55;
}
.mobile60233-module ul.mobile60233-bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mobile60233-accent-lime);
}

/* Comparison table block */
.mobile60233-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.mobile60233-compare-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--mobile60233-radius-md);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--mobile60233-border-soft);
}
.mobile60233-compare-key {
  font-size: 12px;
  font-weight: 700;
  color: var(--mobile60233-accent-plum);
}
.mobile60233-compare-val {
  font-size: 13px;
  color: var(--mobile60233-text-soft);
  line-height: 1.5;
}

/* Payment chips */
.mobile60233-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.mobile60233-pay-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: var(--mobile60233-radius-md);
  background: rgba(123, 104, 238, 0.10);
  border: 1px solid rgba(123, 104, 238, 0.28);
  font-size: 11px;
  font-weight: 600;
  color: var(--mobile60233-text-soft);
  text-align: center;
}
.mobile60233-pay-chip svg {
  width: 22px;
  height: 22px;
  color: var(--mobile60233-accent-slate);
}

/* ---------- Inline CTA banner ---------- */
.mobile60233-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px;
  border-radius: var(--mobile60233-radius-lg);
  background: linear-gradient(135deg, var(--mobile60233-bg-magenta) 0%, #4a004a 60%, #1a0a2e 100%);
  border: 1px solid rgba(221, 160, 221, 0.30);
  margin-bottom: 20px;
  box-shadow: var(--mobile60233-shadow-card);
  position: relative;
  overflow: hidden;
}
.mobile60233-cta::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 0, 0.22), transparent 70%);
  pointer-events: none;
}
.mobile60233-cta-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--mobile60233-text-light);
}
.mobile60233-cta-text {
  font-size: 13px;
  color: var(--mobile60233-text-soft);
  line-height: 1.55;
}
.mobile60233-cta-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mobile60233-cta-actions button {
  flex: 1 1 auto;
  min-height: 42px;
  border-radius: var(--mobile60233-radius-pill);
  font-weight: 700;
  font-size: 14px;
}
.mobile60233-cta-actions .mobile60233-register-btn {
  box-shadow: 0 6px 16px rgba(0, 255, 0, 0.40);
}
.mobile60233-cta-actions .mobile60233-login-btn {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--mobile60233-text-light);
}

/* ---------- Expanded footer (site-specific) ---------- */
.mobile60233-footer-exp {
  margin: 24px 0 18px;
  padding: 20px 16px;
  border-radius: var(--mobile60233-radius-lg);
  background: linear-gradient(180deg, rgba(139, 0, 139, 0.12), rgba(45, 45, 45, 0.4));
  border: 1px solid var(--mobile60233-border-strong);
}
.mobile60233-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--mobile60233-border-soft);
}
.mobile60233-footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: var(--mobile60233-radius-sm);
  object-fit: cover;
  border: 1px solid var(--mobile60233-border-strong);
}
.mobile60233-footer-brand-text {
  flex: 1;
  min-width: 0;
}
.mobile60233-footer-brand-text strong {
  display: block;
  font-size: 16px;
  color: var(--mobile60233-text-light);
}
.mobile60233-footer-brand-text span {
  font-size: 12px;
  color: var(--mobile60233-text-muted);
  line-height: 1.5;
  display: block;
  margin-top: 2px;
}
.mobile60233-footer-block {
  margin-bottom: 16px;
}
.mobile60233-footer-block:last-child {
  margin-bottom: 0;
}
.mobile60233-footer-block h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mobile60233-accent-lime);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mobile60233-footer-block h4 svg {
  width: 14px;
  height: 14px;
}
.mobile60233-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
}
.mobile60233-footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--mobile60233-text-soft);
  padding: 5px 0;
  font-weight: 500;
}
.mobile60233-footer-links a:hover {
  color: var(--mobile60233-accent-lime);
}
.mobile60233-footer-links a svg {
  width: 13px;
  height: 13px;
  color: var(--mobile60233-accent-slate);
  flex-shrink: 0;
}
.mobile60233-promo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.mobile60233-promo-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 4px;
  border-radius: var(--mobile60233-radius-md);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--mobile60233-border-soft);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--mobile60233-text-soft);
  text-align: center;
  transition: transform 0.15s ease, border-color 0.2s ease;
}
.mobile60233-promo-cell:hover {
  text-decoration: none;
  border-color: rgba(0, 255, 0, 0.4);
  color: var(--mobile60233-text-light);
}
.mobile60233-promo-cell:active {
  transform: scale(0.95);
}
.mobile60233-promo-cell svg {
  width: 20px;
  height: 20px;
  color: var(--mobile60233-accent-lime);
}
.mobile60233-footer-disclaimer {
  font-size: 11.5px;
  color: var(--mobile60233-text-muted);
  line-height: 1.6;
  padding: 12px;
  border-radius: var(--mobile60233-radius-md);
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--mobile60233-accent-plum);
}

/* ---------- Common footer (copyright) ---------- */
.mobile60233-footer {
  padding: 16px 14px calc(var(--mobile60233-bottom-h) + 16px);
  text-align: center;
  background: var(--mobile60233-bg-deeper);
  border-top: 1px solid var(--mobile60233-border-soft);
}
.mobile60233-footer-copy {
  font-size: 11.5px;
  color: var(--mobile60233-text-muted);
  line-height: 1.6;
}
.mobile60233-footer-copy strong {
  color: var(--mobile60233-text-soft);
}
.mobile60233-footer-seo {
  margin-top: 8px;
  font-size: 11px;
  color: var(--mobile60233-text-muted);
  line-height: 1.55;
}

/* ---------- Bottom through-pass navigation wheel ---------- */
.mobile60233-bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--mobile60233-canvas);
  height: var(--mobile60233-bottom-h);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.96) 0%, rgba(15, 15, 15, 0.98) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--mobile60233-border-strong);
  z-index: 65;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.45);
}
.mobile60233-bottom-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  min-height: 44px;
  color: var(--mobile60233-text-muted);
  font-size: 10px;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.18s ease;
  padding: 0 2px;
}
.mobile60233-bottom-btn:hover {
  text-decoration: none;
  color: var(--mobile60233-text-light);
}
.mobile60233-bottom-btn:active {
  transform: translateY(-2px);
}
.mobile60233-bottom-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease, fill 0.2s ease, stroke 0.2s ease;
}
.mobile60233-bottom-btn.mobile60233-bottom-active {
  color: var(--mobile60233-accent-lime);
}
.mobile60233-bottom-btn.mobile60233-bottom-active svg {
  color: var(--mobile60233-accent-lime);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 6px rgba(0, 255, 0, 0.55));
}
.mobile60233-bottom-btn.mobile60233-bottom-active::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 26px;
  height: 3px;
  border-radius: var(--mobile60233-radius-pill);
  background: var(--mobile60233-accent-lime);
}
.mobile60233-bottom-label {
  font-size: 9.5px;
  letter-spacing: 0.2px;
}
/* Elevated promo button (center, through-pass wheel accent) */
.mobile60233-bottom-btn.mobile60233-bottom-promo svg {
  width: 26px;
  height: 26px;
  color: var(--mobile60233-accent-lime);
}
.mobile60233-bottom-promo-dot {
  position: absolute;
  top: 8px;
  right: calc(50% - 16px);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mobile60233-accent-plum);
  box-shadow: 0 0 0 2px var(--mobile60233-bg-deeper);
}

/* ---------- Reveal animation ---------- */
.mobile60233-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.mobile60233-reveal.mobile60233-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive tweaks inside mobile canvas ---------- */
@media (min-width: 360px) {
  .mobile60233-game-name {
    font-size: 11.5px;
  }
  .mobile60233-section-title {
    font-size: 19px;
  }
}
@media (min-width: 393px) {
  .mobile60233-game-grid {
    gap: 10px;
  }
  .mobile60233-pay-grid,
  .mobile60233-promo-row {
    gap: 10px;
  }
  .mobile60233-quick {
    gap: 10px;
  }
  body {
    font-size: 15.5px;
  }
}
@media (min-width: 414px) {
  .mobile60233-game-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .mobile60233-pay-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 431px) {
  body {
    background: #111;
  }
  .mobile60233-shell {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .mobile60233-reveal {
    opacity: 1;
    transform: none;
  }
}
