/* ============================================================
 * abc8 casino - theme-20ed.css
 * Theme stylesheet (prefix: pg20-)
 * Mobile-first, max-width 430px container.
 * Palette: #90EE90 | #006400 | #66CDAA | #212F3D | #F5F5F5 | #ADB5BD
 * ============================================================ */

:root {
  --pg20-primary: #006400;
  --pg20-accent: #90EE90;
  --pg20-teal: #66CDAA;
  --pg20-bg: #212F3D;
  --pg20-bg-dark: #18222c;
  --pg20-bg-card: #243341;
  --pg20-bg-soft: #2c3e50;
  --pg20-text: #F5F5F5;
  --pg20-muted: #ADB5BD;
  --pg20-gold: #ffd76b;
  --pg20-danger: #ef5350;
  --pg20-radius: 14px;
  --pg20-radius-sm: 10px;
  --pg20-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  --pg20-shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.22);
}

/* Root font sizing: 62.5% → 1rem = 10px */
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--pg20-bg);
  color: var(--pg20-text);
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  line-height: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--pg20-accent); text-decoration: none; }
a:hover, a:focus { color: var(--pg20-teal); text-decoration: underline; }

body.pg20-no-scroll { overflow: hidden; }

/* Layout helpers */
.pg20-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
}
.pg20-wrapper { padding: 1rem 0; }
.pg20-grid { display: grid; gap: 1rem; }

/* Skip link */
.pg20-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--pg20-primary);
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 0 0 var(--pg20-radius-sm) 0;
  z-index: 2000;
}
.pg20-skip:focus { left: 0; }

/* ------------------------------------------------------------
 * Header
 * ------------------------------------------------------------ */
.pg20-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #00420a 0%, #006400 45%, #1c5e3e 100%);
  border-bottom: 2px solid var(--pg20-accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.pg20-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 56px;
}
.pg20-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  flex: 1;
  min-width: 0;
}
.pg20-logo img,
.pg20-logo .pg20-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--pg20-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pg20-primary);
  font-weight: 800;
  font-size: 1.4rem;
}
.pg20-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1rem;
  min-width: 0;
}
.pg20-logo-text strong {
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.3px;
}
.pg20-logo-text span {
  font-size: 1rem;
  color: var(--pg20-accent);
}

.pg20-header-actions { display: flex; align-items: center; gap: 0.5rem; }

.pg20-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 38px;
  line-height: 1;
}
.pg20-btn:focus { outline: 2px solid var(--pg20-accent); outline-offset: 2px; }
.pg20-btn:hover { text-decoration: none; transform: translateY(-1px); }
.pg20-btn:active { transform: translateY(0); }
.pg20-btn-register {
  background: linear-gradient(135deg, #ffd76b 0%, #ffb347 100%);
  color: #4a2b00;
  box-shadow: 0 4px 12px rgba(255, 200, 70, 0.35);
}
.pg20-btn-login {
  background: transparent;
  color: #fff;
  border: 2px solid var(--pg20-accent);
}
.pg20-btn-primary {
  background: linear-gradient(135deg, var(--pg20-accent) 0%, var(--pg20-teal) 100%);
  color: #06310a;
  box-shadow: var(--pg20-shadow-soft);
}
.pg20-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--pg20-text);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.pg20-btn-block { width: 100%; }
.pg20-btn-lg { padding: 1rem 1.4rem; font-size: 1.4rem; }

.pg20-menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------------------------------------------
 * Mobile menu (slide-in)
 * ------------------------------------------------------------ */
.pg20-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 9998;
}
.pg20-menu-backdrop.pg20-backdrop-show { opacity: 1; visibility: visible; }

.pg20-mobile-menu {
  position: fixed;
  top: 0; right: -85%;
  width: 82%;
  max-width: 340px;
  height: 100vh;
  background: var(--pg20-bg-dark);
  z-index: 9999;
  padding: 1.4rem 1.2rem;
  overflow-y: auto;
  transition: right 0.3s ease;
  border-left: 2px solid var(--pg20-accent);
}
.pg20-mobile-menu.pg20-menu-open { right: 0; }
.pg20-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.pg20-menu-head strong { color: var(--pg20-accent); font-size: 1.6rem; }
.pg20-menu-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff; border: none; cursor: pointer; font-size: 1.6rem;
}
.pg20-menu-list { list-style: none; padding: 0; margin: 0; }
.pg20-menu-list li { margin-bottom: 0.5rem; }
.pg20-menu-list a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: var(--pg20-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--pg20-text);
  font-size: 1.3rem;
  font-weight: 600;
}
.pg20-menu-list a:hover { background: var(--pg20-primary); color: #fff; text-decoration: none; }
.pg20-menu-list .material-icons,
.pg20-menu-list .ion { font-size: 1.8rem; color: var(--pg20-accent); }

/* ------------------------------------------------------------
 * Main / hero
 * ------------------------------------------------------------ */
.pg20-main { padding-top: 72px; padding-bottom: 0; }
@media (max-width: 768px) {
  .pg20-main { padding-bottom: 88px; }
}

.pg20-hero {
  background: radial-gradient(circle at 30% 20%, rgba(144, 238, 144, 0.18), transparent 60%),
              linear-gradient(160deg, #0f3d1f 0%, #212F3D 60%, #1a2a38 100%);
  padding: 1.6rem 1.2rem 2rem;
  border-radius: 0 0 24px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pg20-hero h1 {
  font-size: 2.2rem;
  line-height: 1.25;
  margin: 0.4rem 0 0.6rem;
  color: #fff;
}
.pg20-hero .pg20-hero-tag {
  display: inline-block;
  background: rgba(144, 238, 144, 0.18);
  color: var(--pg20-accent);
  border: 1px solid rgba(144, 238, 144, 0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.pg20-hero p {
  color: var(--pg20-muted);
  font-size: 1.25rem;
  margin: 0 auto 1rem;
  max-width: 380px;
}
.pg20-hero-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
 * Carousel
 * ------------------------------------------------------------ */
.pg20-carousel {
  position: relative;
  border-radius: var(--pg20-radius);
  overflow: hidden;
  margin: 1.4rem 0;
  box-shadow: var(--pg20-shadow);
}
.pg20-carousel-track { position: relative; }
.pg20-carousel-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.pg20-carousel-slide.pg20-slide-active { display: block; }
.pg20-carousel-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.pg20-carousel-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.pg20-carousel-caption span { display: block; font-size: 1.05rem; color: var(--pg20-accent); font-weight: 600; }
.pg20-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.pg20-carousel-arrow:hover { background: var(--pg20-primary); }
.pg20-carousel-prev { left: 8px; }
.pg20-carousel-next { right: 8px; }
.pg20-carousel-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
  z-index: 2;
}
.pg20-carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none; padding: 0; cursor: pointer;
}
.pg20-carousel-dot.pg20-dot-active { background: var(--pg20-accent); width: 22px; border-radius: 6px; }

/* ------------------------------------------------------------
 * Section heads
 * ------------------------------------------------------------ */
.pg20-section { padding: 1.2rem 0; }
.pg20-section-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.pg20-section-head .pg20-section-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(144, 238, 144, 0.15);
  color: var(--pg20-accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.pg20-section-head h2 {
  font-size: 1.55rem;
  margin: 0;
  color: #fff;
  flex: 1;
}
.pg20-section-head .pg20-section-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pg20-accent);
}
.pg20-section-sub {
  color: var(--pg20-muted);
  font-size: 1.2rem;
  margin: 0 0 0.9rem;
}

/* Category tabs */
.pg20-cat-tabs {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.2rem 0 0.6rem;
  scrollbar-width: none;
}
.pg20-cat-tabs::-webkit-scrollbar { display: none; }
.pg20-cat-tab {
  flex: 0 0 auto;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--pg20-muted);
  font-size: 1.15rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
}
.pg20-cat-tab.pg20-cat-active {
  background: linear-gradient(135deg, var(--pg20-accent), var(--pg20-teal));
  color: #06310a;
  border-color: transparent;
}
.pg20-section-hidden { display: none !important; }

/* ------------------------------------------------------------
 * Game grid
 * ------------------------------------------------------------ */
.pg20-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.pg20-game-card {
  background: var(--pg20-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--pg20-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.pg20-game-card:hover {
  transform: translateY(-2px);
  border-color: var(--pg20-accent);
  box-shadow: var(--pg20-shadow-soft);
  text-decoration: none;
}
.pg20-game-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0d1722;
  overflow: hidden;
}
.pg20-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pg20-game-badge {
  position: absolute;
  top: 6px; left: 6px;
  background: var(--pg20-gold);
  color: #3a2400;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
}
.pg20-game-badge.pg20-badge-hot { background: var(--pg20-danger); color: #fff; }
.pg20-game-name {
  font-size: 1.05rem;
  color: var(--pg20-text);
  text-align: center;
  padding: 0.45rem 0.3rem;
  font-weight: 600;
  line-height: 1.15rem;
  min-height: 34px;
  display: flex; align-items: center; justify-content: center;
}

/* Featured block */
.pg20-feature {
  background: linear-gradient(135deg, rgba(0,100,0,0.45), rgba(102,205,170,0.18));
  border: 1px solid rgba(144,238,144,0.25);
  border-radius: var(--pg20-radius);
  padding: 1.1rem;
  margin: 1rem 0;
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.pg20-feature-icon {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--pg20-accent);
  color: var(--pg20-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
}
.pg20-feature-text h3 { margin: 0 0 0.3rem; font-size: 1.35rem; color: #fff; }
.pg20-feature-text p { margin: 0; font-size: 1.15rem; color: var(--pg20-muted); }

/* ------------------------------------------------------------
 * Cards / panels
 * ------------------------------------------------------------ */
.pg20-card {
  background: var(--pg20-bg-card);
  border-radius: var(--pg20-radius);
  padding: 1.1rem;
  margin: 0.8rem 0;
  box-shadow: var(--pg20-shadow-soft);
  border: 1px solid rgba(255,255,255,0.05);
}
.pg20-card h3 { margin: 0 0 0.5rem; font-size: 1.4rem; color: #fff; }
.pg20-card p { margin: 0 0 0.6rem; font-size: 1.18rem; color: var(--pg20-muted); }

.pg20-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.pg20-stat {
  background: rgba(255,255,255,0.05);
  border-radius: var(--pg20-radius-sm);
  padding: 0.8rem;
  text-align: center;
}
.pg20-stat strong { display: block; font-size: 1.6rem; color: var(--pg20-accent); }
.pg20-stat span { font-size: 1.05rem; color: var(--pg20-muted); }

/* Steps */
.pg20-steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.pg20-steps li {
  position: relative;
  padding: 0.7rem 0.7rem 0.7rem 3rem;
  margin-bottom: 0.55rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--pg20-radius-sm);
  font-size: 1.18rem;
  counter-increment: step;
}
.pg20-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.7rem; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--pg20-accent);
  color: var(--pg20-primary);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}

/* FAQ */
.pg20-faq-item {
  background: var(--pg20-bg-card);
  border-radius: var(--pg20-radius-sm);
  margin-bottom: 0.55rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.pg20-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #fff;
  padding: 1rem 1.1rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 0.6rem;
}
.pg20-faq-q .pg20-faq-icon { color: var(--pg20-accent); transition: transform 0.2s; }
.pg20-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.1rem;
  color: var(--pg20-muted);
  font-size: 1.13rem;
}
.pg20-faq-item.pg20-faq-open .pg20-faq-a { max-height: 320px; padding: 0 1.1rem 1rem; }
.pg20-faq-item.pg20-faq-open .pg20-faq-icon { transform: rotate(45deg); }

/* Testimonial / review */
.pg20-review {
  background: var(--pg20-bg-card);
  border-radius: var(--pg20-radius-sm);
  padding: 0.9rem;
  margin-bottom: 0.6rem;
  border-left: 3px solid var(--pg20-accent);
}
.pg20-review-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem; }
.pg20-review-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--pg20-primary);
  color: var(--pg20-accent);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.pg20-review-stars { color: var(--pg20-gold); font-size: 1.1rem; }
.pg20-review p { margin: 0; font-size: 1.13rem; color: var(--pg20-text); }
.pg20-review-meta { font-size: 1rem; color: var(--pg20-muted); }

/* Winners */
.pg20-winner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.04);
  padding: 0.55rem 0.8rem;
  border-radius: var(--pg20-radius-sm);
  margin-bottom: 0.4rem;
  font-size: 1.13rem;
}
.pg20-winner strong { color: var(--pg20-gold); }
.pg20-winner small { color: var(--pg20-muted); }

/* Payment chips */
.pg20-pay-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.pg20-pay-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--pg20-text);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* SEO text */
.pg20-seo-text {
  font-size: 1.18rem;
  color: var(--pg20-muted);
  line-height: 1.65rem;
}
.pg20-seo-text h2, .pg20-seo-text h3 { color: #fff; }
.pg20-seo-text p { margin: 0 0 0.8rem; }
.pg20-seo-text a { font-weight: 700; }
.pg20-inline-link {
  color: var(--pg20-accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Promo CTA band */
.pg20-cta-band {
  background: linear-gradient(135deg, var(--pg20-primary), #0a3d20);
  border: 1px solid var(--pg20-accent);
  border-radius: var(--pg20-radius);
  padding: 1.2rem;
  text-align: center;
  margin: 1rem 0;
}
.pg20-cta-band h3 { margin: 0 0 0.4rem; color: #fff; font-size: 1.45rem; }
.pg20-cta-band p { margin: 0 0 0.8rem; color: var(--pg20-accent); font-size: 1.15rem; }

/* App download */
.pg20-app-card {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--pg20-bg-card);
  padding: 1rem; border-radius: var(--pg20-radius);
  margin: 0.8rem 0;
}
.pg20-app-icon { font-size: 3rem; color: var(--pg20-accent); }
.pg20-app-card h3 { margin: 0 0 0.2rem; font-size: 1.35rem; color: #fff; }
.pg20-app-card p { margin: 0; color: var(--pg20-muted); font-size: 1.12rem; }
.pg20-app-buttons { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.5rem; }

/* Back to top */
.pg20-to-top {
  position: fixed;
  right: 14px; bottom: 92px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pg20-primary);
  color: #fff;
  border: 2px solid var(--pg20-accent);
  cursor: pointer;
  font-size: 1.7rem;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 1100;
  display: flex; align-items: center; justify-content: center;
}
.pg20-to-top.pg20-top-show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------ */
.pg20-footer {
  background: var(--pg20-bg-dark);
  border-top: 2px solid var(--pg20-primary);
  padding: 1.4rem 1.2rem 2rem;
  margin-top: 1rem;
  color: var(--pg20-muted);
  font-size: 1.12rem;
}
.pg20-footer-brand { color: var(--pg20-text); margin-bottom: 0.6rem; }
.pg20-footer-brand strong { color: var(--pg20-accent); }
.pg20-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem 0.8rem;
  margin: 0.8rem 0;
}
.pg20-footer-links a { color: var(--pg20-muted); font-size: 1.1rem; }
.pg20-footer-promos { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.6rem 0; }
.pg20-footer-promos button {
  background: linear-gradient(135deg, var(--pg20-accent), var(--pg20-teal));
  color: #06310a;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
}
.pg20-footer-copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.7rem;
  margin-top: 0.7rem;
  font-size: 1.05rem;
  color: var(--pg20-muted);
}

/* ------------------------------------------------------------
 * Mobile bottom navigation (5 buttons)
 * ------------------------------------------------------------ */
.pg20-bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 62px;
  background: linear-gradient(180deg, #0a3d20 0%, #062814 100%);
  border-top: 2px solid var(--pg20-accent);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.4);
}
.pg20-bottom-nav a,
.pg20-bottom-nav button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: transparent;
  border: none;
  color: var(--pg20-muted);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  min-width: 60px;
  min-height: 60px;
  cursor: pointer;
  padding: 4px 2px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.pg20-bottom-nav a:hover,
.pg20-bottom-nav button:hover { text-decoration: none; transform: translateY(-1px); }
.pg20-bottom-nav .pg20-bn-icon { font-size: 2.2rem; line-height: 1; }
.pg20-bottom-nav .pg20-bn-icon.material-icons { font-size: 2.4rem; }
.pg20-bottom-nav .pg20-bn-label { font-size: 1rem; line-height: 1; }
.pg20-bottom-nav .pg20-bn-current { color: var(--pg20-accent); }
.pg20-bottom-nav .pg20-bn-current .pg20-bn-icon { color: var(--pg20-accent); }
.pg20-bottom-nav .pg20-bn-promo { color: var(--pg20-gold); }
.pg20-bottom-nav .pg20-bn-promo .pg20-bn-icon { color: var(--pg20-gold); }
.pg20-bottom-nav .pg20-bn-badge {
  display: inline-block;
  background: var(--pg20-danger);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 8px;
  padding: 0 5px;
  margin-left: 2px;
}

/* Desktop: hide bottom nav, widen container */
@media (min-width: 769px) {
  .pg20-bottom-nav { display: none; }
  .pg20-container { max-width: 760px; }
  .pg20-header-inner { max-width: 760px; }
  body { padding-bottom: 0; }
}

@media (min-width: 431px) and (max-width: 768px) {
  .pg20-bottom-nav { max-width: 430px; left: 50%; transform: translateX(-50%); border-radius: 14px 14px 0 0; }
}

/* Utility */
.pg20-text-accent { color: var(--pg20-accent); }
.pg20-text-gold { color: var(--pg20-gold); }
.pg20-mt-1 { margin-top: 0.5rem; }
.pg20-mt-2 { margin-top: 1rem; }
.pg20-center { text-align: center; }
.pg20-hidden { display: none !important; }
