/* ============================================================
   SpinPlus (spinplus.sbs) - Core Stylesheet
   Mobile-first PH online casino design (320-430px canvas)
   Class prefix: pg6e-
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --pg6e-bg-deep: #1a232f;
  --pg6e-bg-dark: #2C3E50;
  --pg6e-bg-card: #243447;
  --pg6e-bg-card-2: #2c4055;
  --pg6e-text-light: #F8F9FA;
  --pg6e-text-muted: #b9c6d4;
  --pg6e-pink: #FF1493;
  --pg6e-pink-dark: #d4066f;
  --pg6e-red: #FF0000;
  --pg6e-indian: #CD5C5C;
  --pg6e-peru: #CD853F;
  --pg6e-peru-light: #e0a255;
  --pg6e-gold: #f4c542;
  --pg6e-border: rgba(255,255,255,0.08);
  --pg6e-shadow: 0 8px 24px rgba(0,0,0,0.35);
  --pg6e-radius: 14px;
  --pg6e-header-h: 60px;
  --pg6e-bottomnav-h: 64px;
  --pg6e-max-w: 480px;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif;
  background: var(--pg6e-bg-deep);
  color: var(--pg6e-text-light);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}
body.pg6e-lock { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }
a { color: var(--pg6e-gold); text-decoration: none; }
a:hover { color: var(--pg6e-pink); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }
h1 { font-size: 1.55rem; }
h2 { font-size: 1.25rem; }
h3 { font-size: 1.08rem; }

/* ---------- App Shell ---------- */
.pg6e-app {
  max-width: var(--pg6e-max-w);
  margin: 0 auto;
  background: linear-gradient(180deg, #16202b 0%, #1a232f 40%, #1a232f 100%);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.pg6e-app::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(255,20,147,0.10), transparent 35%),
    radial-gradient(circle at 85% 22%, rgba(205,133,63,0.08), transparent 40%);
  pointer-events: none; z-index: 0;
}
.pg6e-app > * { position: relative; z-index: 1; }

/* ---------- Header ---------- */
.pg6e-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--pg6e-header-h);
  background: linear-gradient(90deg, #1f2c3a 0%, #2C3E50 60%, #21313f 100%);
  border-bottom: 2px solid var(--pg6e-pink);
  display: flex; align-items: center; gap: 10px;
  padding: 0 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.pg6e-brand {
  display: flex; align-items: center; gap: 8px;
  flex: 1; min-width: 0;
}
.pg6e-brand img {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,20,147,0.4);
  background: #fff;
  object-fit: contain;
  flex-shrink: 0;
}
.pg6e-brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.pg6e-brand-name {
  font-size: 1.15rem; font-weight: 800;
  background: linear-gradient(90deg, #FF1493, #f4c542);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: 0.2px;
}
.pg6e-brand-tag {
  font-size: 0.62rem; color: var(--pg6e-text-muted);
  letter-spacing: 1px; text-transform: uppercase;
}
.pg6e-menu-btn {
  background: transparent; border: 0; color: var(--pg6e-text-light);
  width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
}
.pg6e-menu-btn:hover { background: rgba(255,255,255,0.08); }
.pg6e-menu-btn svg { width: 22px; height: 22px; }
.pg6e-auth { display: flex; gap: 6px; align-items: center; flex-shrink: 0; }
.pg6e-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.86rem;
  padding: 8px 14px; border-radius: 999px;
  border: 0; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  text-decoration: none;
  min-height: 36px;
}
.pg6e-btn:active { transform: scale(0.96); }
.pg6e-btn-login {
  background: transparent;
  color: var(--pg6e-text-light);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.pg6e-btn-login:hover { border-color: var(--pg6e-pink); color: #fff; }
.pg6e-btn-register {
  background: linear-gradient(90deg, #FF1493, #d4066f);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,20,147,0.45);
}
.pg6e-btn-register:hover { filter: brightness(1.1); color: #fff; }

/* ---------- Drawer Menu ---------- */
.pg6e-drawer-mask {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.pg6e-drawer-mask.pg6e-open { opacity: 1; visibility: visible; }
.pg6e-drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 84%; max-width: 340px;
  background: linear-gradient(180deg, #1c2a38, #1a232f);
  z-index: 90;
  transform: translateX(-105%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  padding: 18px 0 30px;
  box-shadow: 4px 0 24px rgba(0,0,0,0.5);
}
.pg6e-drawer.pg6e-open { transform: translateX(0); }
.pg6e-drawer-head {
  display: flex; align-items: center; gap: 10px;
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--pg6e-border);
}
.pg6e-drawer-head img { width: 40px; height: 40px; border-radius: 8px; }
.pg6e-drawer-head .pg6e-brand-name { font-size: 1.2rem; }
.pg6e-drawer-close {
  margin-left: auto; background: transparent; border: 0; color: #fff;
  font-size: 1.4rem; cursor: pointer; width: 36px; height: 36px;
  border-radius: 8px;
}
.pg6e-drawer-close:hover { background: rgba(255,255,255,0.08); }
.pg6e-drawer nav { display: flex; flex-direction: column; padding: 8px 0; }
.pg6e-drawer nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  color: var(--pg6e-text-light);
  font-weight: 600; font-size: 0.95rem;
  border-left: 3px solid transparent;
}
.pg6e-drawer nav a:hover, .pg6e-drawer nav a.pg6e-active {
  background: rgba(255,20,147,0.10);
  border-left-color: var(--pg6e-pink);
  color: #fff;
}
.pg6e-drawer nav a .pg6e-ico { width: 20px; height: 20px; color: var(--pg6e-gold); }
.pg6e-drawer-cta {
  margin: 16px; padding: 14px; border-radius: 12px;
  background: linear-gradient(90deg, rgba(255,20,147,0.15), rgba(244,197,66,0.10));
  border: 1px solid rgba(255,20,147,0.3);
}
.pg6e-drawer-cta p { font-size: 0.82rem; color: var(--pg6e-text-muted); margin-bottom: 10px; }

/* ---------- Hero / Carousel ---------- */
.pg6e-hero {
  margin: 12px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--pg6e-shadow);
}
.pg6e-carousel { position: relative; overflow: hidden; border-radius: 16px; }
.pg6e-slides { display: flex; transition: transform 0.5s ease; }
.pg6e-slide {
  min-width: 100%;
  padding: 22px 18px;
  position: relative;
  min-height: 168px;
  display: flex; flex-direction: column; justify-content: center;
}
.pg6e-slide-1 {
  background:
    linear-gradient(120deg, rgba(255,20,147,0.92), rgba(212,6,111,0.85)),
    radial-gradient(circle at 80% 20%, rgba(244,197,66,0.4), transparent 50%);
}
.pg6e-slide-2 {
  background:
    linear-gradient(120deg, rgba(205,133,63,0.92), rgba(60,40,20,0.92));
}
.pg6e-slide-3 {
  background:
    linear-gradient(120deg, rgba(44,62,80,0.92), rgba(15,25,35,0.92));
}
.pg6e-slide h2 { color: #fff; font-size: 1.35rem; margin-bottom: 6px; text-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.pg6e-slide p { color: rgba(255,255,255,0.92); font-size: 0.88rem; margin-bottom: 12px; max-width: 88%; }
.pg6e-slide .pg6e-btn-register { align-self: flex-start; }
.pg6e-dots {
  position: absolute; bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
}
.pg6e-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 0; padding: 0; cursor: pointer;
}
.pg6e-dot.pg6e-active { background: #fff; width: 18px; border-radius: 4px; }

/* ---------- Quick Stats ---------- */
.pg6e-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin: 12px;
}
.pg6e-stat {
  background: linear-gradient(180deg, var(--pg6e-bg-card), var(--pg6e-bg-card-2));
  border: 1px solid var(--pg6e-border);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
}
.pg6e-stat-num {
  font-size: 1.05rem; font-weight: 800;
  color: var(--pg6e-gold);
  line-height: 1.1;
}
.pg6e-stat-label {
  font-size: 0.68rem; color: var(--pg6e-text-muted);
  text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px;
}

/* ---------- Section ---------- */
.pg6e-section {
  margin: 22px 0 0; padding: 0 12px;
}
.pg6e-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.pg6e-section-title {
  font-size: 1.08rem; font-weight: 800; color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.pg6e-section-title::before {
  content: ""; width: 4px; height: 18px;
  background: linear-gradient(180deg, #FF1493, #f4c542);
  border-radius: 2px;
}
.pg6e-section-more {
  font-size: 0.78rem; color: var(--pg6e-gold);
}
.pg6e-section-more:hover { color: var(--pg6e-pink); }

/* ---------- Category Chips ---------- */
.pg6e-chips {
  display: flex; gap: 7px; overflow-x: auto;
  padding: 4px 12px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pg6e-chips::-webkit-scrollbar { display: none; }
.pg6e-chip {
  flex-shrink: 0;
  background: var(--pg6e-bg-card);
  border: 1px solid var(--pg6e-border);
  color: var(--pg6e-text-light);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.pg6e-chip.pg6e-active {
  background: linear-gradient(90deg, #FF1493, #d4066f);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,20,147,0.4);
}

/* ---------- Game Grid ---------- */
.pg6e-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.pg6e-card {
  background: var(--pg6e-bg-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--pg6e-border);
  position: relative;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pg6e-card:hover, .pg6e-card:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,20,147,0.25);
  border-color: rgba(255,20,147,0.4);
}
.pg6e-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0e1620;
  overflow: hidden;
}
.pg6e-card-img img { width: 100%; height: 100%; object-fit: cover; }
.pg6e-card-badge {
  position: absolute; top: 4px; left: 4px;
  background: linear-gradient(90deg, #FF0000, #FF1493);
  color: #fff; font-size: 0.6rem; font-weight: 700;
  padding: 2px 6px; border-radius: 4px;
  letter-spacing: 0.3px;
}
.pg6e-card-play {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s ease;
}
.pg6e-card:hover .pg6e-card-play, .pg6e-card:active .pg6e-card-play { opacity: 1; }
.pg6e-card-play span {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--pg6e-pink); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 10px; border-radius: 999px;
}
.pg6e-card-name {
  font-size: 0.7rem; font-weight: 600;
  padding: 5px 6px; color: var(--pg6e-text-light);
  text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pg6e-card-hot .pg6e-card-badge { background: linear-gradient(90deg, #FF0000, #CD5C5C); }
.pg6e-card-new .pg6e-card-badge { background: linear-gradient(90deg, #CD853F, #f4c542); }

/* ---------- Promo Banner Row ---------- */
.pg6e-promo-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin: 12px;
}
.pg6e-promo-card {
  border-radius: 12px; overflow: hidden;
  padding: 14px; min-height: 92px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--pg6e-border);
}
.pg6e-promo-1 {
  background: linear-gradient(135deg, rgba(255,20,147,0.85), rgba(120,8,60,0.85));
}
.pg6e-promo-2 {
  background: linear-gradient(135deg, rgba(205,133,63,0.85), rgba(90,60,20,0.85));
}
.pg6e-promo-card h3 { color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.pg6e-promo-card p { color: rgba(255,255,255,0.85); font-size: 0.72rem; }
.pg6e-promo-card .pg6e-btn { align-self: flex-start; margin-top: 8px; font-size: 0.74rem; padding: 5px 12px; background: rgba(0,0,0,0.35); color: #fff; border: 1px solid rgba(255,255,255,0.4); }

/* ---------- Jackpot ticker ---------- */
.pg6e-jackpot {
  margin: 14px 12px;
  background: linear-gradient(90deg, #2c4055, #1c2a38);
  border: 1px solid rgba(244,197,66,0.3);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
}
.pg6e-jackpot-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle, #f4c542, #CD853F);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.pg6e-jackpot-text { flex: 1; min-width: 0; }
.pg6e-jackpot-label { font-size: 0.68rem; color: var(--pg6e-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.pg6e-jackpot-amount { font-size: 1.2rem; font-weight: 800; color: var(--pg6e-gold); font-family: "Courier New", monospace; }

/* ---------- Content / SEO Section ---------- */
.pg6e-content {
  padding: 22px 14px 8px;
}
.pg6e-content h2 {
  color: #fff; margin-bottom: 10px;
  font-size: 1.18rem;
}
.pg6e-content h2::before {
  content: ""; display: inline-block; width: 4px; height: 16px;
  background: linear-gradient(180deg, #FF1493, #f4c542);
  margin-right: 8px; vertical-align: -2px; border-radius: 2px;
}
.pg6e-content h3 { color: var(--pg6e-gold); margin: 16px 0 6px; font-size: 1rem; }
.pg6e-content p { color: var(--pg6e-text-muted); margin-bottom: 10px; font-size: 0.9rem; }
.pg6e-content strong { color: var(--pg6e-text-light); }
.pg6e-content ul.pg6e-list { padding-left: 4px; margin-bottom: 12px; }
.pg6e-content ul.pg6e-list li {
  position: relative; padding-left: 18px; margin-bottom: 6px;
  color: var(--pg6e-text-muted); font-size: 0.88rem;
}
.pg6e-content ul.pg6e-list li::before {
  content: "▸"; position: absolute; left: 0; top: 0;
  color: var(--pg6e-pink); font-weight: 700;
}
.pg6e-content-box {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--pg6e-pink);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 12px 0;
}
.pg6e-content-box p { margin-bottom: 0; }
.pg6e-faq-item {
  background: var(--pg6e-bg-card);
  border: 1px solid var(--pg6e-border);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.pg6e-faq-q {
  padding: 12px 14px; font-weight: 700; color: #fff;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 0.9rem;
}
.pg6e-faq-q::after { content: "+"; color: var(--pg6e-pink); font-size: 1.2rem; transition: transform 0.2s; }
.pg6e-faq-item.pg6e-open .pg6e-faq-q::after { transform: rotate(45deg); }
.pg6e-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 14px;
  color: var(--pg6e-text-muted); font-size: 0.84rem;
}
.pg6e-faq-item.pg6e-open .pg6e-faq-a { max-height: 320px; padding: 0 14px 12px; }

/* ---------- Feature cards ---------- */
.pg6e-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  padding: 0 12px;
}
.pg6e-feature {
  background: linear-gradient(180deg, var(--pg6e-bg-card), var(--pg6e-bg-card-2));
  border: 1px solid var(--pg6e-border);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.pg6e-feature-ico {
  width: 42px; height: 42px; margin: 0 auto 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,20,147,0.25), rgba(244,197,66,0.2));
  display: flex; align-items: center; justify-content: center;
  color: var(--pg6e-gold);
}
.pg6e-feature-ico svg { width: 22px; height: 22px; }
.pg6e-feature h3 { color: #fff; font-size: 0.9rem; margin-bottom: 4px; }
.pg6e-feature p { color: var(--pg6e-text-muted); font-size: 0.75rem; line-height: 1.4; }

/* ---------- CTA strip ---------- */
.pg6e-cta {
  margin: 22px 12px;
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(255,20,147,0.9), rgba(205,133,63,0.85));
  box-shadow: 0 8px 20px rgba(255,20,147,0.3);
}
.pg6e-cta h3 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.pg6e-cta p { color: rgba(255,255,255,0.92); font-size: 0.82rem; margin-bottom: 12px; }
.pg6e-cta .pg6e-btn-register { display: inline-flex; padding: 10px 26px; font-size: 0.95rem; }

/* ---------- Footer ---------- */
.pg6e-footer {
  background: #11181f;
  border-top: 2px solid var(--pg6e-pink);
  padding: 22px 14px calc(var(--pg6e-bottomnav-h) + 20px);
  margin-top: 26px;
}
.pg6e-footer-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 16px;
}
.pg6e-footer-col h4 {
  color: #fff; font-size: 0.86rem; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.pg6e-footer-col a {
  display: block; color: var(--pg6e-text-muted);
  font-size: 0.78rem; padding: 3px 0;
}
.pg6e-footer-col a:hover { color: var(--pg6e-pink); }
.pg6e-footer-pay {
  border-top: 1px solid var(--pg6e-border);
  border-bottom: 1px solid var(--pg6e-border);
  padding: 12px 0; margin-bottom: 12px;
}
.pg6e-footer-pay-label {
  font-size: 0.7rem; color: var(--pg6e-text-muted); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.pg6e-pay-list { display: flex; flex-wrap: wrap; gap: 6px; }
.pg6e-pay-list span {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--pg6e-border);
  color: var(--pg6e-text-light);
  padding: 4px 10px; border-radius: 6px;
  font-size: 0.72rem; font-weight: 600;
}
.pg6e-footer-bottom {
  text-align: center; padding-top: 8px;
}
.pg6e-footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 6px;
}
.pg6e-footer-brand img { width: 28px; height: 28px; border-radius: 6px; }
.pg6e-footer-brand .pg6e-brand-name { font-size: 1rem; }
.pg6e-footer-copy {
  font-size: 0.7rem; color: var(--pg6e-text-muted);
  line-height: 1.5;
}
.pg6e-footer-warn {
  font-size: 0.66rem; color: #8395a8;
  margin-top: 8px; font-style: italic;
}

/* ---------- Bottom Nav ---------- */
.pg6e-bottomnav {
  position: fixed;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--pg6e-max-w);
  height: var(--pg6e-bottomnav-h);
  background: linear-gradient(180deg, #1f2c3a, #152029);
  border-top: 1px solid rgba(255,20,147,0.4);
  display: flex; align-items: stretch; justify-content: space-around;
  z-index: 70;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.5);
}
.pg6e-nav-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  color: var(--pg6e-text-muted);
  background: transparent; border: 0;
  padding: 6px 2px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: color 0.15s ease;
}
.pg6e-nav-item svg { width: 22px; height: 22px; }
.pg6e-nav-item span { font-size: 0.62rem; font-weight: 600; }
.pg6e-nav-item.pg6e-active { color: var(--pg6e-pink); }
.pg6e-nav-item.pg6e-active::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 30px; height: 3px; border-radius: 0 0 3px 3px;
  background: var(--pg6e-pink);
}
.pg6e-nav-item:hover { color: var(--pg6e-text-light); }
.pg6e-nav-item.pg6e-nav-promo {
  color: #fff;
}
.pg6e-nav-item.pg6e-nav-promo span { color: #fff; }
.pg6e-nav-promo .pg6e-nav-ico-bg {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #FF1493, #d4066f);
  display: flex; align-items: center; justify-content: center;
  margin-top: -14px;
  box-shadow: 0 4px 12px rgba(255,20,147,0.5);
  border: 3px solid #152029;
}
.pg6e-nav-promo .pg6e-nav-ico-bg svg { width: 20px; height: 20px; color: #fff; }

/* ---------- Utility ---------- */
.pg6e-container { padding: 0 12px; }
.pg6e-hide { display: none !important; }
.pg6e-clearfix::after { content: ""; display: table; clear: both; }

/* ---------- Responsive (keep mobile canvas) ---------- */
@media (min-width: 481px) {
  body { background: #0a1018; }
  .pg6e-app { border-left: 1px solid rgba(255,255,255,0.06); border-right: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 360px) {
  .pg6e-grid { grid-template-columns: repeat(3, 1fr); }
  .pg6e-card-name { font-size: 0.66rem; }
  .pg6e-brand-tag { display: none; }
  .pg6e-btn { padding: 7px 10px; font-size: 0.8rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
