/* ===========================================================
   SM88 Homes - design.css
   All custom classes use gbef- prefix
   Palette: #00FA9A (mint) | #0A0A0A (deep black)
   Mobile-first, max-width: 430px
   =========================================================== */

:root {
  --gbef-mint: #00FA9A;
  --gbef-mint-soft: rgba(0, 250, 154, 0.15);
  --gbef-mint-dim: rgba(0, 250, 154, 0.45);
  --gbef-bg: #0A0A0A;
  --gbef-bg-2: #111414;
  --gbef-bg-3: #161a1a;
  --gbef-card: #1a1f1f;
  --gbef-card-2: #202626;
  --gbef-text: #E8F5EE;
  --gbef-text-dim: #9BA8A0;
  --gbef-gold: #FFD24A;
  --gbef-red: #FF5C6C;
  --gbef-border: rgba(0, 250, 154, 0.18);
  --gbef-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  --gbef-radius: 14px;
  --gbef-header-h: 56px;
  --gbef-bottom-h: 62px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0;
  font-family: "Be Vietnam Pro", "Segoe UI", "Roboto", system-ui, -apple-system, sans-serif;
  background: var(--gbef-bg);
  color: var(--gbef-text);
  font-size: 1.5rem;
  line-height: 1.55;
  overflow-x: hidden;
}

body.gbef-noscroll { overflow: hidden; }

a { color: var(--gbef-mint); text-decoration: none; }
a:hover { color: #5BFFC1; }
img { max-width: 100%; display: block; }

/* ===== Layout container ===== */
.gbef-wrap {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px;
}

.gbef-section {
  padding: 26px 0 18px;
}

.gbef-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gbef-mint-soft);
  color: var(--gbef-mint);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.gbef-section-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 10px 0 4px;
  color: var(--gbef-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gbef-section-sub {
  font-size: 1.3rem;
  color: var(--gbef-text-dim);
  margin: 0 0 14px;
}

/* ===== Header ===== */
.gbef-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gbef-border);
  transition: box-shadow .25s ease, background .25s ease;
}
.gbef-header.gbef-scrolled {
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
  background: rgba(8, 12, 12, 0.96);
}
.gbef-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--gbef-header-h);
  padding: 0 12px;
}
.gbef-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--gbef-mint);
  letter-spacing: 0.5px;
}
.gbef-logo .gbef-logo-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gbef-mint), #00b377);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #06241a;
  font-weight: 900;
  font-size: 1.4rem;
}
.gbef-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gbef-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  font-family: inherit;
}
.gbef-btn:active { transform: scale(0.96); }
.gbef-btn-ghost {
  background: transparent;
  color: var(--gbef-text);
  border: 1px solid var(--gbef-border);
}
.gbef-btn-ghost:hover { background: var(--gbef-mint-soft); color: var(--gbef-mint); }
.gbef-btn-primary {
  background: linear-gradient(135deg, var(--gbef-mint), #00cf80);
  color: #062017;
  box-shadow: 0 6px 16px rgba(0, 250, 154, 0.25);
}
.gbef-btn-primary:hover { box-shadow: 0 8px 22px rgba(0, 250, 154, 0.4); }
.gbef-icon-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--gbef-border);
  color: var(--gbef-text);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.6rem;
}
.gbef-icon-btn:hover { background: var(--gbef-mint-soft); color: var(--gbef-mint); }

/* ===== Mobile menu ===== */
.gbef-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.gbef-backdrop.gbef-show { opacity: 1; pointer-events: auto; }
.gbef-mobile-menu {
  position: fixed;
  top: 0; right: -86%;
  width: 84%; max-width: 360px;
  height: 100vh;
  background: var(--gbef-bg-2);
  border-left: 1px solid var(--gbef-border);
  z-index: 9999;
  padding: 18px 16px;
  overflow-y: auto;
  transition: right .3s ease;
}
.gbef-mobile-menu.gbef-open { right: 0; }
.gbef-mobile-menu.gbef-closed { right: -86%; }
.gbef-mm-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--gbef-border);
}
.gbef-mm-head h3 { margin: 0; font-size: 1.7rem; color: var(--gbef-mint); }
.gbef-mm-list { list-style: none; padding: 0; margin: 0; }
.gbef-mm-list li { margin: 4px 0; }
.gbef-mm-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--gbef-text);
  font-size: 1.4rem; font-weight: 600;
}
.gbef-mm-list a:hover { background: var(--gbef-mint-soft); color: var(--gbef-mint); }
.gbef-mm-cta {
  margin-top: 16px;
  display: grid; gap: 10px;
}

/* ===== Hero ===== */
.gbef-hero {
  position: relative;
  margin-top: 12px;
}
.gbef-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--gbef-shadow);
}
.gbef-slide {
  position: relative;
  display: none;
  min-height: 220px;
  padding: 22px 18px;
  background: linear-gradient(135deg, #0c3a2a 0%, #082b1f 50%, #0a0a0a 100%);
  border: 1px solid var(--gbef-border);
}
.gbef-slide.gbef-active { display: block; }
.gbef-slide-2 { background: linear-gradient(135deg, #3a0c30 0%, #2a0820 60%, #0a0a0a 100%); }
.gbef-slide-3 { background: linear-gradient(135deg, #0c2a3a 0%, #08222f 60%, #0a0a0a 100%); }
.gbef-slide-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--gbef-mint);
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.gbef-slide h2 {
  font-size: 2.3rem; font-weight: 900; margin: 4px 0 6px;
  color: #fff; line-height: 1.2;
}
.gbef-slide p { color: #cfe9dd; font-size: 1.3rem; margin: 0 0 12px; }
.gbef-slide-cta { display: flex; gap: 8px; flex-wrap: wrap; }
.gbef-slide-dots {
  position: absolute; bottom: 10px; right: 14px;
  display: flex; gap: 6px;
}
.gbef-slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: all .2s;
}
.gbef-slide-dot.gbef-active { background: var(--gbef-mint); width: 22px; border-radius: 4px; }

/* ===== Quick stats ===== */
.gbef-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.gbef-stat {
  background: var(--gbef-card);
  border: 1px solid var(--gbef-border);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
}
.gbef-stat-num {
  font-size: 1.7rem; font-weight: 900; color: var(--gbef-mint);
}
.gbef-stat-label {
  font-size: 1.05rem; color: var(--gbef-text-dim); margin-top: 2px;
}

/* ===== Promo CTA banner ===== */
.gbef-promo-banner {
  margin-top: 16px;
  background: linear-gradient(135deg, #003d2a 0%, #001f17 100%);
  border: 1px solid var(--gbef-border);
  border-radius: 16px;
  padding: 16px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.gbef-promo-banner .gbef-promo-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gbef-mint-soft); color: var(--gbef-mint);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
}
.gbef-promo-banner h3 { margin: 0 0 2px; font-size: 1.6rem; color: #fff; }
.gbef-promo-banner p { margin: 0; font-size: 1.2rem; color: var(--gbef-text-dim); flex: 1; min-width: 120px; }

/* ===== Category tabs ===== */
.gbef-cat-tabs {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 6px 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gbef-cat-tabs::-webkit-scrollbar { display: none; }
.gbef-cat-tab {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gbef-card);
  border: 1px solid var(--gbef-border);
  color: var(--gbef-text-dim);
  font-size: 1.25rem; font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s ease;
}
.gbef-cat-tab.gbef-active {
  background: var(--gbef-mint);
  color: #062017;
  border-color: var(--gbef-mint);
}

/* ===== Game grid ===== */
.gbef-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gbef-game-card {
  position: relative;
  background: var(--gbef-card);
  border: 1px solid var(--gbef-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gbef-game-card:hover, .gbef-game-card:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,250,154,0.18);
}
.gbef-game-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--gbef-bg-3);
  overflow: hidden;
}
.gbef-game-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.gbef-game-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 55%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 8px;
  opacity: 0; transition: opacity .25s ease;
}
.gbef-game-card:hover .gbef-game-overlay,
.gbef-game-card:active .gbef-game-overlay { opacity: 1; }
.gbef-game-play {
  background: var(--gbef-mint);
  color: #062017;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 1.1rem; font-weight: 800;
}
.gbef-game-name {
  padding: 7px 8px;
  font-size: 1.15rem; font-weight: 600;
  color: var(--gbef-text);
  text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gbef-badge-hot {
  position: absolute; top: 6px; left: 6px;
  background: var(--gbef-red); color: #fff;
  font-size: 1rem; font-weight: 800;
  padding: 2px 6px; border-radius: 6px;
  z-index: 2;
}
.gbef-badge-new {
  position: absolute; top: 6px; left: 6px;
  background: var(--gbef-gold); color: #2a1d00;
  font-size: 1rem; font-weight: 800;
  padding: 2px 6px; border-radius: 6px;
  z-index: 2;
}

/* ===== Featured / review list ===== */
.gbef-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.gbef-feature-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--gbef-card);
  border: 1px solid var(--gbef-border);
  border-radius: 12px;
  padding: 12px;
}
.gbef-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--gbef-mint-soft);
  color: var(--gbef-mint);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.gbef-feature-text h4 { margin: 0 0 2px; font-size: 1.4rem; color: #fff; }
.gbef-feature-text p { margin: 0; font-size: 1.2rem; color: var(--gbef-text-dim); }

/* ===== Promo cards (reload, cashback, vip) ===== */
.gbef-promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.gbef-promo-card {
  background: linear-gradient(135deg, #122421 0%, #0c1815 100%);
  border: 1px solid var(--gbef-border);
  border-radius: 14px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.gbef-promo-card::after {
  content: ""; position: absolute; right: -30px; top: -30px;
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle, var(--gbef-mint-soft) 0%, transparent 70%);
}
.gbef-promo-card h4 { margin: 0 0 4px; font-size: 1.55rem; color: var(--gbef-mint); }
.gbef-promo-card p { margin: 0 0 10px; font-size: 1.25rem; color: var(--gbef-text-dim); }
.gbef-promo-code {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px dashed var(--gbef-mint);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 1.2rem; font-weight: 800;
  color: var(--gbef-mint);
  background: rgba(0,250,154,0.06);
}

/* ===== SEO content long text ===== */
.gbef-seo-text {
  background: var(--gbef-card);
  border: 1px solid var(--gbef-border);
  border-radius: 14px;
  padding: 16px;
  color: var(--gbef-text);
  font-size: 1.35rem;
  line-height: 1.7;
}
.gbef-seo-text h2 { font-size: 1.9rem; color: var(--gbef-mint); margin: 14px 0 6px; }
.gbef-seo-text h2:first-child { margin-top: 0; }
.gbef-seo-text h3 { font-size: 1.55rem; color: #fff; margin: 12px 0 4px; }
.gbef-seo-text p { margin: 0 0 10px; }
.gbef-seo-text ul { margin: 0 0 10px; padding-left: 20px; }
.gbef-seo-text li { margin-bottom: 4px; }
.gbef-seo-text a { color: var(--gbef-mint); text-decoration: underline; text-underline-offset: 2px; }
.gbef-seo-text strong { color: #fff; }

/* ===== FAQ ===== */
.gbef-faq-list { display: grid; gap: 8px; }
.gbef-faq-item {
  background: var(--gbef-card);
  border: 1px solid var(--gbef-border);
  border-radius: 12px;
  overflow: hidden;
}
.gbef-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--gbef-text);
}
.gbef-faq-q .gbef-faq-icon { color: var(--gbef-mint); transition: transform .25s ease; }
.gbef-faq-item.gbef-open .gbef-faq-icon { transform: rotate(45deg); }
.gbef-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 14px;
  color: var(--gbef-text-dim);
  font-size: 1.25rem;
}
.gbef-faq-item.gbef-open .gbef-faq-a {
  max-height: 320px;
  padding: 0 14px 12px;
}

/* ===== App download block ===== */
.gbef-app-block {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  background: linear-gradient(135deg, #04241a 0%, #0a0a0a 100%);
  border: 1px solid var(--gbef-border);
  border-radius: 16px;
  padding: 16px;
}
.gbef-app-qr {
  width: 90px; height: 90px; border-radius: 12px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.4rem; color: #0a0a0a;
  flex-shrink: 0;
}
.gbef-app-info { flex: 1; min-width: 180px; }
.gbef-app-info h3 { margin: 0 0 4px; font-size: 1.7rem; color: #fff; }
.gbef-app-info p { margin: 0 0 10px; font-size: 1.2rem; color: var(--gbef-text-dim); }
.gbef-app-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ===== Footer ===== */
.gbef-footer {
  margin-top: 26px;
  background: var(--gbef-bg-2);
  border-top: 1px solid var(--gbef-border);
  padding: 22px 0 24px;
}
.gbef-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gbef-footer h4 {
  font-size: 1.3rem; color: var(--gbef-mint);
  margin: 0 0 8px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gbef-footer ul { list-style: none; margin: 0; padding: 0; }
.gbef-footer li { margin: 4px 0; }
.gbef-footer a { color: var(--gbef-text-dim); font-size: 1.2rem; }
.gbef-footer a:hover { color: var(--gbef-mint); }
.gbef-footer-bottom {
  margin-top: 16px; padding-top: 12px;
  border-top: 1px solid var(--gbef-border);
  text-align: center;
  color: var(--gbef-text-dim);
  font-size: 1.1rem;
}
.gbef-pay-row {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px;
  justify-content: center;
}
.gbef-pay-chip {
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--gbef-card);
  border: 1px solid var(--gbef-border);
  font-size: 1rem;
  color: var(--gbef-text-dim);
}

/* ===== Bottom nav ===== */
.gbef-bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  background: rgba(10, 14, 14, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gbef-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  height: var(--gbef-bottom-h);
  padding: 4px 0;
}
.gbef-bottom-nav a, .gbef-bottom-nav button {
  flex: 1;
  min-width: 60px;
  min-height: 54px;
  background: transparent;
  border: none;
  color: var(--gbef-text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  position: relative;
  transition: color .2s ease;
}
.gbef-bottom-nav a.gbef-bn-active, .gbef-bottom-nav button.gbef-bn-active {
  color: var(--gbef-mint);
}
.gbef-bottom-nav .gbef-bn-icon { font-size: 2rem; line-height: 1; }
.gbef-bottom-nav .gbef-bn-center .gbef-bn-icon {
  background: linear-gradient(135deg, var(--gbef-mint), #00cf80);
  color: #062017;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  display: flex;
  margin-top: -18px;
  box-shadow: 0 4px 14px rgba(0,250,154,0.4);
  border: 3px solid #0a0e0e;
}

/* Back to top */
.gbef-back-top {
  position: fixed;
  right: 14px; bottom: calc(var(--gbef-bottom-h) + 12px);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gbef-mint);
  color: #062017;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.6rem;
  opacity: 0; pointer-events: none;
  z-index: 999;
  transition: opacity .25s ease, transform .2s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}
.gbef-back-top.gbef-show { opacity: 1; pointer-events: auto; }

/* ===== Desktop: hide bottom nav, hide back-top mobile ===== */
@media (min-width: 769px) {
  .gbef-bottom-nav { display: none; }
  .gbef-back-top { bottom: 18px; }
  .gbef-wrap { max-width: 760px; }
  .gbef-game-grid { grid-template-columns: repeat(5, 1fr); }
  .gbef-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gbef-promo-grid { grid-template-columns: repeat(2, 1fr); }
  .gbef-stats { grid-template-columns: repeat(4, 1fr); }
  .gbef-footer-cols { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Mobile padding for bottom nav clearance ===== */
@media (max-width: 768px) {
  main.gbef-main { padding-bottom: calc(var(--gbef-bottom-h) + 18px); }
}

/* ===== Page H1 (matches page title for SEO) ===== */
.gbef-h1 {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  margin: 14px 0 2px;
}
.gbef-h1-sub {
  font-size: 1.25rem;
  color: var(--gbef-text-dim);
  margin: 0 0 12px;
}

/* ===== Slider image (clickable promo banner) ===== */
.gbef-slide-img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 1px solid var(--gbef-border);
}

/* ===== Footer intro + promo CTA row ===== */
.gbef-footer-intro {
  font-size: 1.2rem;
  color: var(--gbef-text-dim);
  margin: 0 0 14px;
  line-height: 1.6;
}
.gbef-footer-intro strong { color: var(--gbef-mint); }
.gbef-footer-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}
.gbef-footer-cta .gbef-btn { padding: 8px 12px; font-size: 1.25rem; }

/* ===== Help page blocks (about / review) ===== */
.gbef-info-card {
  background: var(--gbef-card);
  border: 1px solid var(--gbef-border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--gbef-text);
}
.gbef-info-card h3 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  color: var(--gbef-mint);
}
.gbef-info-card p { margin: 0 0 8px; color: var(--gbef-text); }
.gbef-info-card ul, .gbef-info-card ol { margin: 6px 0 8px; padding-left: 20px; }
.gbef-info-card li { margin-bottom: 5px; }
.gbef-info-card strong { color: #fff; }
.gbef-info-card a { color: var(--gbef-mint); text-decoration: underline; text-underline-offset: 2px; }
.gbef-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 250, 154, 0.15);
  font-size: 1.25rem;
}
.gbef-score-row:last-child { border-bottom: none; }
.gbef-score-val {
  font-weight: 800;
  color: var(--gbef-gold);
  white-space: nowrap;
}
.gbef-pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.gbef-pros, .gbef-cons {
  border-radius: 12px;
  padding: 12px;
  font-size: 1.25rem;
}
.gbef-pros {
  background: rgba(0, 250, 154, 0.08);
  border: 1px solid var(--gbef-border);
}
.gbef-cons {
  background: rgba(255, 92, 108, 0.08);
  border: 1px solid rgba(255, 92, 108, 0.3);
}
.gbef-pros h4 { color: var(--gbef-mint); margin: 0 0 6px; font-size: 1.4rem; }
.gbef-cons h4 { color: var(--gbef-red); margin: 0 0 6px; font-size: 1.4rem; }
.gbef-pros li, .gbef-cons li { margin-bottom: 4px; }
.gbef-review-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--gbef-border);
  margin: 10px 0;
  cursor: pointer;
}
@media (min-width: 769px) {
  .gbef-pros-cons { grid-template-columns: 1fr 1fr; }
}

/* utility */
.gbef-text-mint { color: var(--gbef-mint); }
.gbef-mt-8 { margin-top: 8px; }
.gbef-mt-16 { margin-top: 16px; }
.gbef-center { text-align: center; }
.gbef-flex { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
