/* =============================================================
   BingoFun (bingofun.cyou) - Mobile-first HTML5 base styles.
   All custom classes use the "ga1c-" prefix.
   Palette: #006400 (deep green bg), #00FA9A (mint accent),
            #2E4057 (slate text), #0a3d0a (alt bg).
   ============================================================= */

:root {
  --ga1c-primary: #006400;
  --ga1c-accent: #00FA9A;
  --ga1c-slate: #2E4057;
  --ga1c-bg: #052b05;
  --ga1c-bg-alt: #0a3d0a;
  --ga1c-card: #0d4a0d;
  --ga1c-text: #f3fff7;
  --ga1c-muted: #b9e6c9;
  --ga1c-gold: #ffd24a;
  --ga1c-danger: #ff5a5a;
  --ga1c-radius: 14px;
  --ga1c-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --ga1c-header-h: 60px;
  --ga1c-bottom-h: 64px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: linear-gradient(160deg, var(--ga1c-bg) 0%, var(--ga1c-bg-alt) 60%, #073d07 100%);
  color: var(--ga1c-text);
  line-height: 1.5;
  font-size: 1.6rem;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--ga1c-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0 0 0.6em; line-height: 1.25; font-weight: 700; }
p { margin: 0 0 1em; }

.ga1c-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 14px; }
.ga1c-wrapper { min-height: 100vh; display: flex; flex-direction: column; }

/* =============================================================
   Header / Top Navigation
   ============================================================= */
.ga1c-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ga1c-header-h);
  background: linear-gradient(90deg, #063406 0%, #0b4f0b 100%);
  border-bottom: 2px solid var(--ga1c-accent);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.ga1c-header-inner {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ga1c-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ga1c-text);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.3px;
}
.ga1c-logo img { width: 30px; height: 30px; border-radius: 8px; }
.ga1c-logo .ga1c-logo-accent { color: var(--ga1c-accent); }
.ga1c-logo .ga1c-logo-glow { text-shadow: 0 0 6px rgba(0, 250, 154, 0.7); }

.ga1c-spacer { flex: 1; }

.ga1c-menu-btn {
  background: transparent;
  border: 1px solid var(--ga1c-accent);
  color: var(--ga1c-accent);
  width: 40px; height: 40px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 2rem;
}
.ga1c-menu-btn:hover { background: rgba(0, 250, 154, 0.12); }

.ga1c-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.35rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.ga1c-btn:active { transform: scale(0.96); }
.ga1c-btn-primary {
  background: linear-gradient(135deg, var(--ga1c-accent) 0%, #00c878 100%);
  color: #042a04;
  box-shadow: 0 4px 12px rgba(0, 250, 154, 0.35);
}
.ga1c-btn-primary:hover { text-decoration: none; box-shadow: 0 6px 16px rgba(0, 250, 154, 0.5); }
.ga1c-btn-ghost {
  background: transparent;
  color: var(--ga1c-accent);
  border: 1.5px solid var(--ga1c-accent);
}
.ga1c-btn-ghost:hover { background: rgba(0, 250, 154, 0.1); text-decoration: none; }
.ga1c-btn-gold {
  background: linear-gradient(135deg, var(--ga1c-gold) 0%, #ff9d00 100%);
  color: #2a1d00;
  box-shadow: 0 4px 12px rgba(255, 210, 74, 0.35);
}
.ga1c-btn-block { display: flex; width: 100%; }
.ga1c-btn-lg { padding: 14px 22px; font-size: 1.6rem; }

.ga1c-header-actions { display: flex; gap: 8px; align-items: center; }

/* =============================================================
   Mobile slide-in menu + overlay
   ============================================================= */
.ga1c-mobile-menu {
  position: fixed;
  top: 0; right: -85%;
  width: 78%; max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #062c06 0%, #0a3d0a 100%);
  border-left: 2px solid var(--ga1c-accent);
  padding: 22px 18px;
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.ga1c-menu-open { right: 0; }
.ga1c-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.ga1c-overlay-show { opacity: 1; pointer-events: auto; }
.ga1c-no-scroll { overflow: hidden; }

.ga1c-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.ga1c-menu-close {
  background: transparent; border: none; color: var(--ga1c-text);
  font-size: 2.6rem; line-height: 1; cursor: pointer;
}
.ga1c-menu-section-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--ga1c-accent);
  margin: 18px 0 8px;
}
.ga1c-menu-link {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--ga1c-text);
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(0, 250, 154, 0.12);
}
.ga1c-menu-link:hover { background: rgba(0, 250, 154, 0.1); text-decoration: none; }
.ga1c-menu-link i { color: var(--ga1c-accent); margin-right: 8px; }
.ga1c-menu-cta { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }

/* =============================================================
   Main content wrapper (mobile gets bottom padding for nav)
   ============================================================= */
.ga1c-main { flex: 1; padding-top: calc(var(--ga1c-header-h) + 12px); }
@media (max-width: 768px) {
  .ga1c-main { padding-bottom: calc(var(--ga1c-bottom-h) + 18px); }
}

/* =============================================================
   Hero Carousel
   ============================================================= */
.ga1c-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--ga1c-shadow);
  margin-bottom: 18px;
}
.ga1c-slides { position: relative; }
.ga1c-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.ga1c-slide-active { display: block; }
.ga1c-slide img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.ga1c-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,43,5,0.15) 0%, rgba(5,43,5,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px 16px;
}
.ga1c-slide-title {
  font-size: 2.2rem; font-weight: 800; color: var(--ga1c-accent);
  margin-bottom: 4px; text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.ga1c-slide-sub { font-size: 1.35rem; color: var(--ga1c-text); margin-bottom: 10px; }
.ga1c-dots {
  position: absolute; bottom: 10px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
}
.ga1c-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none; cursor: pointer; padding: 0;
}
.ga1c-dot-active { background: var(--ga1c-accent); transform: scale(1.2); }

/* =============================================================
   Section / Module scaffolding
   ============================================================= */
.ga1c-section { margin-bottom: 26px; }
.ga1c-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.ga1c-section-title {
  font-size: 1.9rem; color: var(--ga1c-text);
  display: flex; align-items: center; gap: 8px;
}
.ga1c-section-title i { color: var(--ga1c-accent); }
.ga1c-section-link { font-size: 1.3rem; color: var(--ga1c-accent); font-weight: 600; }
.ga1c-card {
  background: var(--ga1c-card);
  border: 1px solid rgba(0, 250, 154, 0.18);
  border-radius: var(--ga1c-radius);
  padding: 16px;
  box-shadow: var(--ga1c-shadow);
}
.ga1c-card h3 { color: var(--ga1c-accent); font-size: 1.6rem; }

/* =============================================================
   Category chips
   ============================================================= */
.ga1c-chips {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: none;
}
.ga1c-chips::-webkit-scrollbar { display: none; }
.ga1c-chip {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 250, 154, 0.08);
  color: var(--ga1c-text);
  border: 1px solid rgba(0, 250, 154, 0.25);
  font-size: 1.3rem; font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.ga1c-chip:hover { background: rgba(0, 250, 154, 0.18); }
.ga1c-chip-active {
  background: var(--ga1c-accent); color: #042a04; border-color: var(--ga1c-accent);
}

/* =============================================================
   Game grid + game tiles
   ============================================================= */
.ga1c-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ga1c-tile {
  background: linear-gradient(160deg, #0e4d0e 0%, #0a3a0a 100%);
  border: 1px solid rgba(0, 250, 154, 0.18);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
  display: block;
}
.ga1c-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 250, 154, 0.25);
  text-decoration: none;
}
.ga1c-tile-img {
  width: 100%; aspect-ratio: 1/1;
  background: #062806;
}
.ga1c-tile-img img { width: 100%; height: 100%; object-fit: cover; }
.ga1c-tile-name {
  font-size: 1.15rem;
  padding: 6px 4px;
  color: var(--ga1c-text);
  font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* =============================================================
   Feature list + value props
   ============================================================= */
.ga1c-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.ga1c-feature {
  background: rgba(0, 250, 154, 0.06);
  border: 1px solid rgba(0, 250, 154, 0.2);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.ga1c-feature i { font-size: 2.6rem; color: var(--ga1c-accent); margin-bottom: 6px; display: block; }
.ga1c-feature-title { font-size: 1.4rem; font-weight: 700; color: var(--ga1c-text); margin-bottom: 4px; }
.ga1c-feature-text { font-size: 1.2rem; color: var(--ga1c-muted); line-height: 1.35; }

/* =============================================================
   Stat tiles (RTP / winners)
   ============================================================= */
.ga1c-stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.ga1c-stat {
  background: linear-gradient(135deg, #0a3d0a 0%, #062806 100%);
  border-radius: 12px; padding: 12px;
  border: 1px solid rgba(0, 250, 154, 0.2);
  text-align: center;
}
.ga1c-stat-value { font-size: 2.2rem; font-weight: 800; color: var(--ga1c-accent); }
.ga1c-stat-label { font-size: 1.15rem; color: var(--ga1c-muted); text-transform: uppercase; letter-spacing: 0.6px; }

/* =============================================================
   Winners list
   ============================================================= */
.ga1c-winner {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  background: rgba(0, 250, 154, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--ga1c-accent);
  margin-bottom: 8px;
}
.ga1c-winner-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ga1c-accent); color: #042a04;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.4rem;
}
.ga1c-winner-info { flex: 1; }
.ga1c-winner-name { font-size: 1.3rem; font-weight: 700; color: var(--ga1c-text); }
.ga1c-winner-game { font-size: 1.15rem; color: var(--ga1c-muted); }
.ga1c-winner-amount { font-size: 1.4rem; font-weight: 800; color: var(--ga1c-gold); }

/* =============================================================
   Testimonials
   ============================================================= */
.ga1c-testimonial {
  background: rgba(0, 250, 154, 0.06);
  border: 1px solid rgba(0, 250, 154, 0.2);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}
.ga1c-testimonial-stars { color: var(--ga1c-gold); font-size: 1.3rem; margin-bottom: 6px; }
.ga1c-testimonial-text { font-size: 1.3rem; color: var(--ga1c-text); margin-bottom: 8px; }
.ga1c-testimonial-author { font-size: 1.2rem; color: var(--ga1c-muted); }

/* =============================================================
   Payment methods
   ============================================================= */
.ga1c-pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ga1c-pay-item {
  background: #fff; color: #062806;
  border-radius: 10px;
  padding: 12px 6px;
  text-align: center;
  font-weight: 700; font-size: 1.25rem;
  min-height: 56px;
  display: flex; align-items: center; justify-content: center;
}
.ga1c-pay-item i { font-size: 1.8rem; color: var(--ga1c-primary); }

/* =============================================================
   App download CTA
   ============================================================= */
.ga1c-app-cta {
  background: linear-gradient(135deg, #0a4d0a 0%, #006400 100%);
  border: 1px solid var(--ga1c-accent);
  border-radius: var(--ga1c-radius);
  padding: 18px 16px;
  text-align: center;
}
.ga1c-app-cta h3 { color: var(--ga1c-accent); font-size: 1.8rem; }
.ga1c-app-cta p { color: var(--ga1c-muted); font-size: 1.3rem; }
.ga1c-app-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }

/* =============================================================
   FAQ accordion
   ============================================================= */
.ga1c-faq-item {
  background: rgba(0, 250, 154, 0.05);
  border: 1px solid rgba(0, 250, 154, 0.18);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.ga1c-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 13px 14px;
  color: var(--ga1c-text);
  font-size: 1.4rem; font-weight: 600;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.ga1c-faq-q i { color: var(--ga1c-accent); transition: transform 0.2s ease; }
.ga1c-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 14px;
  color: var(--ga1c-muted);
  font-size: 1.3rem;
}
.ga1c-faq-open .ga1c-faq-a { max-height: 320px; padding: 0 14px 14px; }
.ga1c-faq-open .ga1c-faq-q i { transform: rotate(45deg); }

/* =============================================================
   Long-form SEO content
   ============================================================= */
.ga1c-prose { font-size: 1.4rem; color: var(--ga1c-text); }
.ga1c-prose h2 { color: var(--ga1c-accent); font-size: 1.8rem; margin-top: 18px; }
.ga1c-prose h3 { color: var(--ga1c-text); font-size: 1.55rem; margin-top: 14px; }
.ga1c-prose p { margin-bottom: 0.9em; color: var(--ga1c-muted); }
.ga1c-prose ul { padding-left: 1.2em; margin-bottom: 1em; }
.ga1c-prose li { margin-bottom: 0.5em; color: var(--ga1c-muted); }
.ga1c-prose strong { color: var(--ga1c-accent); font-weight: 700; }
.ga1c-prose a { font-weight: 600; }

/* =============================================================
   Footer
   ============================================================= */
.ga1c-footer {
  background: linear-gradient(180deg, #062806 0%, #041a04 100%);
  border-top: 2px solid var(--ga1c-accent);
  padding: 22px 14px 90px;
  margin-top: 24px;
}
.ga1c-footer-inner { max-width: 430px; margin: 0 auto; }
.ga1c-footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.ga1c-footer-brand img { width: 28px; height: 28px; border-radius: 6px; }
.ga1c-footer-brand span { font-weight: 800; font-size: 1.7rem; color: var(--ga1c-text); }
.ga1c-footer-desc { color: var(--ga1c-muted); font-size: 1.25rem; margin-bottom: 16px; }
.ga1c-footer-promos {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  margin-bottom: 18px;
}
.ga1c-footer-links { display: flex; flex-wrap: wrap; gap: 6px 12px; margin-bottom: 14px; }
.ga1c-footer-links a { font-size: 1.2rem; color: var(--ga1c-muted); }
.ga1c-footer-legal { font-size: 1.15rem; color: var(--ga1c-muted); border-top: 1px solid rgba(0,250,154,0.15); padding-top: 12px; }
.ga1c-footer-legal p { margin-bottom: 4px; }

/* =============================================================
   Mobile bottom navigation (5 buttons)
   ============================================================= */
.ga1c-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--ga1c-bottom-h);
  background: linear-gradient(180deg, #0a3d0a 0%, #052b05 100%);
  border-top: 2px solid var(--ga1c-accent);
  display: flex; justify-content: space-around; align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.4);
}
.ga1c-nav-item {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent; border: none;
  color: var(--ga1c-text);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  cursor: pointer;
  padding: 6px 2px;
  transition: transform 0.15s ease, color 0.15s ease;
  position: relative;
  text-decoration: none;
}
.ga1c-nav-item:hover { text-decoration: none; }
.ga1c-nav-item:active { transform: scale(0.92); }
.ga1c-nav-item i, .ga1c-nav-item span.material-symbols-outlined {
  font-size: 24px;
  color: var(--ga1c-muted);
  transition: color 0.15s ease;
}
.ga1c-nav-label { font-size: 1.05rem; color: var(--ga1c-muted); font-weight: 600; }
.ga1c-nav-item.ga1c-active i,
.ga1c-nav-item.ga1c-active span.material-symbols-outlined,
.ga1c-nav-item.ga1c-active .ga1c-nav-label { color: var(--ga1c-accent); }
.ga1c-nav-item.ga1c-active::before {
  content: ""; position: absolute; top: 0; left: 20%; right: 20%;
  height: 3px; background: var(--ga1c-accent); border-radius: 0 0 6px 6px;
}
.ga1c-nav-badge {
  position: absolute; top: 4px; right: 18%;
  background: var(--ga1c-danger); color: #fff;
  font-size: 0.95rem; padding: 1px 5px;
  border-radius: 999px; font-weight: 700;
}
@media (min-width: 769px) {
  .ga1c-bottom-nav { display: none; }
  .ga1c-footer { padding-bottom: 30px; }
}

/* =============================================================
   Back to top + toast
   ============================================================= */
.ga1c-back-top {
  position: fixed; right: 14px; bottom: calc(var(--ga1c-bottom-h) + 12px);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ga1c-accent); color: #042a04;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; box-shadow: var(--ga1c-shadow);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 900;
}
.ga1c-back-top-show { opacity: 1; pointer-events: auto; }
.ga1c-back-top:active { transform: scale(0.9); }

.ga1c-toast {
  position: fixed; left: 50%; bottom: calc(var(--ga1c-bottom-h) + 24px);
  transform: translateX(-50%) translateY(20px);
  background: rgba(10, 61, 10, 0.96);
  border: 1px solid var(--ga1c-accent);
  color: var(--ga1c-text);
  padding: 10px 18px; border-radius: 10px;
  font-size: 1.3rem; font-weight: 600;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9990; max-width: 90vw; text-align: center;
}
.ga1c-toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =============================================================
   Helpers
   ============================================================= */
.ga1c-text-accent { color: var(--ga1c-accent); }
.ga1c-text-gold { color: var(--ga1c-gold); }
.ga1c-center { text-align: center; }
.ga1c-mt { margin-top: 14px; }
.ga1c-mb { margin-bottom: 14px; }
.ga1c-hidden { display: none !important; }
.ga1c-pipe { color: rgba(0,250,154,0.3); margin: 0 6px; }

/* Desktop tweaks - widen the centered column a touch for tablet+ preview */
@media (min-width: 769px) {
  .ga1c-container { max-width: 480px; }
}
