/* =========================================================
 * bingo plus - bingo-plus.css
 * Shared visual layer (core basefiles build)
 * Every custom class uses the dynamic prefix "ge8f-".
 * Root font 62.5% => 1rem = 10px. Mobile-first, max-width 430px.
 * Palette: #00FA9A | #778899 | #0E1621 | #2C3E50 | #C9C9FF
 * =======================================================*/

:root {
  --ge8f-primary: #00FA9A;
  --ge8f-secondary: #778899;
  --ge8f-bg: #0E1621;
  --ge8f-bg-alt: #2C3E50;
  --ge8f-accent: #C9C9FF;
  --ge8f-text: #F4F7FB;
  --ge8f-muted: #A9B4C0;
  --ge8f-border: rgba(0, 250, 154, 0.18);
  --ge8f-radius: 12px;
  --ge8f-radius-sm: 8px;
  --ge8f-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: radial-gradient(circle at top, #15243a 0%, var(--ge8f-bg) 55%);
  color: var(--ge8f-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--ge8f-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.ge8f-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}

main.ge8f-main {
  padding-bottom: 80px; /* reserve space for fixed bottom nav */
}

/* ---------- Header ---------- */
.ge8f-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(14,22,33,0.96), rgba(14,22,33,0.86));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ge8f-border);
}

.ge8f-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  gap: 0.8rem;
}

.ge8f-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ge8f-text);
}

.ge8f-brand img { width: 30px; height: 30px; border-radius: 6px; }

.ge8f-brand-name {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  color: var(--ge8f-text);
}
.ge8f-brand-name span { color: var(--ge8f-primary); }

.ge8f-header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.ge8f-icon-btn {
  background: transparent;
  border: 0;
  color: var(--ge8f-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.ge8f-icon-btn:hover { color: var(--ge8f-primary); }

.ge8f-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  padding: 0.85rem 1.5rem;
  font-size: 1.4rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  min-height: 40px;
}
.ge8f-btn:hover { text-decoration: none; transform: translateY(-1px); }

.ge8f-btn-primary {
  background: linear-gradient(135deg, var(--ge8f-primary), #18d488);
  color: #062017;
  box-shadow: 0 6px 18px rgba(0, 250, 154, 0.35);
}
.ge8f-btn-ghost {
  background: rgba(201, 201, 255, 0.10);
  color: var(--ge8f-accent);
  border: 1px solid var(--ge8f-accent);
}
.ge8f-btn-block { width: 100%; }

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

.ge8f-mobile-menu {
  position: fixed;
  top: 0; right: -80%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--ge8f-bg);
  border-left: 1px solid var(--ge8f-border);
  padding: 7rem 1.6rem 2rem;
  transform: translateX(0);
  transition: right 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
}
.ge8f-menu-open { right: 0; }

.ge8f-mobile-menu h3 {
  font-size: 1.5rem;
  color: var(--ge8f-primary);
  margin: 1.4rem 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ge8f-mobile-menu a {
  display: block;
  padding: 1rem 0.4rem;
  color: var(--ge8f-text);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1.45rem;
}
.ge8f-mobile-menu a:hover { color: var(--ge8f-primary); text-decoration: none; padding-left: 0.8rem; }

.ge8f-menu-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: transparent;
  border: 0;
  color: var(--ge8f-text);
  font-size: 2.2rem;
  cursor: pointer;
}

/* ---------- Page padding under fixed header ---------- */
.ge8f-page { padding-top: 6.2rem; }
.ge8f-section { padding: 2.2rem 1.4rem; }
.ge8f-section-alt { background: rgba(44, 62, 80, 0.30); }

.ge8f-eyebrow {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ge8f-primary);
  margin-bottom: 0.6rem;
}

.ge8f-h1 {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 1rem;
}
.ge8f-h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
  color: var(--ge8f-text);
}
.ge8f-h2 span { color: var(--ge8f-primary); }
.ge8f-h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 1.4rem 0 0.6rem;
  color: var(--ge8f-accent);
}
.ge8f-lead { color: var(--ge8f-muted); font-size: 1.45rem; }
.ge8f-text-muted { color: var(--ge8f-muted); }

/* ---------- Banner carousel ---------- */
.ge8f-banner {
  position: relative;
  border-radius: var(--ge8f-radius);
  overflow: hidden;
  box-shadow: var(--ge8f-shadow);
  margin-bottom: 1.4rem;
}
.ge8f-banner-track { position: relative; }
.ge8f-banner-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.ge8f-banner-slide img { width: 100%; height: 180px; object-fit: cover; }
.ge8f-banner-active { display: block; animation: ge8f-fade 0.6s ease; }
@keyframes ge8f-fade { from { opacity: 0.4; } to { opacity: 1; } }

.ge8f-banner-dots {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 0.5rem;
}
.ge8f-banner-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 0; cursor: pointer; padding: 0;
}
.ge8f-dot-active { background: var(--ge8f-primary); width: 22px; border-radius: 4px; }

/* ---------- CTA banner ---------- */
.ge8f-cta {
  background: linear-gradient(135deg, rgba(0,250,154,0.14), rgba(201,201,255,0.10));
  border: 1px solid var(--ge8f-border);
  border-radius: var(--ge8f-radius);
  padding: 1.8rem;
  text-align: center;
}
.ge8f-cta h2 { margin-bottom: 0.6rem; }
.ge8f-cta .ge8f-lead { margin-bottom: 1.2rem; }

/* ---------- Game grid ---------- */
.ge8f-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.ge8f-game-card {
  display: block;
  background: linear-gradient(180deg, #18324a, #11212f);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--ge8f-radius-sm);
  padding: 0.7rem 0.5rem;
  text-align: center;
  transition: transform 0.15s ease, border-color 0.2s ease;
  cursor: pointer;
}
.ge8f-game-card:hover {
  transform: translateY(-2px);
  border-color: var(--ge8f-primary);
  text-decoration: none;
}
.ge8f-game-card img {
  width: 100%; height: 72px; object-fit: cover;
  border-radius: 6px; margin-bottom: 0.5rem;
}
.ge8f-game-card .ge8f-game-name {
  font-size: 1.1rem;
  color: var(--ge8f-text);
  font-weight: 600;
  line-height: 1.2;
  word-break: break-word;
  min-height: 2.6rem;
  display: flex; align-items: center; justify-content: center;
}

.ge8f-cat-title {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.7rem; font-weight: 800;
  color: var(--ge8f-text);
  margin: 1.8rem 0 1rem;
}
.ge8f-cat-title i { color: var(--ge8f-primary); font-size: 2rem; }

/* ---------- Feature / info cards ---------- */
.ge8f-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.ge8f-card {
  background: rgba(44, 62, 80, 0.45);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--ge8f-radius);
  padding: 1.3rem;
}
.ge8f-card .ge8f-card-ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(0,250,154,0.14);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ge8f-primary);
  font-size: 2rem; margin-bottom: 0.7rem;
}
.ge8f-card h3 { margin-bottom: 0.4rem; }
.ge8f-card p { color: var(--ge8f-muted); font-size: 1.3rem; }

/* ---------- List ---------- */
.ge8f-list { list-style: none; padding: 0; }
.ge8f-list li {
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  color: var(--ge8f-muted);
}
.ge8f-list li strong { color: var(--ge8f-accent); }

/* ---------- RTP table ---------- */
.ge8f-rtp {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
}
.ge8f-rtp th, .ge8f-rtp td {
  padding: 0.9rem 0.6rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ge8f-rtp th { color: var(--ge8f-primary); font-size: 1.2rem; text-transform: uppercase; }
.ge8f-rtp td strong { color: var(--ge8f-accent); }

/* ---------- Testimonials ---------- */
.ge8f-review {
  background: rgba(44, 62, 80, 0.45);
  border-left: 3px solid var(--ge8f-primary);
  padding: 1.2rem;
  border-radius: var(--ge8f-radius-sm);
  margin-bottom: 1rem;
}
.ge8f-review .ge8f-stars { color: #FFD166; margin-bottom: 0.4rem; font-size: 1.3rem; }
.ge8f-review .ge8f-review-author { color: var(--ge8f-accent); font-size: 1.2rem; margin-top: 0.5rem; }

/* ---------- Winners strip ---------- */
.ge8f-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1.3rem;
}
.ge8f-winner-row strong { color: var(--ge8f-primary); }

/* ---------- Payment chips ---------- */
.ge8f-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.ge8f-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-size: 1.25rem;
  color: var(--ge8f-text);
}

/* ---------- Footer ---------- */
.ge8f-footer {
  background: linear-gradient(180deg, var(--ge8f-bg), #060d15);
  border-top: 1px solid var(--ge8f-border);
  padding: 2.4rem 1.4rem 1rem;
  color: var(--ge8f-muted);
}
.ge8f-footer h3 {
  color: var(--ge8f-text);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.ge8f-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem;
  margin: 1rem 0;
}
.ge8f-footer-links a { color: var(--ge8f-muted); font-size: 1.3rem; }
.ge8f-footer-cta {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin: 1.2rem 0;
}
.ge8f-footer-bottom {
  text-align: center; font-size: 1.2rem; color: var(--ge8f-secondary);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.2rem; margin-top: 1rem;
}

/* ---------- Bottom navigation ---------- */
.ge8f-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: rgba(8,14,22,0.98);
  border-top: 1px solid var(--ge8f-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
}
.ge8f-bottom-nav-btn {
  flex: 1 1 0;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: 0;
  color: var(--ge8f-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.18s ease, transform 0.18s ease;
  padding: 0.4rem;
}
.ge8f-bottom-nav-btn .material-icons,
.ge8f-bottom-nav-btn ion-icon,
.ge8f-bottom-nav-btn i { font-size: 24px; }
.ge8f-bottom-nav-btn:hover { color: var(--ge8f-primary); transform: translateY(-1px); }
.ge8f-nav-current { color: var(--ge8f-primary); }
.ge8f-nav-current::after {
  content: ''; display: block; width: 24px; height: 3px;
  background: var(--ge8f-primary); border-radius: 2px; margin-top: 2px;
}

/* ---------- Reveal animation ---------- */
.ge8f-reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.ge8f-visible { opacity: 1; transform: translateY(0); }

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  .ge8f-bottom-nav { display: none; }
  main.ge8f-main { padding-bottom: 0; }
  .ge8f-grid { grid-template-columns: repeat(5, 1fr); }
  .ge8f-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Small phones ---------- */
@media (max-width: 360px) {
  .ge8f-grid { grid-template-columns: repeat(2, 1fr); }
  .ge8f-brand-name { font-size: 1.5rem; }
}
