/* ============================================================
   phlove app apk - design.css
   Prefix: w18a0-
   Palette: #2E4057 / #F4A460 / #FFEBCD
   Mobile-first, max-width 430px container
   ============================================================ */

:root {
  --w18a0-bg: #2E4057;
  --w18a0-bg-deep: #1d2c3d;
  --w18a0-bg-soft: #3a5168;
  --w18a0-accent: #F4A460;
  --w18a0-accent-deep: #d98a48;
  --w18a0-cream: #FFEBCD;
  --w18a0-text: #FFEBCD;
  --w18a0-text-soft: rgba(255, 235, 205, 0.72);
  --w18a0-text-faint: rgba(255, 235, 205, 0.5);
  --w18a0-line: rgba(255, 235, 205, 0.14);
  --w18a0-card: #34506a;
  --w18a0-card-2: #2b4361;
  --w18a0-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  --w18a0-radius: 14px;
  --w18a0-radius-sm: 10px;
  --w18a0-radius-lg: 22px;
  --w18a0-header-h: 60px;
  --w18a0-nav-h: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Roboto, system-ui, -apple-system, sans-serif;
  background: linear-gradient(160deg, #1d2c3d 0%, #2E4057 45%, #243a51 100%);
  color: var(--w18a0-text);
  line-height: 1.55;
  font-size: 1.5rem;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--w18a0-accent); text-decoration: none; }
a:hover { color: var(--w18a0-cream); }

/* ---------- Shell ---------- */
.w18a0-shell {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background: var(--w18a0-bg);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 60px rgba(0,0,0,0.45);
}

/* ---------- Header ---------- */
.w18a0-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(29,44,61,0.96), rgba(46,64,87,0.92));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--w18a0-line);
}
.w18a0-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  height: var(--w18a0-header-h);
}
.w18a0-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.w18a0-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--w18a0-accent), var(--w18a0-cream));
  display: grid;
  place-items: center;
  color: var(--w18a0-bg-deep);
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(244,164,96,0.35);
}
.w18a0-brand-name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--w18a0-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.w18a0-brand-name span { color: var(--w18a0-accent); }
.w18a0-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.w18a0-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--w18a0-line);
  background: rgba(255,235,205,0.06);
  color: var(--w18a0-cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.7rem;
  transition: all .25s ease;
}
.w18a0-icon-btn:hover { background: rgba(244,164,96,0.18); color: var(--w18a0-accent); }

.w18a0-btn {
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 1.3rem;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-family: inherit;
}
.w18a0-btn:active { transform: translateY(1px) scale(0.98); }
.w18a0-btn-register {
  background: linear-gradient(135deg, var(--w18a0-accent), var(--w18a0-accent-deep));
  color: #2a1d10;
  box-shadow: 0 6px 16px rgba(244,164,96,0.4);
}
.w18a0-btn-register:hover { color: #2a1d10; box-shadow: 0 8px 20px rgba(244,164,96,0.55); }
.w18a0-btn-login {
  background: transparent;
  color: var(--w18a0-cream);
  border: 1.5px solid var(--w18a0-accent);
}
.w18a0-btn-login:hover { background: rgba(244,164,96,0.15); color: var(--w18a0-accent); }

/* ---------- Mobile Slide Menu ---------- */
.w18a0-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.w18a0-menu-backdrop.w18a0-open { opacity: 1; pointer-events: auto; }
.w18a0-side-menu {
  position: fixed;
  top: 0;
  left: -82%;
  width: 78%;
  max-width: 340px;
  height: 100vh;
  background: linear-gradient(180deg, #1d2c3d, #2E4057);
  z-index: 9999;
  transition: left .32s cubic-bezier(.4,0,.2,1);
  padding: 18px 16px;
  overflow-y: auto;
  box-shadow: 6px 0 28px rgba(0,0,0,0.45);
}
.w18a0-side-menu.w18a0-open { left: 0; }
.w18a0-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--w18a0-line);
}
.w18a0-menu-head h3 { font-size: 1.6rem; color: var(--w18a0-cream); }
.w18a0-menu-close {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid var(--w18a0-line);
  background: transparent;
  color: var(--w18a0-cream);
  cursor: pointer;
  font-size: 1.8rem;
}
.w18a0-menu-promo {
  margin: 14px 0;
  padding: 14px;
  border-radius: var(--w18a0-radius);
  background: linear-gradient(135deg, var(--w18a0-accent), var(--w18a0-accent-deep));
  color: #2a1d10;
}
.w18a0-menu-promo p { font-size: 1.25rem; opacity: .8; }
.w18a0-menu-promo strong { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.w18a0-menu-nav { list-style: none; margin-top: 8px; }
.w18a0-menu-nav li { margin: 2px 0; }
.w18a0-menu-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  color: var(--w18a0-cream);
  border-radius: var(--w18a0-radius-sm);
  font-size: 1.4rem;
  transition: background .2s;
}
.w18a0-menu-nav a:hover { background: rgba(244,164,96,0.14); color: var(--w18a0-accent); }
.w18a0-menu-nav .material-symbols-outlined,
.w18a0-menu-nav i { font-size: 2rem; color: var(--w18a0-accent); width: 24px; text-align: center; }

/* ---------- Main ---------- */
main.w18a0-main { padding-bottom: 90px; }
.w18a0-section { padding: 22px 14px; }
.w18a0-section-alt { background: rgba(0,0,0,0.12); }

.w18a0-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--w18a0-accent);
  margin-bottom: 8px;
}
.w18a0-section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--w18a0-cream);
  line-height: 1.25;
  margin-bottom: 8px;
}
.w18a0-section-sub {
  font-size: 1.35rem;
  color: var(--w18a0-text-soft);
  margin-bottom: 16px;
}
.w18a0-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 8px;
}
.w18a0-section-head .w18a0-section-title { margin-bottom: 0; font-size: 1.85rem; }
.w18a0-link-more {
  font-size: 1.25rem;
  color: var(--w18a0-accent);
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- Hero ---------- */
.w18a0-hero {
  position: relative;
  padding: 24px 16px 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(244,164,96,0.22), transparent 55%),
    radial-gradient(circle at 90% 30%, rgba(255,235,205,0.10), transparent 50%);
  overflow: hidden;
}
.w18a0-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.w18a0-hero-card {
  position: relative;
  border-radius: var(--w18a0-radius-lg);
  overflow: hidden;
  min-height: 150px;
  border: 1px solid var(--w18a0-line);
  background: var(--w18a0-card);
}
.w18a0-hero-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.w18a0-hero-card.w18a0-hero-card-tall { grid-row: span 2; min-height: 230px; }
.w18a0-hero-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(46,64,87,0.85);
  border: 1px solid var(--w18a0-line);
  color: var(--w18a0-accent);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.w18a0-hero-text h1 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--w18a0-cream);
  line-height: 1.2;
  margin-bottom: 8px;
}
.w18a0-hero-text h1 .w18a0-hl { color: var(--w18a0-accent); }
.w18a0-hero-text p {
  font-size: 1.32rem;
  color: var(--w18a0-text-soft);
  margin-bottom: 14px;
}
.w18a0-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.w18a0-cta-row .w18a0-btn { padding: 11px 18px; font-size: 1.35rem; }

.w18a0-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.w18a0-stat {
  background: rgba(255,235,205,0.05);
  border: 1px solid var(--w18a0-line);
  border-radius: var(--w18a0-radius-sm);
  padding: 10px 6px;
  text-align: center;
}
.w18a0-stat-num {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--w18a0-accent);
  line-height: 1.1;
}
.w18a0-stat-lbl {
  font-size: 1.05rem;
  color: var(--w18a0-text-faint);
  letter-spacing: 0.4px;
}

/* ---------- Marquee ---------- */
.w18a0-marquee {
  background: linear-gradient(90deg, var(--w18a0-bg-deep), var(--w18a0-bg-soft), var(--w18a0-bg-deep));
  padding: 9px 0;
  overflow: hidden;
  border-top: 1px solid var(--w18a0-line);
  border-bottom: 1px solid var(--w18a0-line);
}
.w18a0-marquee-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: w18a0-scroll 28s linear infinite;
  font-size: 1.25rem;
  color: var(--w18a0-accent);
  font-weight: 600;
}
.w18a0-marquee-track span { display: inline-flex; align-items: center; gap: 8px; }
@keyframes w18a0-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Category Chips ---------- */
.w18a0-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.w18a0-chips::-webkit-scrollbar { display: none; }
.w18a0-chip {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,235,205,0.06);
  border: 1px solid var(--w18a0-line);
  color: var(--w18a0-text-soft);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}
.w18a0-chip.w18a0-active,
.w18a0-chip:hover {
  background: linear-gradient(135deg, var(--w18a0-accent), var(--w18a0-accent-deep));
  color: #2a1d10;
  border-color: transparent;
}
.w18a0-chip i, .w18a0-chip .material-symbols-outlined { font-size: 1.5rem; }

/* ---------- Game Grid ---------- */
.w18a0-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.w18a0-game {
  position: relative;
  border-radius: var(--w18a0-radius);
  overflow: hidden;
  background: var(--w18a0-card);
  border: 1px solid var(--w18a0-line);
  aspect-ratio: 1 / 1.18;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}
.w18a0-game:hover {
  transform: translateY(-3px);
  box-shadow: var(--w18a0-shadow);
}
.w18a0-game img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.w18a0-game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 8px;
}
.w18a0-game-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--w18a0-cream);
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.w18a0-game-tag {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--w18a0-accent);
  color: #2a1d10;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
}
.w18a0-game-tag.w18a0-hot { background: #e7503b; color: #fff; }
.w18a0-game-tag.w18a0-new { background: #2bb673; color: #fff; }

/* ---------- Feature Cards ---------- */
.w18a0-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.w18a0-feature {
  background: linear-gradient(160deg, var(--w18a0-card), var(--w18a0-card-2));
  border: 1px solid var(--w18a0-line);
  border-radius: var(--w18a0-radius);
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.w18a0-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(244,164,96,0.18);
  color: var(--w18a0-accent);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  font-size: 2rem;
}
.w18a0-feature h3 {
  font-size: 1.4rem;
  color: var(--w18a0-cream);
  margin-bottom: 4px;
  font-weight: 700;
}
.w18a0-feature p {
  font-size: 1.18rem;
  color: var(--w18a0-text-soft);
  line-height: 1.45;
}

/* ---------- Steps ---------- */
.w18a0-steps {
  display: grid;
  gap: 10px;
}
.w18a0-step {
  display: flex;
  gap: 12px;
  background: rgba(255,235,205,0.04);
  border: 1px solid var(--w18a0-line);
  border-radius: var(--w18a0-radius);
  padding: 12px;
}
.w18a0-step-num {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--w18a0-accent), var(--w18a0-accent-deep));
  color: #2a1d10;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
}
.w18a0-step h4 { font-size: 1.32rem; color: var(--w18a0-cream); margin-bottom: 3px; }
.w18a0-step p { font-size: 1.18rem; color: var(--w18a0-text-soft); }

/* ---------- Promo Banner ---------- */
.w18a0-promo-banner {
  background: linear-gradient(135deg, #d98a48, #F4A460 55%, #FFEBCD);
  border-radius: var(--w18a0-radius-lg);
  padding: 18px;
  color: #2a1d10;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.w18a0-promo-banner::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -50px;
  top: -50px;
  background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 70%);
  border-radius: 50%;
}
.w18a0-promo-banner h3 { font-size: 1.7rem; color: #2a1d10; position: relative; }
.w18a0-promo-banner p { font-size: 1.22rem; color: #3a2616; position: relative; }
.w18a0-promo-banner .w18a0-btn {
  align-self: flex-start;
  background: var(--w18a0-bg);
  color: var(--w18a0-cream);
  position: relative;
}

/* ---------- FAQ ---------- */
.w18a0-faq { display: grid; gap: 8px; }
.w18a0-faq-item {
  background: rgba(255,235,205,0.04);
  border: 1px solid var(--w18a0-line);
  border-radius: var(--w18a0-radius-sm);
  overflow: hidden;
}
.w18a0-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--w18a0-cream);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 14px 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-family: inherit;
}
.w18a0-faq-q .w18a0-faq-icon { color: var(--w18a0-accent); transition: transform .25s; font-size: 1.6rem; }
.w18a0-faq-item.w18a0-open .w18a0-faq-icon { transform: rotate(45deg); }
.w18a0-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 14px;
  color: var(--w18a0-text-soft);
  font-size: 1.2rem;
  line-height: 1.55;
}
.w18a0-faq-item.w18a0-open .w18a0-faq-a { max-height: 320px; padding: 0 14px 14px; }

/* ---------- SEO long text ---------- */
.w18a0-prose {
  font-size: 1.28rem;
  color: var(--w18a0-text-soft);
  line-height: 1.7;
}
.w18a0-prose h2 {
  font-size: 1.85rem;
  color: var(--w18a0-cream);
  margin: 18px 0 8px;
  font-weight: 800;
}
.w18a0-prose h3 {
  font-size: 1.5rem;
  color: var(--w18a0-accent);
  margin: 14px 0 6px;
  font-weight: 700;
}
.w18a0-prose p { margin-bottom: 10px; }
.w18a0-prose ul { padding-left: 18px; margin-bottom: 10px; }
.w18a0-prose li { margin-bottom: 5px; }
.w18a0-prose strong { color: var(--w18a0-cream); }
.w18a0-prose a { color: var(--w18a0-accent); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Footer ---------- */
.w18a0-footer {
  background: var(--w18a0-bg-deep);
  border-top: 1px solid var(--w18a0-line);
  padding: 22px 14px 14px;
  margin-top: 10px;
}
.w18a0-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.w18a0-footer-col h4 {
  font-size: 1.3rem;
  color: var(--w18a0-accent);
  margin-bottom: 8px;
  font-weight: 700;
}
.w18a0-footer-col ul { list-style: none; }
.w18a0-footer-col li { margin-bottom: 5px; }
.w18a0-footer-col a {
  color: var(--w18a0-text-soft);
  font-size: 1.18rem;
  transition: color .2s;
}
.w18a0-footer-col a:hover { color: var(--w18a0-accent); }
.w18a0-footer-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 16px;
}
.w18a0-footer-pay span {
  background: rgba(255,235,205,0.06);
  border: 1px solid var(--w18a0-line);
  color: var(--w18a0-cream);
  font-size: 1.1rem;
  padding: 4px 10px;
  border-radius: 6px;
}
.w18a0-footer-bottom {
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid var(--w18a0-line);
  font-size: 1.1rem;
  color: var(--w18a0-text-faint);
}
.w18a0-footer-disclaimer {
  font-size: 1.08rem;
  color: var(--w18a0-text-faint);
  margin-top: 8px;
  line-height: 1.5;
}

/* ---------- Mobile Bottom Nav ---------- */
.w18a0-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--w18a0-nav-h);
  background: linear-gradient(180deg, rgba(29,44,61,0.98), rgba(20,30,42,1));
  border-top: 1px solid var(--w18a0-line);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.35);
}
.w18a0-nav-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--w18a0-text-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  padding: 6px 2px;
  min-width: 60px;
  min-height: 60px;
  font-family: inherit;
  position: relative;
  transition: color .2s;
}
.w18a0-nav-btn i,
.w18a0-nav-btn .material-symbols-outlined,
.w18a0-nav-btn ion-icon {
  font-size: 2.3rem;
  transition: transform .2s, color .2s;
}
.w18a0-nav-btn ion-icon { font-size: 2.4rem; }
.w18a0-nav-btn span.w18a0-nav-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.w18a0-nav-btn:hover { color: var(--w18a0-accent); }
.w18a0-nav-btn:hover i,
.w18a0-nav-btn:hover .material-symbols-outlined,
.w18a0-nav-btn:hover ion-icon { transform: translateY(-2px); }
.w18a0-nav-btn.w18a0-active { color: var(--w18a0-accent); }
.w18a0-nav-btn.w18a0-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--w18a0-accent);
  border-radius: 0 0 4px 4px;
}
.w18a0-nav-btn.w18a0-nav-cta {
  background: linear-gradient(135deg, var(--w18a0-accent), var(--w18a0-accent-deep));
  color: #2a1d10;
  border-radius: 18px 18px 0 0;
  margin: 0 4px;
}
.w18a0-nav-btn.w18a0-nav-cta:hover { color: #2a1d10; }

/* ---------- Float CTA ---------- */
.w18a0-float-cta {
  position: fixed;
  right: 12px;
  bottom: calc(var(--w18a0-nav-h) + 12px);
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--w18a0-accent), var(--w18a0-accent-deep));
  color: #2a1d10;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  box-shadow: 0 8px 22px rgba(244,164,96,0.5);
  animation: w18a0-pulse 2s ease-in-out infinite;
}
@keyframes w18a0-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

/* ---------- Helpers ---------- */
.w18a0-text-center { text-align: center; }
.w18a0-mt-8 { margin-top: 8px; }
.w18a0-mt-16 { margin-top: 16px; }
.w18a0-hidden { display: none !important; }

/* ---------- Responsive / Desktop ---------- */
@media (min-width: 769px) {
  .w18a0-bottom-nav { display: none; }
  .w18a0-float-cta { display: none; }
  main.w18a0-main { padding-bottom: 30px; }
  .w18a0-shell { max-width: 430px; }
}

@media (max-width: 768px) {
  main.w18a0-main { padding-bottom: calc(var(--w18a0-nav-h) + 16px); }
}

@media (max-width: 360px) {
  .w18a0-game-grid { grid-template-columns: repeat(2, 1fr); }
  .w18a0-hero-text h1 { font-size: 2rem; }
}
