/* ============================================================
   cd66.homes - Mobile-first basefiles stylesheet
   Prefix: framee2899-
   Palette: #BDC3C7 | #DCDCDC | #708090 | #1E1E1E
   Canvas: 320-430px (mobile breakpoint at 430px)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --framee2899-bg: #1E1E1E;
  --framee2899-bg-soft: #262626;
  --framee2899-bg-card: #2c2c2c;
  --framee2899-bg-elev: #343434;
  --framee2899-slate: #708090;
  --framee2899-slate-soft: #5b6775;
  --framee2899-text: #DCDCDC;
  --framee2899-mute: #BDC3C7;
  --framee2899-mute-dim: #8e9499;
  --framee2899-line: #3a3a3a;
  --framee2899-line-soft: #2f2f2f;
  --framee2899-accent: #dcdccc;
  --framee2899-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  --framee2899-radius-s: 4px;
  --framee2899-radius-m: 8px;
  --framee2899-radius-l: 12px;
  --framee2899-gap: 12px;
  --framee2899-pad: 14px;
  --framee2899-header-h: 56px;
  --framee2899-bottomnav-h: 62px;
  --framee2899-font-h: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, sans-serif;
  --framee2899-font-b: "Noto Sans Bengali", "Hind Siliguri", "Segoe UI", system-ui, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--framee2899-font-b);
  background: var(--framee2899-bg);
  color: var(--framee2899-text);
  font-size: 15px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--framee2899-font-h);
  color: #f1f1f1;
  margin: 0 0 0.5em;
  line-height: 1.3;
  font-weight: 600;
}

p { margin: 0 0 0.85em; }

a {
  color: var(--framee2899-mute);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover { color: #ffffff; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--framee2899-mute);
  outline-offset: 2px;
}

/* Keep fixed navigation clear of content on every compact viewport. */
.framee2899-main { min-width: 0; }
.framee2899-header,
.framee2899-bottomnav { width: 100%; }
.framee2899-btn,
.framee2899-menu-btn,
.framee2899-bottomnav-item { min-height: 44px; }
.framee2899-extfoot-promo { min-height: 44px; }

img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul, ol { margin: 0 0 0.85em; padding-left: 1.25em; }
li { margin: 0 0 0.35em; }

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

/* ---------- Layout frame ---------- */
.framee2899-canvas {
  max-width: 430px;
  margin: 0 auto;
  background: var(--framee2899-bg);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.framee2899-main {
  padding: calc(var(--framee2899-header-h) + 8px) 12px calc(var(--framee2899-bottomnav-h) + 80px);
}

/* ---------- Top header ---------- */
.framee2899-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--framee2899-header-h);
  background: rgba(30, 30, 30, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--framee2899-line);
  z-index: 80;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 10px;
}

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

.framee2899-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: var(--framee2899-radius-s);
  object-fit: cover;
  border: 1px solid var(--framee2899-line);
  flex-shrink: 0;
  background: var(--framee2899-bg-soft);
}

.framee2899-brand-name {
  font-family: var(--framee2899-font-h);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.4px;
  color: #ffffff;
  white-space: nowrap;
}

.framee2899-brand-tag {
  font-size: 10px;
  color: var(--framee2899-slate);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

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

.framee2899-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--framee2899-radius-s);
  font-family: var(--framee2899-font-h);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.3px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
  border: 1px solid transparent;
}

.framee2899-btn--primary {
  background: var(--framee2899-text);
  color: var(--framee2899-bg);
}
.framee2899-btn--primary:hover { background: #ffffff; }

.framee2899-btn--ghost {
  background: transparent;
  color: var(--framee2899-mute);
  border: 1px solid var(--framee2899-slate);
}
.framee2899-btn--ghost:hover { color: #ffffff; border-color: var(--framee2899-mute); }

.framee2899-btn--solid {
  background: var(--framee2899-slate);
  color: #ffffff;
}
.framee2899-btn--solid:hover { background: #8492a3; }

.framee2899-menu-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--framee2899-radius-s);
  border: 1px solid var(--framee2899-line);
  background: var(--framee2899-bg-soft);
  color: var(--framee2899-mute);
  font-size: 20px;
  line-height: 1;
}
.framee2899-menu-btn:hover { color: #ffffff; }
.framee2899-menu-btn--close { font-size: 22px; }

/* ---------- Menu overlay ---------- */
.framee2899-overlay {
  position: fixed;
  inset: 0;
  max-width: 430px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.6);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.framee2899-overlay.framee2899-is-open {
  opacity: 1;
  visibility: visible;
}

.framee2899-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 84%;
  max-width: 360px;
  background: var(--framee2899-bg-soft);
  border-left: 1px solid var(--framee2899-line);
  z-index: 95;
  transform: translateX(100%);
  transition: transform 0.26s ease;
  display: flex;
  flex-direction: column;
  padding: 14px;
  overflow-y: auto;
}
.framee2899-menu.framee2899-is-open { transform: translateX(0); }

.framee2899-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--framee2899-line);
}
.framee2899-menu-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.framee2899-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.framee2899-menu-link {
  display: block;
  padding: 12px 10px;
  font-size: 14px;
  color: var(--framee2899-text);
  border-radius: var(--framee2899-radius-s);
  border-bottom: 1px solid var(--framee2899-line-soft);
  transition: background 0.16s ease, padding-left 0.16s ease;
}
.framee2899-menu-link:hover,
.framee2899-menu-link:focus-visible {
  background: var(--framee2899-bg-card);
  color: #ffffff;
  padding-left: 14px;
}
.framee2899-menu-link small {
  display: block;
  font-size: 11px;
  color: var(--framee2899-mute-dim);
  margin-top: 2px;
}

.framee2899-menu-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--framee2899-line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.framee2899-menu-cta {
  display: flex;
  gap: 8px;
}
.framee2899-menu-cta .framee2899-btn { flex: 1; }

/* ---------- Hero carousel ---------- */
.framee2899-hero {
  margin: 6px 0 18px;
  border-radius: var(--framee2899-radius-l);
  overflow: hidden;
  position: relative;
  background: var(--framee2899-bg-soft);
  border: 1px solid var(--framee2899-line);
}
.framee2899-hero-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.framee2899-hero-slide {
  flex: 0 0 100%;
  position: relative;
}
.framee2899-hero-slide img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.framee2899-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.framee2899-hero-caption strong {
  font-size: 16px;
  color: #ffffff;
  font-family: var(--framee2899-font-h);
  line-height: 1.25;
}
.framee2899-hero-caption span {
  font-size: 12px;
  color: var(--framee2899-mute);
}
.framee2899-hero-cta {
  align-self: flex-start;
  padding: 6px 14px;
  background: var(--framee2899-text);
  color: var(--framee2899-bg);
  border-radius: var(--framee2899-radius-s);
  font-size: 12px;
  font-weight: 600;
}
.framee2899-hero-dots {
  position: absolute;
  bottom: 8px;
  right: 10px;
  display: flex;
  gap: 5px;
}
.framee2899-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(220, 220, 220, 0.45);
  transition: background 0.18s ease, transform 0.18s ease;
}
.framee2899-hero-dot.framee2899-is-active {
  background: #ffffff;
  transform: scale(1.3);
}

/* ---------- Section heading ---------- */
.framee2899-section {
  margin: 22px 0;
}
.framee2899-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--framee2899-line);
}
.framee2899-section-title {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.framee2899-section-title::before {
  content: "";
  width: 4px;
  height: 16px;
  background: var(--framee2899-slate);
  border-radius: 2px;
  display: inline-block;
}
.framee2899-section-tag {
  font-size: 11px;
  color: var(--framee2899-mute-dim);
  letter-spacing: 0.4px;
}
.framee2899-section-lead {
  font-size: 13px;
  color: var(--framee2899-mute);
  margin: 0 0 12px;
}

/* ---------- Game grid ---------- */
.framee2899-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.framee2899-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--framee2899-bg-card);
  border: 1px solid var(--framee2899-line-soft);
  border-radius: var(--framee2899-radius-m);
  padding: 6px 4px 8px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.framee2899-game-card:hover,
.framee2899-game-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--framee2899-slate);
  background: var(--framee2899-bg-elev);
}
.framee2899-game-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--framee2899-radius-s);
  background: var(--framee2899-bg);
  margin-bottom: 5px;
}
.framee2899-game-name {
  font-size: 11px;
  line-height: 1.25;
  color: var(--framee2899-text);
  font-family: var(--framee2899-font-b);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 28px;
  word-break: break-word;
}

/* ---------- Content modules ---------- */
.framee2899-card {
  background: var(--framee2899-bg-soft);
  border: 1px solid var(--framee2899-line);
  border-radius: var(--framee2899-radius-m);
  padding: 14px;
  margin-bottom: 12px;
}
.framee2899-card p:last-child { margin-bottom: 0; }
.framee2899-card h3 {
  font-size: 15px;
  color: #ffffff;
  margin: 0 0 8px;
}

.framee2899-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

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

.framee2899-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: var(--framee2899-bg-card);
  border: 1px solid var(--framee2899-line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--framee2899-mute);
}
.framee2899-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.framee2899-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--framee2899-line-soft);
}
.framee2899-row:last-child { border-bottom: none; }
.framee2899-row-ic {
  width: 34px;
  height: 34px;
  border-radius: var(--framee2899-radius-s);
  background: var(--framee2899-bg-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--framee2899-slate);
  border: 1px solid var(--framee2899-line);
  flex-shrink: 0;
}
.framee2899-row-body { flex: 1; min-width: 0; }
.framee2899-row-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--framee2899-text);
  display: block;
  margin: 0;
}
.framee2899-row-meta {
  font-size: 11px;
  color: var(--framee2899-mute-dim);
  display: block;
}

.framee2899-tile {
  background: var(--framee2899-bg-card);
  border: 1px solid var(--framee2899-line-soft);
  border-radius: var(--framee2899-radius-m);
  padding: 10px;
  text-align: center;
}
.framee2899-tile-num {
  font-family: var(--framee2899-font-h);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  display: block;
}
.framee2899-tile-lbl {
  font-size: 11px;
  color: var(--framee2899-mute-dim);
  margin-top: 2px;
  display: block;
}

/* ---------- FAQ ---------- */
.framee2899-faq-item {
  border-bottom: 1px solid var(--framee2899-line-soft);
  padding: 4px 0;
}
.framee2899-faq-item:last-child { border-bottom: none; }
.framee2899-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 10px 2px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--framee2899-text);
  font-family: var(--framee2899-font-h);
}
.framee2899-faq-ic {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--framee2899-slate);
  font-size: 18px;
  transition: transform 0.2s ease;
}
.framee2899-faq-item.framee2899-is-open .framee2899-faq-ic { transform: rotate(45deg); }
.framee2899-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  font-size: 13px;
  color: var(--framee2899-mute);
}
.framee2899-faq-a-inner {
  padding: 0 2px 12px;
}

/* ---------- Winners list ---------- */
.framee2899-winner {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--framee2899-line-soft);
  font-size: 12.5px;
}
.framee2899-winner:last-child { border-bottom: none; }
.framee2899-winner-rank {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--framee2899-bg-card);
  color: var(--framee2899-mute);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--framee2899-font-h);
  border: 1px solid var(--framee2899-line);
}
.framee2899-winner-name {
  color: var(--framee2899-text);
  font-weight: 600;
  display: block;
  font-size: 13px;
}
.framee2899-winner-game {
  color: var(--framee2899-mute-dim);
  font-size: 11px;
  display: block;
}
.framee2899-winner-amt {
  font-family: var(--framee2899-font-h);
  font-weight: 700;
  color: #ffffff;
  font-size: 13px;
  white-space: nowrap;
}

/* ---------- Steps / criteria ---------- */
.framee2899-steps {
  counter-reset: framee2899step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.framee2899-steps li {
  counter-increment: framee2899step;
  position: relative;
  padding: 8px 10px 8px 38px;
  background: var(--framee2899-bg-card);
  border: 1px solid var(--framee2899-line-soft);
  border-radius: var(--framee2899-radius-s);
  font-size: 13px;
  color: var(--framee2899-text);
}
.framee2899-steps li::before {
  content: counter(framee2899step);
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--framee2899-slate);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--framee2899-font-h);
}

/* ---------- Inline promo CTA ---------- */
.framee2899-promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(135deg, #2c2c2c, #1e1e1e);
  border: 1px solid var(--framee2899-slate);
  border-radius: var(--framee2899-radius-m);
  padding: 12px;
  margin: 14px 0;
}
.framee2899-promo-strip-text {
  font-size: 13px;
  color: var(--framee2899-text);
  flex: 1;
}
.framee2899-promo-strip-text strong { color: #ffffff; display: block; margin-bottom: 2px; }

/* ---------- Extended footer ---------- */
.framee2899-extfoot {
  margin: 24px 0 0;
  padding: 18px 14px;
  background: var(--framee2899-bg-soft);
  border-top: 1px solid var(--framee2899-line);
  border-radius: var(--framee2899-radius-l) var(--framee2899-radius-l) 0 0;
}
.framee2899-extfoot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.framee2899-extfoot-col h4 {
  font-size: 13px;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: 0.3px;
}
.framee2899-extfoot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.framee2899-extfoot-col a {
  font-size: 12.5px;
  color: var(--framee2899-mute);
  line-height: 1.4;
}
.framee2899-extfoot-col a:hover { color: #ffffff; }

.framee2899-brand-blurb {
  font-size: 13px;
  color: var(--framee2899-mute);
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--framee2899-line);
}
.framee2899-brand-blurb strong { color: #ffffff; }

.framee2899-extfoot-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 12px 0;
}
.framee2899-extfoot-promo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--framee2899-bg-card);
  border: 1px solid var(--framee2899-line);
  border-radius: var(--framee2899-radius-s);
  font-size: 12px;
  color: var(--framee2899-text);
  text-align: left;
}
.framee2899-extfoot-promo span { color: var(--framee2899-mute-dim); font-size: 11px; display: block; }

.framee2899-disclaimer {
  margin-top: 14px;
  padding: 10px 12px;
  background: var(--framee2899-bg-card);
  border-left: 3px solid var(--framee2899-slate);
  border-radius: 0 var(--framee2899-radius-s) var(--framee2899-radius-s) 0;
  font-size: 11.5px;
  color: var(--framee2899-mute-dim);
  line-height: 1.5;
}

/* ---------- Footer ---------- */
.framee2899-footer {
  background: #161616;
  border-top: 1px solid var(--framee2899-line);
  padding: 14px 14px calc(var(--framee2899-bottomnav-h) + 14px);
  text-align: center;
  font-size: 11px;
  color: var(--framee2899-mute-dim);
}
.framee2899-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-bottom: 8px;
}
.framee2899-footer-links a { color: var(--framee2899-mute); font-size: 11.5px; }
.framee2899-footer-links a:hover { color: #ffffff; }

/* ---------- Mobile bottom nav (5 roles) ---------- */
.framee2899-bottomnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--framee2899-bottomnav-h);
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--framee2899-line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 85;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.framee2899-bottomnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 2px 4px;
  color: var(--framee2899-slate);
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  border-top: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.framee2899-bottomnav-item:hover,
.framee2899-bottomnav-item:focus-visible {
  color: var(--framee2899-mute);
}
.framee2899-bottomnav-item.framee2899-is-active {
  color: #ffffff;
  border-top-color: var(--framee2899-text);
}
.framee2899-bottomnav-item.framee2899-is-promo {
  color: var(--framee2899-text);
}
.framee2899-bottomnav-ic {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.22s ease;
}
.framee2899-bottomnav-item:hover .framee2899-bottomnav-ic,
.framee2899-bottomnav-item.framee2899-is-active .framee2899-bottomnav-ic {
  transform: translateY(-1px) scale(1.08);
}
.framee2899-bottomnav-lbl {
  font-size: 10px;
  letter-spacing: 0.2px;
  font-weight: 500;
  font-family: var(--framee2899-font-h);
}

/* ---------- Visually hidden helper ---------- */
.framee2899-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Responsive: 430px mobile breakpoint ---------- */
@media (min-width: 430px) {
  body { font-size: 15.5px; }
  .framee2899-main { padding-left: 16px; padding-right: 16px; }
  .framee2899-game-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .framee2899-hero-slide img { height: 200px; }
  .framee2899-extfoot-promos { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Compact phones (<=360px) ---------- */
@media (max-width: 360px) {
  .framee2899-brand-name { font-size: 17px; }
  .framee2899-btn { padding: 0 10px; font-size: 12px; }
  .framee2899-game-grid { gap: 6px; }
  .framee2899-game-name { font-size: 10px; }
}

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