@charset "UTF-8";
/*!
 * FBM Gaming - Site Theme (theme-b89c.css)
 * Mobile-first design, 430px primary container.
 * All custom classes use the g9ce- prefix.
 * Palette: #DEB887 | #FFF8DC | #B8860B | #AFEEEE | #1E1E1E
 */

:root {
  --g9ce-gold: #DEB887;
  --g9ce-cream: #FFF8DC;
  --g9ce-darkgold: #B8860B;
  --g9ce-mint: #AFEEEE;
  --g9ce-bg: #1E1E1E;
  --g9ce-bg2: #23201a;
  --g9ce-card: #2a2620;
  --g9ce-card2: #322c22;
  --g9ce-text: #FFF8DC;
  --g9ce-muted: #c9b98e;
  --g9ce-accent: #AFEEEE;
  --g9ce-danger: #e0524f;
  --g9ce-success: #4ad07e;
  --g9ce-radius: 14px;
  --g9ce-shadow: 0 8px 26px rgba(0,0,0,.45);
  --g9ce-primary: #DEB887;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #322c22 0%, var(--g9ce-bg) 60%);
  color: var(--g9ce-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--g9ce-gold); text-decoration: none; }

/* ---------- Layout primitives ---------- */
.g9ce-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 14px;
}

.g9ce-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

main { padding-bottom: 90px; }

/* ---------- Header ---------- */
.g9ce-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #2a2418 0%, #1c1a14 100%);
  border-bottom: 1px solid rgba(222,184,135,.35);
  box-shadow: 0 4px 18px rgba(0,0,0,.55);
}
.g9ce-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.g9ce-logo {
  display: flex; align-items: center; gap: 8px;
  flex: 1; min-width: 0;
}
.g9ce-logo img { width: 30px; height: 30px; border-radius: 8px; }
.g9ce-logo-text {
  font-weight: 800; font-size: 1.7rem; color: var(--g9ce-gold);
  letter-spacing: .3px; white-space: nowrap;
}
.g9ce-logo-text span { color: var(--g9ce-mint); }

.g9ce-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; min-height: 38px; padding: 0 14px;
  border-radius: 999px; font-weight: 700; font-size: 1.35rem;
  border: 0; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.g9ce-btn:hover { transform: translateY(-1px); }
.g9ce-btn:active { transform: scale(.96); }
.g9ce-btn-login {
  background: transparent;
  border: 1.5px solid var(--g9ce-gold);
  color: var(--g9ce-gold);
}
.g9ce-btn-register {
  background: linear-gradient(135deg, #d8a966 0%, var(--g9ce-darkgold) 100%);
  color: #1a160c;
  box-shadow: 0 6px 16px rgba(184,134,11,.45);
}
.g9ce-iconbtn {
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); color: var(--g9ce-cream);
  border: 1px solid rgba(222,184,135,.25); cursor: pointer;
  font-size: 18px;
}

/* ---------- Mobile menu ---------- */
.g9ce-mobile-menu {
  position: fixed;
  top: 56px; left: 0; right: 0;
  background: #201d16;
  border-bottom: 1px solid rgba(222,184,135,.25);
  max-height: 0; overflow: hidden;
  transition: max-height .32s ease;
  z-index: 9999;
}
.g9ce-mobile-menu.g9ce-menu-open { max-height: 420px; }
.g9ce-mobile-menu ul { list-style: none; margin: 0; padding: 6px 14px; }
.g9ce-mobile-menu li { border-bottom: 1px solid rgba(222,184,135,.12); }
.g9ce-mobile-menu li:last-child { border-bottom: 0; }
.g9ce-mobile-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 4px; color: var(--g9ce-cream); font-weight: 600;
}
.g9ce-mobile-menu a i { color: var(--g9ce-gold); width: 22px; text-align: center; }

/* ---------- Hero carousel ---------- */
.g9ce-hero {
  margin-top: 64px;
  padding: 10px 0 0;
}
.g9ce-hero-track {
  position: relative;
  border-radius: var(--g9ce-radius);
  overflow: hidden;
  box-shadow: var(--g9ce-shadow);
}
.g9ce-hero-slide {
  position: relative; display: none;
}
.g9ce-hero-slide.g9ce-slide-active { display: block; }
.g9ce-hero-slide img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
}
.g9ce-hero-caption {
  position: absolute; left: 12px; bottom: 12px; right: 12px;
  background: linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,0));
  color: #fff; padding: 24px 12px 10px; border-radius: 10px;
}
.g9ce-hero-caption strong { color: var(--g9ce-gold); font-size: 1.6rem; }
.g9ce-hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  pointer-events: none;
}
.g9ce-hero-prev, .g9ce-hero-next {
  pointer-events: auto;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,.45); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; cursor: pointer; font-size: 16px;
}
.g9ce-hero-dots {
  display: flex; gap: 6px; justify-content: center; margin-top: 8px;
}
.g9ce-hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(222,184,135,.4); border: 0; cursor: pointer; padding: 0;
}
.g9ce-hero-dot.g9ce-dot-active { background: var(--g9ce-gold); width: 20px; border-radius: 6px; }

/* ---------- Sections ---------- */
.g9ce-section { padding: 18px 0; }
.g9ce-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.g9ce-section-title {
  font-size: 1.85rem; font-weight: 800; color: var(--g9ce-cream);
  display: flex; align-items: center; gap: 8px;
}
.g9ce-section-title i { color: var(--g9ce-gold); }
.g9ce-section-more { color: var(--g9ce-mint); font-size: 1.25rem; }

/* ---------- Chips ---------- */
.g9ce-chips {
  display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 10px;
  -webkit-overflow-scrolling: touch;
}
.g9ce-chip {
  flex: 0 0 auto; padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.05); color: var(--g9ce-cream);
  font-size: 1.25rem; border: 1px solid rgba(222,184,135,.25);
  cursor: pointer;
}
.g9ce-chip.g9ce-chip-active {
  background: linear-gradient(135deg, var(--g9ce-gold), var(--g9ce-darkgold));
  color: #1a160c; border-color: transparent; font-weight: 700;
}

/* ---------- Game grid ---------- */
.g9ce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.g9ce-game {
  background: var(--g9ce-card);
  border: 1px solid rgba(222,184,135,.18);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display: block; color: var(--g9ce-cream);
}
.g9ce-game:hover {
  transform: translateY(-2px);
  border-color: var(--g9ce-gold);
  box-shadow: 0 8px 18px rgba(0,0,0,.5);
}
.g9ce-game img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #15130e;
}
.g9ce-game-name {
  font-size: 1.15rem; font-weight: 600; padding: 6px 8px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-align: center;
}
.g9ce-game-tag {
  display: inline-block; font-size: 1rem; padding: 2px 8px;
  background: rgba(175,238,238,.18); color: var(--g9ce-mint);
  border-radius: 6px; margin: 0 8px 8px;
}

/* ---------- Cards / misc ---------- */
.g9ce-card {
  background: var(--g9ce-card);
  border: 1px solid rgba(222,184,135,.18);
  border-radius: var(--g9ce-radius);
  padding: 14px;
  box-shadow: var(--g9ce-shadow);
  margin-bottom: 12px;
}
.g9ce-card h3 { margin: 0 0 8px; font-size: 1.55rem; color: var(--g9ce-gold); }
.g9ce-card p { margin: 0 0 8px; color: var(--g9ce-cream); }
.g9ce-link {
  color: var(--g9ce-mint); font-weight: 700; cursor: pointer;
  border-bottom: 1px dashed currentColor;
}
.g9ce-promo-link { color: var(--g9ce-gold); font-weight: 800; }

.g9ce-cta {
  display: block; width: 100%;
  background: linear-gradient(135deg, #d8a966 0%, var(--g9ce-darkgold) 100%);
  color: #1a160c; text-align: center;
  padding: 14px; border-radius: 12px;
  font-weight: 800; font-size: 1.6rem;
  border: 0; cursor: pointer;
  box-shadow: 0 8px 18px rgba(184,134,11,.4);
}
.g9ce-cta:active { transform: scale(.98); }

.g9ce-list { margin: 0; padding-left: 18px; }
.g9ce-list li { margin-bottom: 6px; }

/* Steps */
.g9ce-steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.g9ce-steps li {
  position: relative; padding: 8px 10px 8px 44px; margin-bottom: 8px;
  background: var(--g9ce-card2); border-radius: 10px;
}
.g9ce-steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 8px; top: 8px;
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g9ce-gold), var(--g9ce-darkgold));
  color: #1a160c; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* RTP / stats */
.g9ce-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.g9ce-stat {
  background: var(--g9ce-card2); border-radius: 10px; padding: 10px;
  text-align: center; border: 1px solid rgba(222,184,135,.18);
}
.g9ce-stat b { display: block; font-size: 1.9rem; color: var(--g9ce-mint); }
.g9ce-stat span { font-size: 1.15rem; color: var(--g9ce-muted); }

/* Bar */
.g9ce-bar {
  height: 8px; background: rgba(255,255,255,.08); border-radius: 6px; overflow: hidden;
  margin: 4px 0 8px;
}
.g9ce-bar > i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--g9ce-gold), var(--g9ce-mint));
}

/* Testimonial */
.g9ce-quote {
  background: var(--g9ce-card2); border-left: 3px solid var(--g9ce-gold);
  padding: 10px 12px; border-radius: 8px; margin-bottom: 8px;
}
.g9ce-quote b { color: var(--g9ce-mint); }

/* Winners */
.g9ce-winners {
  background: var(--g9ce-card2); border-radius: 10px; padding: 8px;
  display: grid; gap: 6px;
}
.g9ce-winner {
  display: flex; justify-content: space-between;
  font-size: 1.2rem; padding: 6px 4px;
  border-bottom: 1px dashed rgba(222,184,135,.15);
}
.g9ce-winner:last-child { border-bottom: 0; }
.g9ce-winner b { color: var(--g9ce-success); }

/* Payment chips */
.g9ce-pay {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.g9ce-pay span {
  background: var(--g9ce-card2); border: 1px solid rgba(222,184,135,.2);
  padding: 6px 12px; border-radius: 8px; font-size: 1.15rem; color: var(--g9ce-cream);
}

/* Reveal animation */
.g9ce-reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.g9ce-reveal.g9ce-revealed { opacity: 1; transform: none; }

/* ---------- Footer ---------- */
.g9ce-footer {
  background: #18160f;
  border-top: 1px solid rgba(222,184,135,.25);
  padding: 18px 0 24px;
}
.g9ce-footer-brand { color: var(--g9ce-muted); font-size: 1.25rem; margin-bottom: 10px; }
.g9ce-footer-links {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px;
}
.g9ce-footer-links a {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(222,184,135,.2);
  padding: 6px 10px; border-radius: 8px; font-size: 1.15rem; color: var(--g9ce-cream);
}
.g9ce-footer-copy { color: var(--g9ce-muted); font-size: 1.1rem; }

/* ---------- Bottom nav ---------- */
.g9ce-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 62px; z-index: 1000;
  background: linear-gradient(180deg, #2a2418 0%, #15130d 100%);
  border-top: 1px solid rgba(222,184,135,.3);
  display: flex; justify-content: space-around; align-items: center;
  box-shadow: 0 -4px 16px rgba(0,0,0,.5);
}
.g9ce-navbtn {
  flex: 1; min-width: 60px; min-height: 60px;
  background: transparent; border: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; color: var(--g9ce-muted); text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color .15s ease, transform .15s ease;
}
.g9ce-navbtn:active { transform: scale(.92); }
.g9ce-navbtn .g9ce-navicon { font-size: 22px; line-height: 1; }
.g9ce-navbtn .g9ce-navlabel { font-size: 1.05rem; font-weight: 600; }
.g9ce-navbtn.g9ce-navbtn-active { color: var(--g9ce-gold); }
.g9ce-navbtn-promo { color: var(--g9ce-mint); }
.g9ce-navbtn-promo .g9ce-navicon {
  background: linear-gradient(135deg, var(--g9ce-gold), var(--g9ce-darkgold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  .g9ce-bottomnav { display: none; }
  .g9ce-wrapper, .g9ce-container, .g9ce-header-inner { max-width: 720px; }
  main { padding-bottom: 30px; }
}

/* Small screens guard */
@media (max-width: 768px) {
  main { padding-bottom: 84px; }
}

/* ---------- Help page hero ---------- */
.g9ce-pagehero {
  margin-top: 64px;
  padding: 22px 18px 20px;
  border-radius: var(--g9ce-radius);
  background:
    radial-gradient(320px 140px at 85% -20%, rgba(175,238,238,.22), transparent 70%),
    radial-gradient(260px 160px at -10% 110%, rgba(184,134,11,.35), transparent 70%),
    linear-gradient(150deg, #2c2517 0%, #1d1a12 65%, #191610 100%);
  border: 1px solid rgba(222,184,135,.3);
  box-shadow: var(--g9ce-shadow);
  position: relative;
  overflow: hidden;
}
.g9ce-pagehero::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,248,220,.025) 0 2px, transparent 2px 9px);
  pointer-events: none;
}
.g9ce-pagehero-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px; color: #1a160c;
  background: linear-gradient(135deg, var(--g9ce-gold), var(--g9ce-darkgold));
  box-shadow: 0 6px 18px rgba(184,134,11,.5);
  margin-bottom: 10px;
  animation: g9ce-pulse 2.6s ease-in-out infinite;
}
@keyframes g9ce-pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.04); }
}
.g9ce-pagehero h1 {
  margin: 0 0 6px; font-size: 2.05rem; line-height: 1.3; color: var(--g9ce-cream);
}
.g9ce-pagehero h1 span { color: var(--g9ce-mint); }
.g9ce-pagehero p { margin: 0; color: var(--g9ce-muted); font-size: 1.3rem; }

/* ---------- Tag row ---------- */
.g9ce-tagrow { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 4px; }
.g9ce-tag {
  font-size: 1.05rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  background: rgba(175,238,238,.14); color: var(--g9ce-mint);
  border: 1px solid rgba(175,238,238,.28);
}
.g9ce-tag-gold {
  background: rgba(222,184,135,.14); color: var(--g9ce-gold);
  border-color: rgba(222,184,135,.32);
}

/* ---------- Check / warn lists ---------- */
.g9ce-checklist { list-style: none; margin: 0; padding: 0; }
.g9ce-checklist li {
  position: relative; padding: 8px 8px 8px 32px; margin-bottom: 7px;
  background: var(--g9ce-card2); border-radius: 10px;
  border: 1px solid rgba(222,184,135,.12);
}
.g9ce-checklist li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 10px; top: 9px; color: var(--g9ce-success); font-size: 1.3rem;
}
.g9ce-warnlist { list-style: none; margin: 0; padding: 0; }
.g9ce-warnlist li {
  position: relative; padding: 8px 8px 8px 32px; margin-bottom: 7px;
  background: rgba(224,82,79,.08); border-radius: 10px;
  border: 1px solid rgba(224,82,79,.28);
}
.g9ce-warnlist li::before {
  content: "\f071"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 10px; top: 9px; color: var(--g9ce-danger); font-size: 1.25rem;
}

/* ---------- Feature tiles ---------- */
.g9ce-tilegrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.g9ce-tile {
  background: var(--g9ce-card2); border: 1px solid rgba(222,184,135,.16);
  border-radius: 12px; padding: 12px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.g9ce-tile:hover {
  transform: translateY(-2px); border-color: var(--g9ce-mint);
  box-shadow: 0 8px 18px rgba(0,0,0,.45);
}
.g9ce-tile i { font-size: 2rem; color: var(--g9ce-gold); margin-bottom: 6px; display: block; }
.g9ce-tile b { display: block; color: var(--g9ce-cream); font-size: 1.3rem; margin-bottom: 3px; }
.g9ce-tile span { font-size: 1.1rem; color: var(--g9ce-muted); line-height: 1.4; display: block; }

/* ---------- FAQ items ---------- */
.g9ce-faq-item {
  background: var(--g9ce-card2); border-radius: 10px; padding: 10px 12px;
  margin-bottom: 8px; border-left: 3px solid var(--g9ce-mint);
}
.g9ce-faq-item h3 { margin: 0 0 4px; font-size: 1.35rem; color: var(--g9ce-gold); }
.g9ce-faq-item p { margin: 0; font-size: 1.25rem; color: var(--g9ce-cream); }

/* ---------- Trust score strip ---------- */
.g9ce-score {
  display: flex; align-items: center; gap: 10px;
  background: var(--g9ce-card2); border-radius: 10px; padding: 10px 12px;
  margin-bottom: 8px; border: 1px solid rgba(222,184,135,.14);
}
.g9ce-score b {
  font-size: 1.6rem; color: var(--g9ce-mint); min-width: 52px; text-align: center;
}
.g9ce-score .g9ce-bar { flex: 1; margin: 0; }
.g9ce-score span { font-size: 1.1rem; color: var(--g9ce-muted); min-width: 84px; }
