/*!
 * 2031-canvas.css
 * 599bet.sbs - mobile-first gaming website styles
 * All custom classes and CSS variables use the "s203-" prefix.
 * Palette: #EE82EE | #6C757D | #B22222 | #4B0082 | #C71585 | #212F3D
 */

:root {
  --s203-bg: #212F3D;
  --s203-bg-2: #1a2530;
  --s203-bg-3: #2a3a4c;
  --s203-card: #2c3e50;
  --s203-card-2: #34495e;
  --s203-text: #f5f7fa;
  --s203-text-dim: #c7ccd1;
  --s203-muted: #6C757D;
  --s203-primary: #C71585;
  --s203-secondary: #EE82EE;
  --s203-accent: #B22222;
  --s203-deep: #4B0082;
  --s203-gold: #f5c542;
  --s203-border: rgba(238, 130, 238, 0.22);
  --s203-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  --s203-radius: 12px;
  --s203-radius-lg: 18px;
  --s203-header-h: 60px;
  --s203-bottomnav-h: 64px;
  --s203-max-w: 460px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--s203-bg);
  color: var(--s203-text);
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(199, 21, 133, 0.22), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(75, 0, 130, 0.28), transparent 60%),
    linear-gradient(180deg, #212F3D 0%, #1a2530 100%);
  padding-bottom: calc(var(--s203-bottomnav-h) + 14px);
}

a { color: var(--s203-secondary); text-decoration: none; }
a:hover, a:focus { color: var(--s203-text); }
img { display: block; max-width: 100%; }

.s203-wrap {
  width: 100%;
  max-width: var(--s203-max-w);
  margin: 0 auto;
  padding: 0 12px;
}

/* ===================== Header ===================== */
.s203-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(90deg, #1a2530 0%, #2c3e50 60%, #1a2530 100%);
  border-bottom: 2px solid var(--s203-primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

.s203-header-row {
  max-width: var(--s203-max-w);
  margin: 0 auto;
  height: var(--s203-header-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
}

.s203-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.s203-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--s203-secondary);
  box-shadow: 0 0 0 2px rgba(238, 130, 238, 0.18);
  flex-shrink: 0;
}

.s203-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.s203-brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #EE82EE, #f5c542);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.s203-brand-tag {
  font-size: 10px;
  color: var(--s203-text-dim);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.s203-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.s203-btn {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  position: relative;
  overflow: hidden;
}

.s203-btn:active { transform: scale(0.96); }

.s203-btn--login {
  background: transparent;
  color: var(--s203-text);
  border: 1.5px solid var(--s203-secondary);
}

.s203-btn--register {
  background: linear-gradient(90deg, var(--s203-primary), var(--s203-accent));
  color: #fff;
  box-shadow: 0 4px 14px rgba(199, 21, 133, 0.45);
}

.s203-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(238, 130, 238, 0.12);
  border: 1px solid var(--s203-border);
  color: var(--s203-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.s203-icon-btn svg { width: 22px; height: 22px; fill: currentColor; }

/* ===================== Drawer / Overlay ===================== */
.s203-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 70;
}

.s203-overlay--show {
  opacity: 1;
  pointer-events: auto;
}

.s203-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(180deg, #1a2530, #2c3e50);
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 16px;
  overflow-y: auto;
  box-shadow: -8px 0 24px rgba(0,0,0,0.5);
}

.s203-drawer--open { transform: translateX(0); }

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

.s203-drawer-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--s203-secondary);
}

.s203-drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(238,130,238,0.12);
  border: 1px solid var(--s203-border);
  color: var(--s203-text);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.s203-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.s203-drawer-cta .s203-btn { width: 100%; padding: 12px; font-size: 14px; }

.s203-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.s203-drawer-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--s203-text);
  background: rgba(238,130,238,0.06);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
}

.s203-drawer-nav a:hover, .s203-drawer-nav a:focus {
  background: rgba(238,130,238,0.16);
  border-color: var(--s203-border);
}

.s203-drawer-section-title {
  margin: 14px 0 6px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--s203-text-dim);
  font-weight: 700;
}

/* ===================== Hero / Carousel ===================== */
.s203-hero {
  margin-top: 12px;
}

.s203-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--s203-radius-lg);
  border: 1px solid var(--s203-border);
  box-shadow: var(--s203-shadow);
  background: var(--s203-card);
}

.s203-carousel-viewport {
  overflow: hidden;
  border-radius: var(--s203-radius-lg);
}

.s203-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

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

.s203-carousel-slide img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: var(--s203-radius-lg);
}

.s203-carousel-cap {
  position: absolute;
  left: 12px;
  right: 90px;
  bottom: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  border-radius: 10px;
  padding: 18px 10px 8px;
}

.s203-carousel-cap h2 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
}

.s203-carousel-cap p {
  margin: 0;
  font-size: 11px;
  opacity: 0.92;
}

.s203-carousel-cta {
  position: absolute;
  right: 10px;
  bottom: 12px;
  background: linear-gradient(90deg, var(--s203-primary), var(--s203-accent));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(199,21,133,0.5);
}

.s203-carousel-dots {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 2;
}

.s203-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.s203-carousel-dot--active {
  background: var(--s203-secondary);
  transform: scale(1.35);
}

/* ===================== Quick action bar ===================== */
.s203-quickbar {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.s203-quick-item {
  background: linear-gradient(180deg, rgba(238,130,238,0.10), rgba(75,0,130,0.18));
  border: 1px solid var(--s203-border);
  border-radius: var(--s203-radius);
  padding: 10px 6px;
  text-align: center;
  color: var(--s203-text);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.s203-quick-item svg {
  width: 24px;
  height: 24px;
  margin: 0 auto 4px;
  display: block;
  fill: var(--s203-secondary);
}

.s203-quick-item span { display: block; }

/* ===================== Section heads ===================== */
.s203-section {
  margin-top: 22px;
}

.s203-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}

.s203-section-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--s203-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.s203-section-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, var(--s203-secondary), var(--s203-primary));
  border-radius: 2px;
}

.s203-section-more {
  font-size: 12px;
  color: var(--s203-secondary);
  font-weight: 700;
}

/* ===================== Filter pills ===================== */
.s203-filters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 4px 0 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.s203-filters::-webkit-scrollbar { display: none; }

.s203-filter-btn {
  flex-shrink: 0;
  background: rgba(238,130,238,0.08);
  border: 1px solid var(--s203-border);
  color: var(--s203-text-dim);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.s203-filter-btn--active {
  background: linear-gradient(90deg, var(--s203-primary), var(--s203-accent));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(199,21,133,0.4);
}

/* ===================== Game grid ===================== */
.s203-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.s203-game-card {
  background: var(--s203-card);
  border-radius: var(--s203-radius);
  border: 1px solid var(--s203-border);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  display: block;
  color: var(--s203-text);
}

.s203-game-card:active { transform: scale(0.96); }

.s203-game-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: linear-gradient(135deg, #2c3e50, #4B0082);
}

.s203-game-card-name {
  font-size: 10.5px;
  font-weight: 600;
  padding: 5px 6px 7px;
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.s203-game-card-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: linear-gradient(90deg, var(--s203-accent), var(--s203-primary));
  color: #fff;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

@media (min-width: 375px) {
  .s203-game-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .s203-game-card-name { font-size: 11px; }
}

@media (min-width: 414px) {
  .s203-game-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ===================== Two-column directory ===================== */
.s203-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.s203-directory-card {
  background: linear-gradient(180deg, rgba(75,0,130,0.22), rgba(44,62,80,0.6));
  border: 1px solid var(--s203-border);
  border-radius: var(--s203-radius);
  padding: 12px;
  text-align: left;
  color: var(--s203-text);
}

.s203-directory-card h3 {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--s203-secondary);
  font-weight: 800;
}

.s203-directory-card p {
  margin: 0 0 8px;
  font-size: 11.5px;
  color: var(--s203-text-dim);
  line-height: 1.4;
}

.s203-directory-card .s203-btn {
  width: 100%;
  padding: 8px;
  font-size: 12px;
  background: linear-gradient(90deg, var(--s203-primary), var(--s203-accent));
  color: #fff;
}

/* ===================== Winners / RTP lists ===================== */
.s203-list {
  background: var(--s203-card);
  border: 1px solid var(--s203-border);
  border-radius: var(--s203-radius);
  overflow: hidden;
}

.s203-list-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(238,130,238,0.10);
  font-size: 12.5px;
}

.s203-list-row:last-child { border-bottom: none; }

.s203-list-rank {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(238,130,238,0.18);
  color: var(--s203-secondary);
  font-weight: 800;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.s203-list-row b { color: var(--s203-text); font-weight: 700; }
.s203-list-row .s203-list-amount {
  margin-left: auto;
  color: var(--s203-gold);
  font-weight: 800;
}

.s203-rtp-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 8px;
}
.s203-rtp-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--s203-secondary), var(--s203-primary));
}

/* ===================== Promo cards ===================== */
.s203-promo-card {
  display: flex;
  gap: 10px;
  background: linear-gradient(90deg, rgba(199,21,133,0.18), rgba(75,0,130,0.18));
  border: 1px solid var(--s203-border);
  border-radius: var(--s203-radius);
  padding: 12px;
  margin-bottom: 10px;
  align-items: center;
}

.s203-promo-card img {
  width: 76px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.s203-promo-card-body { flex: 1; min-width: 0; }
.s203-promo-card-body h4 { margin: 0 0 4px; font-size: 13.5px; color: var(--s203-text); font-weight: 800; }
.s203-promo-card-body p { margin: 0 0 6px; font-size: 11.5px; color: var(--s203-text-dim); line-height: 1.4; }

.s203-promo-card .s203-btn {
  background: linear-gradient(90deg, var(--s203-primary), var(--s203-accent));
  color: #fff;
  padding: 6px 12px;
  font-size: 11px;
}

/* ===================== Features grid ===================== */
.s203-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.s203-feature {
  background: var(--s203-card);
  border: 1px solid var(--s203-border);
  border-radius: var(--s203-radius);
  padding: 12px;
}

.s203-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--s203-primary), var(--s203-deep));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.s203-feature-icon svg { width: 20px; height: 20px; fill: #fff; }

.s203-feature h4 { margin: 0 0 4px; font-size: 13px; color: var(--s203-secondary); font-weight: 800; }
.s203-feature p { margin: 0; font-size: 11.5px; color: var(--s203-text-dim); line-height: 1.45; }

/* ===================== SEO article ===================== */
.s203-article {
  background: rgba(44, 62, 80, 0.6);
  border: 1px solid var(--s203-border);
  border-radius: var(--s203-radius);
  padding: 14px;
  margin-top: 8px;
}

.s203-article h2 {
  font-size: 16px;
  margin: 14px 0 8px;
  color: var(--s203-secondary);
  font-weight: 800;
}
.s203-article h2:first-child { margin-top: 0; }
.s203-article h3 { font-size: 14px; margin: 12px 0 6px; color: var(--s203-text); }
.s203-article p { font-size: 13px; color: var(--s203-text-dim); margin: 0 0 10px; }
.s203-article ul { margin: 0 0 10px; padding-left: 18px; }
.s203-article li { font-size: 12.5px; color: var(--s203-text-dim); margin-bottom: 4px; }
.s203-article a { color: var(--s203-secondary); font-weight: 700; border-bottom: 1px dashed rgba(238,130,238,0.5); }

/* ===================== Disclaimer ===================== */
.s203-disclaimer {
  background: rgba(178, 34, 34, 0.12);
  border: 1px solid rgba(178, 34, 34, 0.45);
  border-radius: var(--s203-radius);
  padding: 12px;
  font-size: 11.5px;
  color: var(--s203-text-dim);
  margin-top: 16px;
}
.s203-disclaimer b { color: #ffb3b3; }

/* ===================== Footer ===================== */
.s203-footer {
  margin-top: 24px;
  padding: 18px 0 8px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.35));
  border-top: 1px solid var(--s203-border);
}

.s203-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.s203-footer-col h5 {
  font-size: 12px;
  color: var(--s203-secondary);
  margin: 0 0 8px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.s203-footer-col a {
  display: block;
  font-size: 12px;
  color: var(--s203-text-dim);
  padding: 3px 0;
}

.s203-footer-copy {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--s203-border);
  text-align: center;
  font-size: 11px;
  color: var(--s203-muted);
}

/* ===================== Bottom nav ===================== */
.s203-bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 65;
  background: linear-gradient(180deg, #2c3e50, #1a2530);
  border-top: 2px solid var(--s203-primary);
  box-shadow: 0 -4px 18px rgba(0,0,0,0.45);
  display: flex;
  align-items: stretch;
  height: var(--s203-bottomnav-h);
  padding: 0;
  max-width: var(--s203-max-w);
  margin: 0 auto;
}

.s203-bottomnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: transparent;
  border: none;
  color: var(--s203-text-dim);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 2px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  transition: color 0.18s ease;
}

.s203-bottomnav-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 0.18s ease;
}

.s203-bottomnav-item--active {
  color: var(--s203-secondary);
}

.s203-bottomnav-item--active::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--s203-secondary), var(--s203-primary));
}

.s203-bottomnav-item--promo {
  color: var(--s203-gold);
}

.s203-bottomnav-item--promo svg {
  transform: translateY(-1px);
}

.s203-bottomnav-item:active svg { transform: scale(1.15); }

/* ===================== Ripple ===================== */
.s203-ripple-target { position: relative; overflow: hidden; }
.s203-ripple {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transform: translate(-50%, -50%) scale(1);
  animation: s203ripple 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes s203ripple {
  to { transform: translate(-50%, -50%) scale(28); opacity: 0; }
}

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

/* ===================== Tag chips ===================== */
.s203-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.s203-tag {
  background: rgba(238,130,238,0.10);
  border: 1px solid var(--s203-border);
  color: var(--s203-text-dim);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* ===================== Notice strip ===================== */
.s203-notice {
  margin-top: 12px;
  background: linear-gradient(90deg, rgba(199,21,133,0.18), rgba(75,0,130,0.18));
  border: 1px solid var(--s203-border);
  border-radius: var(--s203-radius);
  padding: 10px 12px;
  font-size: 12px;
  color: var(--s203-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.s203-notice b { color: var(--s203-secondary); }

/* ===================== Marquee winners ===================== */
.s203-marquee {
  margin-top: 10px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--s203-border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11.5px;
  color: var(--s203-text-dim);
  overflow: hidden;
  white-space: nowrap;
}
.s203-marquee b { color: var(--s203-gold); }

/* ===================== Helpers ===================== */
.s203-center { text-align: center; }
.s203-mt-12 { margin-top: 12px; }
.s203-mt-16 { margin-top: 16px; }
.s203-mt-24 { margin-top: 24px; }
.s203-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  justify-content: center;
}
.s203-promise span {
  font-size: 10.5px;
  color: var(--s203-text-dim);
  background: rgba(238,130,238,0.08);
  border: 1px solid var(--s203-border);
  padding: 3px 8px;
  border-radius: 999px;
}

.s203-cta-banner {
  margin-top: 16px;
  background: linear-gradient(120deg, var(--s203-primary), var(--s203-deep));
  border-radius: var(--s203-radius-lg);
  padding: 16px;
  text-align: center;
  color: #fff;
  border: 1px solid var(--s203-border);
  box-shadow: var(--s203-shadow);
}
.s203-cta-banner h3 { margin: 0 0 6px; font-size: 16px; font-weight: 800; }
.s203-cta-banner p { margin: 0 0 10px; font-size: 12px; opacity: 0.92; }
.s203-cta-banner .s203-btn {
  display: inline-flex;
  background: #fff;
  color: var(--s203-primary);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 800;
}

/* Wider screens: keep mobile canvas centered */
@media (min-width: 600px) {
  body { background-attachment: fixed; }
  .s203-wrap { padding: 0; }
}

/* ===== Mobile breakpoint max-width 430px ===== */
@media (max-width: 430px) {
  html, body { font-size: 14px; }
  .s203-wrap { padding: 0 10px; }
  .s203-header-row { height: 56px; padding: 0 8px; gap: 6px; }
  .s203-brand-logo { width: 34px; height: 34px; }
  .s203-brand-name { font-size: 16px; }
  .s203-brand-tag { font-size: 9px; }
  .s203-btn { padding: 8px 12px; font-size: 12px; min-height: 36px; }
  .s203-icon-btn { width: 36px; height: 36px; }
  .s203-icon-btn svg { width: 20px; height: 20px; }
  .s203-carousel-slide img { height: 150px; }
  .s203-carousel-cap { left: 10px; right: 80px; bottom: 10px; padding: 14px 8px 6px; }
  .s203-carousel-cap h2 { font-size: 14px; }
  .s203-carousel-cap p { font-size: 10px; }
  .s203-carousel-cta { padding: 7px 10px; font-size: 11px; right: 8px; bottom: 10px; }
  .s203-quickbar { gap: 6px; }
  .s203-quick-item { padding: 8px 4px; font-size: 10px; }
  .s203-quick-item svg { width: 22px; height: 22px; }
  .s203-section-title { font-size: 15px; }
  .s203-section-more { font-size: 11px; }
  .s203-filter-btn { padding: 6px 12px; font-size: 11px; }
  .s203-game-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .s203-game-card-name { font-size: 9.5px; padding: 4px 4px 6px; }
  .s203-game-card-badge { font-size: 8px; padding: 2px 5px; }
  .s203-directory { grid-template-columns: 1fr 1fr; gap: 8px; }
  .s203-directory-card { padding: 10px; }
  .s203-directory-card h3 { font-size: 12px; }
  .s203-directory-card p { font-size: 10.5px; }
  .s203-promo-card { padding: 10px; gap: 8px; }
  .s203-promo-card img { width: 64px; height: 54px; }
  .s203-promo-card-body h4 { font-size: 12.5px; }
  .s203-promo-card-body p { font-size: 10.5px; }
  .s203-features { gap: 8px; }
  .s203-feature { padding: 10px; }
  .s203-feature h4 { font-size: 12px; }
  .s203-feature p { font-size: 10.5px; }
  .s203-article { padding: 12px; }
  .s203-article h2 { font-size: 14px; }
  .s203-article h3 { font-size: 13px; }
  .s203-article p { font-size: 12px; }
  .s203-list-row { padding: 8px 10px; font-size: 11.5px; gap: 8px; }
  .s203-bottomnav { height: 58px; }
  .s203-bottomnav-item { font-size: 9px; padding: 3px 2px; }
  .s203-bottomnav-item svg { width: 20px; height: 20px; }
  .s203-footer-cols { gap: 10px; }
  .s203-footer-col a { font-size: 11px; }
  .s203-cta-banner { padding: 14px; }
  .s203-cta-banner h3 { font-size: 15px; }
  .s203-cta-banner p { font-size: 11px; }
}
