/* ============================================================
   nustar apk - Core Stylesheet (Basefiles)
   All custom classes use the dynamic prefix "g162-".
   Palette: #B8860B (gold) | #EEEEEE (light) | #2E4057 (deep bg)
            #FFB347 (amber) | #00FF00 (accent green)
   Mobile-first: max-width 430px design target.
   Comments are in English.
   ============================================================ */

/* ---------- CSS Variables (prefixed) ---------- */
:root {
  --g162-primary: #B8860B;       /* Dark goldenrod - brand gold */
  --g162-bg: #2E4057;            /* Deep slate blue - background */
  --g162-text: #EEEEEE;          /* Light gray - text */
  --g162-amber: #FFB347;         /* Soft amber - accent */
  --g162-accent: #00FF00;        /* Neon green - highlight */
  --g162-bg-dark: #1d2a3a;       /* Darker shade for cards */
  --g162-bg-darker: #15202b;     /* Deepest background */
  --g162-gold-soft: #c79a3a;     /* Soft gold for borders */
  --g162-radius: 10px;
  --g162-radius-lg: 16px;
  --g162-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  --g162-shadow-gold: 0 4px 18px rgba(184, 134, 11, 0.35);
  --g162-transition: 0.28s ease;
  --g162-header-h: 56px;
  --g162-bottomnav-h: 60px;
}

/* ---------- Reset & Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--g162-bg-darker);
  color: var(--g162-text);
  line-height: 1.6;
  font-size: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Root font sizing: 62.5% => 1rem = 10px */
html { font-size: 62.5%; }

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

a { color: var(--g162-amber); text-decoration: none; transition: color var(--g162-transition); }
a:hover, a:focus { color: var(--g162-accent); }

h1, h2, h3, h4 { line-height: 1.35; color: #fff; font-weight: 700; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.4rem; }
p  { margin-bottom: 1rem; }

ul, ol { margin: 0 0 1rem 1.6rem; }
li { margin-bottom: 0.4rem; }

/* ---------- Layout helpers (prefixed) ---------- */
.g162-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.g162-wrapper {
  padding: 1.4rem 0;
}
.g162-section {
  padding: 2.2rem 0;
  border-top: 1px solid rgba(184, 134, 11, 0.18);
}
.g162-section:first-of-type { border-top: none; }

.g162-grid {
  display: grid;
  gap: 0.9rem;
}
.g162-text-center { text-align: center; }
.g162-amber-text { color: var(--g162-amber); }
.g162-gold-text { color: var(--g162-primary); }
.g162-green-text { color: var(--g162-accent); }
.g162-bold { font-weight: 700; }
.g162-lead {
  font-size: 1.6rem;
  color: #d7d7d7;
  margin-bottom: 1rem;
}

/* ---------- Header (prefixed) ---------- */
.g162-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--g162-header-h);
  background: linear-gradient(90deg, #1d2a3a 0%, #2E4057 60%, #1d2a3a 100%);
  border-bottom: 2px solid var(--g162-primary);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.g162-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}
.g162-logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}
.g162-logo-text {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--g162-primary);
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g162-header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.g162-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: var(--g162-radius);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--g162-transition), background var(--g162-transition), box-shadow var(--g162-transition);
  min-height: 40px;
  text-align: center;
}
.g162-btn:active { transform: scale(0.96); }
.g162-btn-primary {
  background: linear-gradient(135deg, var(--g162-primary), var(--g162-amber));
  color: #1d2a3a;
  box-shadow: var(--g162-shadow-gold);
}
.g162-btn-primary:hover { color: #1d2a3a; filter: brightness(1.08); }
.g162-btn-outline {
  background: transparent;
  color: var(--g162-amber);
  border: 1.5px solid var(--g162-amber);
}
.g162-btn-outline:hover { color: var(--g162-accent); border-color: var(--g162-accent); }
.g162-btn-green {
  background: linear-gradient(135deg, #00b300, var(--g162-accent));
  color: #102010;
  box-shadow: 0 4px 14px rgba(0, 255, 0, 0.3);
}
.g162-btn-green:hover { color: #102010; filter: brightness(1.08); }
.g162-btn-block { display: flex; width: 100%; }

.g162-menu-btn {
  background: transparent;
  border: none;
  color: var(--g162-amber);
  font-size: 2rem;
  cursor: pointer;
  padding: 0 0.4rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Mobile menu (prefixed) ---------- */
.g162-mobile-menu {
  position: fixed;
  top: var(--g162-header-h);
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: #1d2a3a;
  border-bottom: 2px solid var(--g162-primary);
  z-index: 9999;
  transform: translateY(-130%);
  transition: transform var(--g162-transition);
  padding: 0.6rem 1rem 1rem;
  max-height: 75vh;
  overflow-y: auto;
}
.g162-mobile-menu.g162-menu-open { transform: translateY(0); }
.g162-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.g162-mobile-menu li { margin: 0; }
.g162-mobile-menu a {
  display: block;
  padding: 0.9rem 0.8rem;
  color: var(--g162-text);
  border-bottom: 1px solid rgba(184, 134, 11, 0.12);
  font-size: 1.4rem;
  font-weight: 600;
}
.g162-mobile-menu a:hover { background: rgba(184, 134, 11, 0.1); color: var(--g162-amber); }
.g162-mobile-menu .g162-menu-cta {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.6rem;
}
.g162-mobile-menu .g162-btn { flex: 1; }

/* ---------- Hero / Carousel (prefixed) ---------- */
.g162-hero {
  margin-top: calc(var(--g162-header-h) + 0.8rem);
  padding: 0 0 0.6rem;
}
.g162-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--g162-radius-lg);
  overflow: hidden;
  box-shadow: var(--g162-shadow);
}
.g162-slides { position: relative; width: 100%; aspect-ratio: 16 / 9; }
.g162-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--g162-carousel-transition, 480ms) ease;
  cursor: pointer;
}
.g162-slide img { width: 100%; height: 100%; object-fit: cover; }
.g162-slide.g162-active { opacity: 1; }
.g162-slide-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.2rem 1.4rem;
  background: linear-gradient(to top, rgba(21, 32, 43, 0.92), rgba(21, 32, 43, 0));
}
.g162-slide-overlay h2 { color: #fff; font-size: 1.7rem; margin-bottom: 0.2rem; }
.g162-slide-overlay p { color: var(--g162-amber); font-size: 1.25rem; margin: 0; }
.g162-dots {
  position: absolute;
  bottom: 0.6rem;
  right: 0.8rem;
  display: flex;
  gap: 0.4rem;
}
.g162-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
}
.g162-dot.g162-dot-active { background: var(--g162-accent); transform: scale(1.25); }

/* ---------- Headings / Eyebrows ---------- */
.g162-eyebrow {
  display: inline-block;
  font-size: 1.1rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--g162-amber);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.g162-h1 {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.g162-h2 {
  font-size: 1.9rem;
  color: var(--g162-primary);
  margin-bottom: 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(184, 134, 11, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.g162-h3 { font-size: 1.55rem; color: var(--g162-amber); margin-bottom: 0.5rem; }

/* ---------- Filter chips (prefixed) ---------- */
.g162-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.6rem 0 1rem;
}
.g162-chip {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #1d2a3a;
  color: var(--g162-text);
  border: 1px solid rgba(184, 134, 11, 0.3);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--g162-transition);
}
.g162-chip.g162-chip-active {
  background: linear-gradient(135deg, var(--g162-primary), var(--g162-amber));
  color: #1d2a3a;
  border-color: var(--g162-primary);
}
.g162-chip:hover { color: var(--g162-accent); border-color: var(--g162-accent); }
.g162-chip.g162-chip-active:hover { color: #1d2a3a; }

/* ---------- Game sections & grid (prefixed) ---------- */
.g162-game-section { margin-bottom: 2.2rem; }
.g162-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.g162-game-card {
  background: var(--g162-bg-dark);
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: var(--g162-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--g162-transition), border-color var(--g162-transition), box-shadow var(--g162-transition);
  display: flex;
  flex-direction: column;
}
.g162-game-card:hover {
  transform: translateY(-3px);
  border-color: var(--g162-primary);
  box-shadow: var(--g162-shadow-gold);
}
.g162-game-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0f1822;
}
.g162-game-card-name {
  font-size: 1.15rem;
  color: var(--g162-text);
  padding: 0.5rem 0.4rem;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-top: 1px solid rgba(184, 134, 11, 0.12);
}

/* ---------- Cards (prefixed) ---------- */
.g162-card {
  background: var(--g162-bg-dark);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--g162-radius-lg);
  padding: 1.3rem;
  margin-bottom: 1rem;
  box-shadow: var(--g162-shadow);
}
.g162-card-gold {
  border-color: var(--g162-primary);
  background: linear-gradient(135deg, #1d2a3a 0%, #243646 100%);
}
.g162-card-title {
  color: var(--g162-amber);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.g162-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.g162-mini-card {
  background: #15202b;
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: var(--g162-radius);
  padding: 1rem 0.8rem;
  text-align: center;
}
.g162-mini-card .material-icons,
.g162-mini-card .bi,
.g162-mini-card ion-icon {
  font-size: 2.4rem;
  color: var(--g162-amber);
  margin-bottom: 0.3rem;
}
.g162-mini-card h4 { color: #fff; font-size: 1.3rem; margin-bottom: 0.2rem; }
.g162-mini-card p { font-size: 1.15rem; color: #c9c9c9; margin: 0; }

/* ---------- RTP / Stats table (prefixed) ---------- */
.g162-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
.g162-rtp-table th,
.g162-rtp-table td {
  border: 1px solid rgba(184, 134, 11, 0.2);
  padding: 0.6rem 0.5rem;
  text-align: center;
}
.g162-rtp-table th {
  background: rgba(184, 134, 11, 0.18);
  color: var(--g162-amber);
  font-weight: 700;
}
.g162-rtp-table td { color: var(--g162-text); }
.g162-rtp-bar {
  height: 8px;
  background: #15202b;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.3rem;
}
.g162-rtp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--g162-primary), var(--g162-accent));
}

/* ---------- Steps / Lists (prefixed) ---------- */
.g162-steps { list-style: none; margin: 0; padding: 0; counter-reset: g162step; }
.g162-steps li {
  counter-increment: g162step;
  position: relative;
  padding: 0.6rem 0.6rem 0.6rem 3rem;
  margin-bottom: 0.6rem;
  background: #15202b;
  border-radius: var(--g162-radius);
  border-left: 3px solid var(--g162-primary);
}
.g162-steps li::before {
  content: counter(g162step);
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: linear-gradient(135deg, var(--g162-primary), var(--g162-amber));
  color: #1d2a3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.g162-checklist { list-style: none; margin: 0; padding: 0; }
.g162-checklist li {
  padding: 0.4rem 0 0.4rem 1.8rem;
  position: relative;
}
.g162-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: var(--g162-accent);
  font-weight: 800;
}

/* ---------- Testimonials (prefixed) ---------- */
.g162-testimonial {
  background: var(--g162-bg-dark);
  border-radius: var(--g162-radius-lg);
  padding: 1.1rem;
  margin-bottom: 0.8rem;
  border-left: 4px solid var(--g162-amber);
}
.g162-testimonial-stars { color: var(--g162-primary); margin-bottom: 0.3rem; font-size: 1.3rem; }
.g162-testimonial p { font-size: 1.3rem; color: #d7d7d7; margin-bottom: 0.5rem; }
.g162-testimonial-author { font-size: 1.15rem; color: var(--g162-amber); font-weight: 700; }

/* ---------- Payment methods (prefixed) ---------- */
.g162-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.g162-pay-item {
  background: #15202b;
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: var(--g162-radius);
  padding: 0.8rem 0.4rem;
  text-align: center;
}
.g162-pay-item .material-icons,
.g162-pay-item .bi,
.g162-pay-item ion-icon { font-size: 2.2rem; color: var(--g162-amber); }
.g162-pay-item span { display: block; font-size: 1.1rem; color: #c9c9c9; margin-top: 0.2rem; }

/* ---------- Winners showcase (prefixed) ---------- */
.g162-winner {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #15202b;
  border: 1px solid rgba(0, 255, 0, 0.18);
  border-radius: var(--g162-radius);
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.6rem;
}
.g162-winner-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g162-primary), var(--g162-amber));
  display: flex; align-items: center; justify-content: center;
  color: #1d2a3a; font-weight: 800; font-size: 1.2rem; flex-shrink: 0;
}
.g162-winner-info { flex: 1; min-width: 0; }
.g162-winner-info span { display: block; }
.g162-winner-name { font-size: 1.2rem; color: #fff; font-weight: 600; }
.g162-winner-game { font-size: 1.05rem; color: #c9c9c9; }
.g162-winner-amount { font-size: 1.3rem; color: var(--g162-accent); font-weight: 800; }

/* ---------- FAQ (prefixed) ---------- */
.g162-faq-item {
  background: var(--g162-bg-dark);
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: var(--g162-radius);
  margin-bottom: 0.6rem;
  padding: 0.9rem 1rem;
}
.g162-faq-item h3 { color: var(--g162-amber); font-size: 1.35rem; margin-bottom: 0.4rem; }
.g162-faq-item p { font-size: 1.25rem; color: #cfcfcf; margin: 0; }

/* ---------- App download CTA (prefixed) ---------- */
.g162-app-cta {
  background: linear-gradient(135deg, #1d2a3a 0%, #2E4057 100%);
  border: 1px solid var(--g162-primary);
  border-radius: var(--g162-radius-lg);
  padding: 1.4rem;
  text-align: center;
}
.g162-app-cta h3 { color: #fff; font-size: 1.7rem; margin-bottom: 0.4rem; }
.g162-app-cta p { color: #d7d7d7; margin-bottom: 1rem; }
.g162-app-cta .g162-btn { margin: 0.3rem auto; }

/* ---------- Promo banner (prefixed) ---------- */
.g162-promo-banner {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.25), rgba(0, 255, 0, 0.12));
  border: 1px solid var(--g162-primary);
  border-radius: var(--g162-radius-lg);
  padding: 1.2rem;
  text-align: center;
  margin-bottom: 1.2rem;
}
.g162-promo-banner h3 { color: var(--g162-amber); font-size: 1.6rem; margin-bottom: 0.3rem; }
.g162-promo-banner p { font-size: 1.25rem; color: #e5e5e5; margin-bottom: 0.8rem; }

/* ---------- Footer (prefixed) ---------- */
.g162-footer {
  background: #15202b;
  border-top: 2px solid var(--g162-primary);
  padding: 1.8rem 1.2rem 2.4rem;
  margin-top: 1rem;
}
.g162-footer-brand {
  font-size: 1.5rem;
  color: var(--g162-primary);
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.g162-footer-desc { font-size: 1.2rem; color: #bfbfbf; margin-bottom: 1rem; }
.g162-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  margin-bottom: 1rem;
}
.g162-footer-links a {
  font-size: 1.15rem;
  color: #c9c9c9;
  border: 1px solid rgba(184, 134, 11, 0.22);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.g162-footer-links a:hover { color: var(--g162-accent); border-color: var(--g162-accent); }
.g162-footer-copy {
  font-size: 1.1rem;
  color: #888;
  text-align: center;
  border-top: 1px solid rgba(184, 134, 11, 0.15);
  padding-top: 0.8rem;
}

/* ---------- Back to top (prefixed) ---------- */
.g162-top-btn {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--g162-bottomnav-h) + 0.8rem);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g162-primary), var(--g162-amber));
  color: #1d2a3a;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--g162-transition);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--g162-shadow-gold);
}
.g162-top-btn.g162-top-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Mobile bottom nav (prefixed) ---------- */
.g162-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--g162-bottomnav-h);
  background: linear-gradient(90deg, #1d2a3a 0%, #2E4057 50%, #1d2a3a 100%);
  border-top: 2px solid var(--g162-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.5);
}
.g162-nav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--g162-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  cursor: pointer;
  transition: color var(--g162-transition), transform var(--g162-transition);
  position: relative;
  padding: 0.2rem;
}
.g162-nav-btn .material-icons,
.g162-nav-btn .bi,
.g162-nav-btn ion-icon,
.g162-nav-btn .fas,
.g162-nav-btn .far,
.g162-nav-btn .fad {
  font-size: 2.2rem;
}
.g162-nav-btn span.g162-nav-label {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.g162-nav-btn:hover { color: var(--g162-amber); }
.g162-nav-btn:active { transform: scale(0.92); }
.g162-nav-btn.g162-nav-active { color: var(--g162-accent); }
.g162-nav-btn.g162-nav-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--g162-accent);
  border-radius: 0 0 4px 4px;
}
.g162-nav-promo { color: var(--g162-amber); }
.g162-nav-badge {
  position: absolute;
  top: 0.25rem;
  right: 1.1rem;
  background: #ff3b3b;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0 0.35rem;
  min-width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Inline link styles (prefixed) ---------- */
.g162-link {
  color: var(--g162-amber);
  font-weight: 700;
  border-bottom: 1px dashed rgba(255, 179, 71, 0.5);
}
.g162-link:hover { color: var(--g162-accent); border-bottom-color: var(--g162-accent); }
.g162-link-bold { font-weight: 800; color: var(--g162-primary); }
.g162-link-bold:hover { color: var(--g162-accent); }

/* ---------- Mobile content padding clearance ---------- */
@media (max-width: 768px) {
  main, .g162-main { padding-bottom: 80px; }
}

/* ---------- Desktop: hide bottom nav, show expanded nav ---------- */
@media (min-width: 769px) {
  .g162-bottom-nav { display: none; }
  .g162-menu-btn { display: none; }
  .g162-mobile-menu { display: none; }
  body { max-width: 430px; }
  .g162-desktop-nav { display: flex; }
}
.g162-desktop-nav { display: none; gap: 0.6rem; align-items: center; }

/* ---------- Utility spacing (prefixed) ---------- */
.g162-mt-1 { margin-top: 0.5rem; }
.g162-mt-2 { margin-top: 1rem; }
.g162-mb-1 { margin-bottom: 0.5rem; }
.g162-mb-2 { margin-bottom: 1rem; }
.g162-flex { display: flex; gap: 0.6rem; }
.g162-flex-between { display: flex; justify-content: space-between; align-items: center; }
.g162-hidden { display: none; }
