/* ============================================================
   cm68.lol - theme-5d49.css
   Mobile-first HTML5 casino/gaming website stylesheet.
   All custom classes use the w5d49- prefix for namespace isolation.
   Palette: #212F3D | #F0FDFF | #00E5FF | #DEE2E6
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --w5d49-bg: #212F3D;
  --w5d49-bg-deep: #18222D;
  --w5d49-bg-card: #2A3B4D;
  --w5d49-bg-card-2: #34485C;
  --w5d49-primary: #00E5FF;
  --w5d49-primary-dark: #00B8D4;
  --w5d49-primary-glow: rgba(0, 229, 255, 0.35);
  --w5d49-text: #F0FDFF;
  --w5d49-text-muted: #DEE2E6;
  --w5d49-text-dim: #9FB1C2;
  --w5d49-gold: #FFD24A;
  --w5d49-success: #19E07A;
  --w5d49-danger: #FF5C7A;
  --w5d49-radius: 14px;
  --w5d49-radius-sm: 10px;
  --w5d49-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  --w5d49-shadow-cyan: 0 8px 24px rgba(0, 229, 255, 0.25);
  --w5d49-header-h: 60px;
  --w5d49-bottomnav-h: 62px;
  --w5d49-maxw: 430px;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #243B52 0%, var(--w5d49-bg) 55%, var(--w5d49-bg-deep) 100%);
  color: var(--w5d49-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--w5d49-primary); text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.9rem; font-weight: 800; color: var(--w5d49-text); }
h1 { font-size: 2.2rem; line-height: 2.6rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.6rem; }
p { margin: 0 0 1rem; color: var(--w5d49-text-muted); }

/* ---------- Layout ---------- */
.w5d49-wrapper { max-width: var(--w5d49-maxw); margin: 0 auto; padding: 0 1.2rem; }
.w5d49-container { padding: 1.6rem 1.2rem; }
.w5d49-section { padding: 2.2rem 0; }
.w5d49-section--alt { background: linear-gradient(180deg, rgba(0,229,255,0.04), transparent); }

/* ---------- Header ---------- */
.w5d49-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--w5d49-header-h);
  background: linear-gradient(180deg, rgba(24,34,45,0.98), rgba(33,47,61,0.92));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,229,255,0.18);
  display: flex; align-items: center;
}
.w5d49-header-inner { max-width: var(--w5d49-maxw); margin: 0 auto; width: 100%; padding: 0 1rem; display: flex; align-items: center; gap: 0.8rem; }
.w5d49-logo { display: flex; align-items: center; gap: 0.6rem; flex: 1; min-width: 0; }
.w5d49-logo img { width: 30px; height: 30px; border-radius: 8px; box-shadow: var(--w5d49-shadow-cyan); }
.w5d49-logo-text { font-weight: 800; font-size: 1.8rem; letter-spacing: 0.5px; color: var(--w5d49-text); }
.w5d49-logo-text span { color: var(--w5d49-primary); }
.w5d49-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.w5d49-btn {
  border: none; cursor: pointer; border-radius: var(--w5d49-radius-sm);
  font-weight: 700; font-size: 1.3rem; padding: 0.7rem 1.2rem; min-height: 38px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex; align-items: center; gap: 0.4rem; color: var(--w5d49-text);
}
.w5d49-btn:active { transform: scale(0.94); }
.w5d49-btn--login { background: transparent; border: 1px solid var(--w5d49-primary); color: var(--w5d49-primary); }
.w5d49-btn--login:hover { background: rgba(0,229,255,0.10); }
.w5d49-btn--register { background: linear-gradient(135deg, var(--w5d49-primary), var(--w5d49-primary-dark)); color: #0A1820; box-shadow: var(--w5d49-shadow-cyan); }
.w5d49-btn--register:hover { box-shadow: 0 10px 26px rgba(0,229,255,0.45); }
.w5d49-btn--block { width: 100%; justify-content: center; padding: 1rem; font-size: 1.5rem; }
.w5d49-btn--gold { background: linear-gradient(135deg, var(--w5d49-gold), #F5A623); color: #2A1E00; }
.w5d49-menu-toggle {
  background: transparent; border: 1px solid rgba(0,229,255,0.35); color: var(--w5d49-primary);
  width: 38px; height: 38px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.w5d49-menu-toggle .material-icons-outlined { font-size: 22px; }

/* ---------- Mobile menu ---------- */
.w5d49-mobile-menu {
  position: fixed; top: var(--w5d49-header-h); left: 0; right: 0; z-index: 9999;
  background: var(--w5d49-bg-deep); border-bottom: 1px solid rgba(0,229,255,0.2);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.w5d49-mobile-menu.is-open { max-height: 480px; box-shadow: var(--w5d49-shadow); }
.w5d49-mobile-menu-inner { max-width: var(--w5d49-maxw); margin: 0 auto; padding: 1rem 1.2rem; }
.w5d49-mobile-menu a {
  display: flex; align-items: center; gap: 0.8rem; padding: 1rem 0.6rem;
  color: var(--w5d49-text-muted); border-bottom: 1px solid rgba(255,255,255,0.05); font-weight: 600;
}
.w5d49-mobile-menu a:hover, .w5d49-mobile-menu a:focus { color: var(--w5d49-primary); background: rgba(0,229,255,0.06); }
.w5d49-mobile-menu a i, .w5d49-mobile-menu a .material-icons-outlined { color: var(--w5d49-primary); width: 22px; text-align: center; }

/* ---------- Body offset for fixed header ---------- */
.w5d49-main { padding-top: calc(var(--w5d49-header-h) + 8px); }

/* ---------- Hero carousel ---------- */
.w5d49-hero { position: relative; border-radius: var(--w5d49-radius); overflow: hidden; box-shadow: var(--w5d49-shadow); }
.w5d49-hero-track { display: flex; transition: transform 0.5s ease; }
.w5d49-hero-slide { min-width: 100%; position: relative; cursor: pointer; }
.w5d49-hero-slide img { width: 100%; height: 200px; object-fit: cover; }
.w5d49-hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(24,34,45,0.85)); }
.w5d49-hero-caption { position: absolute; left: 1.2rem; bottom: 1rem; z-index: 2; }
.w5d49-hero-caption h2 { color: var(--w5d49-text); font-size: 1.7rem; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.w5d49-hero-caption p { color: var(--w5d49-text-muted); font-size: 1.2rem; margin: 0; }
.w5d49-hero-dots { position: absolute; bottom: 8px; right: 12px; z-index: 3; display: flex; gap: 6px; }
.w5d49-hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; border: none; padding: 0; }
.w5d49-hero-dot.is-active { background: var(--w5d49-primary); box-shadow: 0 0 8px var(--w5d49-primary-glow); }

/* ---------- Section title ---------- */
.w5d49-section-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.2rem; }
.w5d49-section-head .w5d49-bar { width: 4px; height: 22px; background: linear-gradient(180deg, var(--w5d49-primary), var(--w5d49-primary-dark)); border-radius: 4px; }
.w5d49-section-head h2 { font-size: 1.7rem; }
.w5d49-section-head h2 span { color: var(--w5d49-primary); }
.w5d49-section-head .w5d49-more { margin-left: auto; font-size: 1.2rem; color: var(--w5d49-text-dim); }

/* ---------- Game grid (compact icons) ---------- */
.w5d49-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.w5d49-game-card {
  background: var(--w5d49-bg-card); border-radius: var(--w5d49-radius-sm); overflow: hidden;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex; flex-direction: column;
}
.w5d49-game-card:hover, .w5d49-game-card:focus { transform: translateY(-3px); border-color: var(--w5d49-primary); box-shadow: var(--w5d49-shadow-cyan); }
.w5d49-game-card .w5d49-game-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #0F1820; }
.w5d49-game-card .w5d49-game-name { font-size: 1.05rem; color: var(--w5d49-text-muted); padding: 0.45rem 0.4rem; text-align: center; line-height: 1.3rem; height: 3.6rem; overflow: hidden; }
.w5d49-game-tag { display: inline-block; font-size: 1rem; padding: 0.18rem 0.6rem; border-radius: 999px; background: rgba(0,229,255,0.12); color: var(--w5d49-primary); font-weight: 700; margin-bottom: 1rem; }

/* ---------- Feature / info cards ---------- */
.w5d49-card { background: var(--w5d49-bg-card); border-radius: var(--w5d49-radius); padding: 1.4rem; border: 1px solid rgba(255,255,255,0.05); box-shadow: var(--w5d49-shadow); }
.w5d49-card h3 { margin-bottom: 0.6rem; }
.w5d49-card h3 span { color: var(--w5d49-primary); }
.w5d49-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.w5d49-feature-item { background: var(--w5d49-bg-card); border-radius: var(--w5d49-radius-sm); padding: 1.1rem; text-align: center; border: 1px solid rgba(0,229,255,0.08); }
.w5d49-feature-item i, .w5d49-feature-item .material-icons-outlined, .w5d49-feature-item .bi { font-size: 26px; color: var(--w5d49-primary); margin-bottom: 0.4rem; }
.w5d49-feature-item h4 { font-size: 1.25rem; margin-bottom: 0.2rem; color: var(--w5d49-text); }
.w5d49-feature-item p { font-size: 1.1rem; margin: 0; color: var(--w5d49-text-dim); line-height: 1.4rem; }

/* ---------- Steps ---------- */
.w5d49-steps { display: flex; flex-direction: column; gap: 0.8rem; }
.w5d49-step { display: flex; gap: 0.9rem; align-items: flex-start; background: var(--w5d49-bg-card); padding: 1rem; border-radius: var(--w5d49-radius-sm); border-left: 3px solid var(--w5d49-primary); }
.w5d49-step-num { flex: 0 0 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--w5d49-primary), var(--w5d49-primary-dark)); color: #0A1820; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.w5d49-step h4 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.w5d49-step p { font-size: 1.15rem; margin: 0; color: var(--w5d49-text-dim); }

/* ---------- RTP table ---------- */
.w5d49-rtp-table { width: 100%; border-collapse: collapse; background: var(--w5d49-bg-card); border-radius: var(--w5d49-radius-sm); overflow: hidden; }
.w5d49-rtp-table th, .w5d49-rtp-table td { padding: 0.8rem 0.9rem; text-align: left; font-size: 1.15rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.w5d49-rtp-table th { background: rgba(0,229,255,0.10); color: var(--w5d49-primary); font-size: 1.1rem; }
.w5d49-rtp-table td .w5d49-rtp-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden; margin-top: 4px; }
.w5d49-rtp-table td .w5d49-rtp-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--w5d49-primary), var(--w5d49-success)); }
.w5d49-rtp-pct { color: var(--w5d49-success); font-weight: 800; }

/* ---------- Testimonials ---------- */
.w5d49-testi-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.w5d49-testi { background: var(--w5d49-bg-card); border-radius: var(--w5d49-radius-sm); padding: 1.1rem; border: 1px solid rgba(255,255,255,0.05); }
.w5d49-testi-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; }
.w5d49-testi-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--w5d49-primary), var(--w5d49-gold)); color: #0A1820; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.w5d49-testi-name { font-weight: 700; font-size: 1.2rem; color: var(--w5d49-text); }
.w5d49-testi-stars { color: var(--w5d49-gold); font-size: 1.1rem; }
.w5d49-testi p { font-size: 1.15rem; margin: 0; color: var(--w5d49-text-muted); }

/* ---------- Winners ---------- */
.w5d49-winner-list { display: flex; flex-direction: column; gap: 0.6rem; }
.w5d49-winner { display: flex; align-items: center; gap: 0.7rem; background: var(--w5d49-bg-card); padding: 0.7rem 0.9rem; border-radius: var(--w5d49-radius-sm); }
.w5d49-winner img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
.w5d49-winner .w5d49-winner-info { flex: 1; min-width: 0; }
.w5d49-winner .w5d49-winner-name { font-size: 1.15rem; font-weight: 700; color: var(--w5d49-text); }
.w5d49-winner .w5d49-winner-game { font-size: 1rem; color: var(--w5d49-text-dim); }
.w5d49-winner .w5d49-winner-amount { font-weight: 800; color: var(--w5d49-gold); font-size: 1.25rem; }

/* ---------- Payment methods ---------- */
.w5d49-pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.w5d49-pay-item { background: var(--w5d49-bg-card); border-radius: var(--w5d49-radius-sm); padding: 0.9rem 0.4rem; text-align: center; border: 1px solid rgba(255,255,255,0.06); }
.w5d49-pay-item .w5d49-pay-name { font-size: 1.05rem; color: var(--w5d49-text-muted); margin-top: 0.3rem; font-weight: 600; }
.w5d49-pay-item i, .w5d49-pay-item .bi { font-size: 24px; color: var(--w5d49-primary); }

/* ---------- App download CTA ---------- */
.w5d49-app-cta { background: linear-gradient(135deg, rgba(0,229,255,0.12), rgba(255,210,74,0.08)); border: 1px solid rgba(0,229,255,0.25); border-radius: var(--w5d49-radius); padding: 1.5rem; text-align: center; }
.w5d49-app-cta h3 { margin-bottom: 0.4rem; }
.w5d49-app-cta p { margin-bottom: 1rem; }
.w5d49-app-cta .w5d49-app-btns { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Category highlights ---------- */
.w5d49-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.w5d49-cat-item { position: relative; border-radius: var(--w5d49-radius-sm); overflow: hidden; min-height: 96px; display: flex; align-items: flex-end; padding: 0.8rem; cursor: pointer; border: 1px solid rgba(0,229,255,0.12); background: linear-gradient(135deg, var(--w5d49-bg-card-2), var(--w5d49-bg-card)); }
.w5d49-cat-item h4 { font-size: 1.3rem; color: var(--w5d49-text); }
.w5d49-cat-item p { font-size: 1.05rem; margin: 0; color: var(--w5d49-text-dim); }
.w5d49-cat-item .w5d49-cat-ico { position: absolute; right: 0.6rem; top: 0.6rem; font-size: 30px; color: var(--w5d49-primary); opacity: 0.85; }

/* ---------- FAQ ---------- */
.w5d49-faq-item { background: var(--w5d49-bg-card); border-radius: var(--w5d49-radius-sm); margin-bottom: 0.7rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.w5d49-faq-q { padding: 0.9rem 1rem; font-weight: 700; color: var(--w5d49-text); display: flex; gap: 0.5rem; cursor: pointer; font-size: 1.2rem; }
.w5d49-faq-q .w5d49-faq-ico { color: var(--w5d49-primary); margin-left: auto; transition: transform 0.2s ease; }
.w5d49-faq-item.is-open .w5d49-faq-ico { transform: rotate(45deg); }
.w5d49-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1rem; color: var(--w5d49-text-muted); font-size: 1.1rem; }
.w5d49-faq-item.is-open .w5d49-faq-a { max-height: 240px; padding: 0 1rem 0.9rem; }

/* ---------- Inline promo link ---------- */
.w5d49-link { color: var(--w5d49-primary); font-weight: 700; cursor: pointer; }
.w5d49-link:hover { text-decoration: underline; }
.w5d49-promo-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 1rem 0; }

/* ---------- Help / article pages ---------- */
.w5d49-page-hero { background: linear-gradient(135deg, rgba(0,229,255,0.14), rgba(255,210,74,0.08)); border: 1px solid rgba(0,229,255,0.22); border-radius: var(--w5d49-radius); padding: 1.6rem; box-shadow: var(--w5d49-shadow); }
.w5d49-page-hero h1 { margin-bottom: 0.7rem; }
.w5d49-page-hero .w5d49-kicker { color: var(--w5d49-primary); font-weight: 800; font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.w5d49-article { display: flex; flex-direction: column; gap: 1rem; }
.w5d49-article h2 { margin: 0.6rem 0 0.2rem; }
.w5d49-article h3 { color: var(--w5d49-primary); margin-bottom: 0.4rem; }
.w5d49-check-list { display: flex; flex-direction: column; gap: 0.7rem; }
.w5d49-check-item { display: flex; gap: 0.7rem; align-items: flex-start; background: rgba(255,255,255,0.04); border-radius: var(--w5d49-radius-sm); padding: 0.9rem; border: 1px solid rgba(0,229,255,0.08); }
.w5d49-check-item i, .w5d49-check-item .material-icons-outlined, .w5d49-check-item .bi { color: var(--w5d49-success); font-size: 20px; flex: 0 0 22px; }
.w5d49-note { border-left: 3px solid var(--w5d49-gold); background: rgba(255,210,74,0.08); border-radius: var(--w5d49-radius-sm); padding: 1rem; color: var(--w5d49-text-muted); }
.w5d49-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.w5d49-mini-card { background: var(--w5d49-bg-card); border-radius: var(--w5d49-radius-sm); padding: 1rem; border: 1px solid rgba(0,229,255,0.08); }
.w5d49-mini-card strong { color: var(--w5d49-primary); display: block; margin-bottom: 0.3rem; }
.w5d49-internal-links { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1rem 0; }
.w5d49-internal-links a { color: var(--w5d49-primary); font-weight: 700; border-bottom: 1px dashed rgba(0,229,255,0.55); }

/* ---------- Footer ---------- */
.w5d49-footer { background: var(--w5d49-bg-deep); border-top: 1px solid rgba(0,229,255,0.18); padding: 2rem 0 calc(var(--w5d49-bottomnav-h) + 2rem); margin-top: 2rem; }
.w5d49-footer-inner { max-width: var(--w5d49-maxw); margin: 0 auto; padding: 0 1.2rem; }
.w5d49-footer-brand { font-size: 1.15rem; color: var(--w5d49-text-dim); margin-bottom: 1rem; line-height: 1.6rem; }
.w5d49-footer-brand strong { color: var(--w5d49-primary); }
.w5d49-footer-promos { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.w5d49-footer-promos .w5d49-btn { font-size: 1.15rem; padding: 0.55rem 0.9rem; }
.w5d49-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 1rem; margin-bottom: 1.2rem; }
.w5d49-footer-links a { color: var(--w5d49-text-muted); font-size: 1.15rem; }
.w5d49-footer-links a:hover { color: var(--w5d49-primary); }
.w5d49-footer-copy { font-size: 1.05rem; color: var(--w5d49-text-dim); border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1rem; text-align: center; }

/* ---------- Mobile bottom nav ---------- */
.w5d49-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: var(--w5d49-bottomnav-h);
  background: linear-gradient(180deg, rgba(33,47,61,0.98), rgba(24,34,45,0.99));
  backdrop-filter: blur(8px); border-top: 1px solid rgba(0,229,255,0.25);
  display: flex; justify-content: space-around; align-items: stretch;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.35);
}
.w5d49-bottom-nav-btn {
  flex: 1; min-width: 60px; min-height: 60px; background: transparent; border: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  color: var(--w5d49-text-dim); cursor: pointer; padding: 4px 0; position: relative; transition: color 0.18s ease, transform 0.18s ease;
}
.w5d49-bottom-nav-btn i, .w5d49-bottom-nav-btn .material-icons-outlined, .w5d49-bottom-nav-btn .bi, .w5d49-bottom-nav-btn ion-icon { font-size: 22px; }
.w5d49-bottom-nav-btn ion-icon { font-size: 24px; }
.w5d49-bottom-nav-btn span { font-size: 1rem; line-height: 1.2rem; }
.w5d49-bottom-nav-btn:hover, .w5d49-bottom-nav-btn:focus { color: var(--w5d49-primary); }
.w5d49-bottom-nav-btn:active { transform: scale(0.9); }
.w5d49-bottom-nav-btn.is-active { color: var(--w5d49-primary); }
.w5d49-bottom-nav-btn.is-active::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 26px; height: 3px; border-radius: 0 0 6px 6px; background: var(--w5d49-primary); box-shadow: 0 0 10px var(--w5d49-primary-glow); }
.w5d49-bottom-nav-btn--promo { color: var(--w5d49-gold); }
.w5d49-bottom-nav-btn--promo:hover { color: var(--w5d49-gold); }
.w5d49-nav-badge { position: absolute; top: 4px; right: 16px; background: var(--w5d49-danger); color: #fff; font-size: 0.9rem; font-weight: 800; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 999px; display: flex; align-items: center; justify-content: center; }

/* ---------- Desktop: hide bottom nav, widen wrapper ---------- */
@media (min-width: 769px) {
  .w5d49-bottom-nav { display: none; }
  .w5d49-footer { padding-bottom: 2rem; }
  .w5d49-wrapper, .w5d49-header-inner, .w5d49-mobile-menu-inner, .w5d49-footer-inner { max-width: 760px; }
  .w5d49-game-grid { grid-template-columns: repeat(6, 1fr); }
  .w5d49-feature-grid, .w5d49-cat-grid { grid-template-columns: repeat(4, 1fr); }
  .w5d49-pay-grid { grid-template-columns: repeat(6, 1fr); }
  .w5d49-testi-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ---------- Mobile bottom padding for fixed nav ---------- */
@media (max-width: 768px) {
  .w5d49-main { padding-bottom: calc(var(--w5d49-bottomnav-h) + 12px); }
}

/* ---------- Utility ---------- */
.w5d49-text-center { text-align: center; }
.w5d49-mt-1 { margin-top: 1rem; }
.w5d49-mt-2 { margin-top: 2rem; }
.w5d49-mb-1 { margin-bottom: 1rem; }
.w5d49-hidden { display: none !important; }
.w5d49-pulse { animation: w5d49pulse 1.8s ease-in-out infinite; }
@keyframes w5d49pulse { 0%, 100% { box-shadow: 0 0 0 0 var(--w5d49-primary-glow); } 50% { box-shadow: 0 0 0 8px transparent; } }
