/* ============================================================
 * lucky-spin-apk.css - luckyspinapk.click basefile styles
 * Prefix:  pgfa-
 * Palette: #0F0F23 (deep night) | #B8860B (dark gold)
 *          #FFD700 (gold)       | #DEB887 (sand)
 * Mobile-first, max-width 430px base layout.
 * ============================================================ */

:root {
  --pgfa-bg: #0F0F23;
  --pgfa-bg-2: #161635;
  --pgfa-bg-3: #1d1d44;
  --pgfa-gold: #FFD700;
  --pgfa-gold-deep: #B8860B;
  --pgfa-sand: #DEB887;
  --pgfa-text: #F5E9C9;
  --pgfa-text-dim: #B7A987;
  --pgfa-white: #FFFFFF;
  --pgfa-border: rgba(255, 215, 0, 0.18);
  --pgfa-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  --pgfa-radius: 14px;
  --pgfa-header-h: 60px;
  --pgfa-nav-h: 64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
  background: radial-gradient(circle at 30% 0%, #1a1a3f 0%, var(--pgfa-bg) 55%);
  color: var(--pgfa-text);
  line-height: 1.5;
  font-size: 15px;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--pgfa-gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pgfa-sand); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { color: var(--pgfa-white); line-height: 1.25; margin: 0 0 .6em; }
h1 { font-size: 1.55rem; }
h2 { font-size: 1.3rem; }
h3 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }

.pgfa-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 14px; }
.pgfa-mainwrap { padding-bottom: calc(var(--pgfa-nav-h) + 20px); }

/* ---------- Header ---------- */
.pgfa-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 15, 35, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pgfa-border);
  transition: box-shadow .25s ease, background .25s ease;
}
.pgfa-header-scrolled {
  background: rgba(15, 15, 35, 0.98);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}
.pgfa-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--pgfa-header-h);
  padding: 0 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.pgfa-brand { display: flex; align-items: center; gap: 8px; }
.pgfa-brand-logo {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pgfa-gold), var(--pgfa-gold-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--pgfa-bg); font-weight: 800; font-size: 18px;
  box-shadow: 0 0 14px rgba(255, 215, 0, .45);
}
.pgfa-brand-name { color: var(--pgfa-white); font-weight: 700; font-size: 16px; letter-spacing: .3px; }
.pgfa-brand-name span { color: var(--pgfa-gold); }
.pgfa-header-actions { display: flex; align-items: center; gap: 8px; }

.pgfa-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.pgfa-btn:active { transform: scale(.96); }
.pgfa-btn-primary {
  background: linear-gradient(135deg, var(--pgfa-gold), var(--pgfa-gold-deep));
  color: var(--pgfa-bg);
  box-shadow: 0 4px 14px rgba(255, 215, 0, .35);
}
.pgfa-btn-secondary {
  background: transparent;
  color: var(--pgfa-gold);
  border: 1.5px solid var(--pgfa-gold);
}
.pgfa-btn-ghost {
  background: rgba(255, 215, 0, .12);
  color: var(--pgfa-gold);
}
.pgfa-btn-block { width: 100%; }
.pgfa-btn-lg { padding: 12px 22px; font-size: 15px; }

.pgfa-menu-btn {
  width: 40px; height: 40px;
  display: none;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(255, 215, 0, .1);
  color: var(--pgfa-gold);
  font-size: 20px;
}

/* ---------- Mobile menu ---------- */
.pgfa-mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: 82%; max-width: 320px;
  height: 100vh;
  background: var(--pgfa-bg-2);
  z-index: 9999;
  padding: 76px 18px 24px;
  overflow-y: auto;
  transition: right .28s ease;
  border-left: 1px solid var(--pgfa-border);
  box-shadow: -10px 0 30px rgba(0, 0, 0, .55);
}
.pgfa-mobile-menu.pgfa-menu-open { right: 0; }
.pgfa-menu-close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 215, 0, .12);
  color: var(--pgfa-gold);
  font-size: 22px;
}
.pgfa-mobile-menu h4 {
  color: var(--pgfa-gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 18px 0 8px;
}
.pgfa-mobile-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--pgfa-text);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 215, 0, .07);
}
.pgfa-mobile-menu a:hover { background: rgba(255, 215, 0, .08); color: var(--pgfa-gold); }
.pgfa-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
  z-index: 9998;
}
.pgfa-mobile-menu.pgfa-menu-open ~ .pgfa-overlay { opacity: 1; visibility: visible; }
.pgfa-no-scroll { overflow: hidden; }

/* ---------- Hero / carousel ---------- */
.pgfa-hero {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(180deg, #1a1a3f 0%, var(--pgfa-bg) 100%);
}
.pgfa-hero-track { position: relative; min-height: 360px; }
.pgfa-hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  padding: 30px 16px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.pgfa-hero-slide.pgfa-slide-active { opacity: 1; position: relative; }
.pgfa-hero-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 215, 0, .15);
  color: var(--pgfa-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: max-content;
}
.pgfa-hero h1 {
  font-size: 2rem;
  margin-bottom: 12px;
  background: linear-gradient(120deg, #FFF, var(--pgfa-gold) 60%, var(--pgfa-sand));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pgfa-hero p { color: var(--pgfa-text-dim); font-size: 14px; max-width: 540px; }
.pgfa-hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pgfa-hero-dots {
  position: absolute; bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
}
.pgfa-hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 215, 0, .35);
  cursor: pointer; transition: all .25s ease;
}
.pgfa-hero-dot.pgfa-dot-active { background: var(--pgfa-gold); width: 24px; border-radius: 4px; }

/* ---------- Stats strip ---------- */
.pgfa-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px 0;
}
.pgfa-stat {
  background: linear-gradient(135deg, rgba(255,215,0,.08), rgba(255,215,0,.02));
  border: 1px solid var(--pgfa-border);
  border-radius: var(--pgfa-radius);
  padding: 14px;
  text-align: center;
}
.pgfa-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--pgfa-gold);
  display: block;
}
.pgfa-stat-label { font-size: 11px; color: var(--pgfa-text-dim); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Section ---------- */
.pgfa-section { padding: 26px 0; }
.pgfa-section-head { text-align: center; margin-bottom: 18px; }
.pgfa-section-head h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.pgfa-section-head h2::after {
  content: "";
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--pgfa-gold-deep), var(--pgfa-gold));
  border-radius: 2px;
}
.pgfa-section-head p { color: var(--pgfa-text-dim); font-size: 13px; margin-top: 8px; }

/* ---------- Filter tabs ---------- */
.pgfa-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
}
.pgfa-filter-tab {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 215, 0, .06);
  color: var(--pgfa-text-dim);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all .2s ease;
}
.pgfa-filter-tab:hover { color: var(--pgfa-gold); }
.pgfa-filter-tab.pgfa-filter-active {
  background: linear-gradient(135deg, var(--pgfa-gold), var(--pgfa-gold-deep));
  color: var(--pgfa-bg);
}

/* ---------- Game grid ---------- */
.pgfa-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pgfa-game-card {
  background: var(--pgfa-bg-2);
  border: 1px solid var(--pgfa-border);
  border-radius: var(--pgfa-radius);
  overflow: hidden;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pgfa-game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pgfa-shadow);
  border-color: var(--pgfa-gold);
}
.pgfa-game-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0a0a1c;
  overflow: hidden;
}
.pgfa-game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.pgfa-game-card:hover .pgfa-game-thumb img { transform: scale(1.07); }
.pgfa-game-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,15,35,.85) 0%, transparent 55%);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 8px;
  opacity: 0;
  transition: opacity .2s ease;
}
.pgfa-game-card:hover .pgfa-game-overlay { opacity: 1; }
.pgfa-game-play {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--pgfa-gold), var(--pgfa-gold-deep));
  color: var(--pgfa-bg);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.pgfa-game-name {
  padding: 8px 10px;
  font-size: 12px;
  color: var(--pgfa-text);
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pgfa-game-tag {
  position: absolute; top: 6px; left: 6px;
  padding: 2px 7px;
  background: rgba(255, 215, 0, .85);
  color: var(--pgfa-bg);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ---------- Featured game (spotlight) ---------- */
.pgfa-spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: linear-gradient(135deg, rgba(184,134,11,.18), rgba(15,15,35,.6));
  border: 1px solid var(--pgfa-border);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 10px;
}
.pgfa-spotlight-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--pgfa-border);
}
.pgfa-spotlight-img img { width: 100%; height: 100%; object-fit: cover; }
.pgfa-spotlight-body h3 { color: var(--pgfa-gold); font-size: 1.15rem; margin-bottom: 6px; }
.pgfa-spotlight-body p { color: var(--pgfa-text-dim); font-size: 13px; margin-bottom: 12px; }
.pgfa-spotlight-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.pgfa-meta-chip {
  padding: 4px 10px;
  background: rgba(255, 215, 0, .1);
  color: var(--pgfa-gold);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

/* ---------- Feature / why-us ---------- */
.pgfa-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pgfa-feature {
  background: var(--pgfa-bg-2);
  border: 1px solid var(--pgfa-border);
  border-radius: var(--pgfa-radius);
  padding: 16px 12px;
  text-align: center;
  transition: transform .2s ease;
}
.pgfa-feature:hover { transform: translateY(-3px); }
.pgfa-feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,215,0,.18), rgba(184,134,11,.12));
  display: flex; align-items: center; justify-content: center;
  color: var(--pgfa-gold);
  font-size: 22px;
}
.pgfa-feature h4 { font-size: 13px; color: var(--pgfa-white); margin-bottom: 6px; }
.pgfa-feature p { font-size: 11px; color: var(--pgfa-text-dim); margin: 0; }

/* ---------- Promo / bonus card ---------- */
.pgfa-promo-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.pgfa-promo-card {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, rgba(184,134,11,.22), rgba(15,15,35,.7));
  border: 1px solid var(--pgfa-border);
  border-radius: var(--pgfa-radius);
  padding: 14px;
}
.pgfa-promo-icon {
  flex: 0 0 50px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pgfa-gold), var(--pgfa-gold-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--pgfa-bg);
  font-size: 22px;
}
.pgfa-promo-body { flex: 1; }
.pgfa-promo-body h4 { color: var(--pgfa-gold); font-size: 14px; margin-bottom: 4px; }
.pgfa-promo-body p { font-size: 12px; color: var(--pgfa-text-dim); margin: 0; }

/* ---------- Steps ---------- */
.pgfa-steps { display: grid; gap: 12px; counter-reset: step; }
.pgfa-step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--pgfa-bg-2);
  border: 1px solid var(--pgfa-border);
  border-radius: var(--pgfa-radius);
  padding: 14px;
}
.pgfa-step-num {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pgfa-gold), var(--pgfa-gold-deep));
  color: var(--pgfa-bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.pgfa-step-body h4 { color: var(--pgfa-white); font-size: 14px; margin-bottom: 4px; }
.pgfa-step-body p { font-size: 12px; color: var(--pgfa-text-dim); margin: 0; }

/* ---------- Long-form SEO content ---------- */
.pgfa-article {
  background: var(--pgfa-bg-2);
  border: 1px solid var(--pgfa-border);
  border-radius: var(--pgfa-radius);
  padding: 18px;
}
.pgfa-article h2 { color: var(--pgfa-gold); font-size: 1.2rem; margin-top: 14px; }
.pgfa-article h2:first-child { margin-top: 0; }
.pgfa-article h3 { color: var(--pgfa-sand); font-size: 1rem; margin-top: 12px; }
.pgfa-article p { color: var(--pgfa-text-dim); font-size: 13px; }
.pgfa-article strong { color: var(--pgfa-gold); }
.pgfa-article a { font-weight: 600; }

/* ---------- Tabs ---------- */
.pgfa-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.pgfa-tab {
  padding: 8px 14px;
  background: rgba(255, 215, 0, .07);
  color: var(--pgfa-text-dim);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.pgfa-tab.pgfa-tab-active {
  background: linear-gradient(135deg, var(--pgfa-gold), var(--pgfa-gold-deep));
  color: var(--pgfa-bg);
}
.pgfa-tab-panel { display: none; }
.pgfa-tab-panel.pgfa-panel-active { display: block; }

/* ---------- FAQ ---------- */
.pgfa-faq-item {
  background: var(--pgfa-bg-2);
  border: 1px solid var(--pgfa-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.pgfa-faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--pgfa-white);
}
.pgfa-faq-q .pgfa-faq-icon { color: var(--pgfa-gold); transition: transform .25s ease; }
.pgfa-faq-item.pgfa-faq-open .pgfa-faq-icon { transform: rotate(45deg); }
.pgfa-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 16px;
  color: var(--pgfa-text-dim);
  font-size: 13px;
}
.pgfa-faq-item.pgfa-faq-open .pgfa-faq-a { max-height: 480px; padding: 0 16px 14px; }

/* ---------- CTA banner ---------- */
.pgfa-cta-banner {
  background: linear-gradient(135deg, var(--pgfa-gold-deep), var(--pgfa-bg-3));
  border: 1px solid var(--pgfa-gold);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pgfa-cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,215,0,.25), transparent 60%);
}
.pgfa-cta-banner > * { position: relative; }
.pgfa-cta-banner h3 { color: var(--pgfa-white); font-size: 1.3rem; }
.pgfa-cta-banner p { color: var(--pgfa-text); font-size: 13px; }
.pgfa-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 12px; }

/* ---------- Footer ---------- */
.pgfa-footer {
  background: #08081a;
  border-top: 1px solid var(--pgfa-border);
  padding: 26px 0 12px;
  margin-top: 20px;
}
.pgfa-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.pgfa-footer-col h4 {
  color: var(--pgfa-gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.pgfa-footer-col ul { list-style: none; padding: 0; margin: 0; }
.pgfa-footer-col li { margin-bottom: 6px; }
.pgfa-footer-col a { color: var(--pgfa-text-dim); font-size: 12px; }
.pgfa-footer-col a:hover { color: var(--pgfa-gold); }
.pgfa-footer-col p { font-size: 12px; color: var(--pgfa-text-dim); }
.pgfa-footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, .08);
  padding-top: 12px;
  text-align: center;
  font-size: 11px;
  color: var(--pgfa-text-dim);
}
.pgfa-disclaimer {
  background: rgba(255, 0, 0, .05);
  border: 1px solid rgba(255, 100, 100, .2);
  border-radius: 10px;
  padding: 10px;
  font-size: 11px;
  color: var(--pgfa-text-dim);
  margin-top: 12px;
  grid-column: 1 / -1;
}

/* ---------- Bottom nav (mobile only) ---------- */
.pgfa-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--pgfa-nav-h);
  background: rgba(8, 8, 26, .98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--pgfa-border);
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
}
.pgfa-nav-btn {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px;
  color: var(--pgfa-text-dim);
  font-size: 10px;
  font-weight: 600;
  min-width: 60px;
  min-height: 60px;
  position: relative;
  transition: color .2s ease;
}
.pgfa-nav-btn .pgfa-nav-icon { font-size: 22px; line-height: 1; }
.pgfa-nav-btn.pgfa-nav-cta .pgfa-nav-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pgfa-gold), var(--pgfa-gold-deep));
  color: var(--pgfa-bg);
  display: flex; align-items: center; justify-content: center;
  margin-top: -22px;
  box-shadow: 0 4px 14px rgba(255, 215, 0, .5);
  border: 3px solid #08081a;
}
.pgfa-nav-btn:hover, .pgfa-nav-btn:active { color: var(--pgfa-gold); }
.pgfa-nav-btn.pgfa-nav-active { color: var(--pgfa-gold); }
.pgfa-nav-btn.pgfa-nav-active::before {
  content: "";
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 3px;
  background: var(--pgfa-gold);
  border-radius: 0 0 4px 4px;
}

/* ---------- Back to top ---------- */
.pgfa-top-btn {
  position: fixed;
  right: 14px; bottom: calc(var(--pgfa-nav-h) + 14px);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pgfa-gold), var(--pgfa-gold-deep));
  color: var(--pgfa-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 999;
  box-shadow: var(--pgfa-shadow);
}
.pgfa-top-btn.pgfa-top-show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Desktop nav (hidden on mobile) ---------- */
.pgfa-desktop-nav { display: none; }
.pgfa-desktop-nav ul {
  display: flex; gap: 18px;
  list-style: none; padding: 0; margin: 0;
}
.pgfa-desktop-nav a {
  color: var(--pgfa-text);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
}
.pgfa-desktop-nav a:hover { color: var(--pgfa-gold); border-bottom-color: var(--pgfa-gold); }

/* ---------- Responsive ---------- */
@media (min-width: 600px) {
  .pgfa-game-grid { grid-template-columns: repeat(4, 1fr); }
  .pgfa-feature-grid { grid-template-columns: repeat(3, 1fr); }
  .pgfa-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 769px) {
  .pgfa-bottom-nav { display: none; }
  .pgfa-mainwrap { padding-bottom: 20px; }
  .pgfa-menu-btn { display: none; }
  .pgfa-desktop-nav { display: block; }
  .pgfa-game-grid { grid-template-columns: repeat(5, 1fr); }
  .pgfa-promo-row { grid-template-columns: repeat(2, 1fr); }
  .pgfa-footer-grid { grid-template-columns: repeat(4, 1fr); }
  .pgfa-spotlight { grid-template-columns: 1fr 1.4fr; align-items: center; }
  .pgfa-hero h1 { font-size: 2.6rem; }
  .pgfa-hero-track { min-height: 400px; }
}
@media (min-width: 992px) {
  .pgfa-game-grid { grid-template-columns: repeat(6, 1fr); }
  .pgfa-feature-grid { grid-template-columns: repeat(4, 1fr); }
}
