/* ============================================================
   fb009 - style-837e.css | prefix "g7e9-"
   Palette: #1A1A2E | #F0F0F0 | #4682B4 | #00BFFF
   Dark = background, light = text. Mobile-first.
   ============================================================ */
:root {
  --g7e9-primary: #00BFFF; --g7e9-secondary: #4682B4;
  --g7e9-bg: #1A1A2E; --g7e9-bg-2: #15152a; --g7e9-bg-3: #20203a;
  --g7e9-text: #F0F0F0; --g7e9-text-muted: #b9c2d0;
  --g7e9-accent: #FFD23F; --g7e9-danger: #ff5a5f; --g7e9-success: #2ecc71;
  --g7e9-border: rgba(70,130,180,0.35); --g7e9-radius: 14px;
  --g7e9-shadow: 0 6px 24px rgba(0,0,0,0.35);
  --g7e9-header-h: 58px; --g7e9-bottomnav-h: 62px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; font-size: 62.5%; }
html, body {
  background: var(--g7e9-bg); color: var(--g7e9-text);
  font-family: "Segoe UI","Roboto","Helvetica Neue",Arial,sans-serif;
  font-size: 1.6rem; line-height: 1.5rem; min-height: 100%; overflow-x: hidden;
}
a { color: var(--g7e9-primary); text-decoration: none; }
a:hover, a:focus { color: var(--g7e9-accent); }
img { max-width: 100%; display: block; }

/* Layout helpers */
.g7e9-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 12px; }
.g7e9-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }
.g7e9-section { padding: 22px 12px; }
.g7e9-section-alt { background: var(--g7e9-bg-2); }
.g7e9-h1 { font-size: 2.2rem; line-height: 1.25; font-weight: 800; color: var(--g7e9-text); margin-bottom: 10px; }
.g7e9-h2 { font-size: 1.85rem; line-height: 1.3; font-weight: 700; color: var(--g7e9-primary); margin-bottom: 10px; }
.g7e9-h3 { font-size: 1.6rem; font-weight: 700; color: var(--g7e9-text); margin-bottom: 8px; }
.g7e9-p { font-size: 1.4rem; line-height: 1.55; color: var(--g7e9-text-muted); margin-bottom: 10px; }
.g7e9-lead { font-size: 1.5rem; line-height: 1.6; color: var(--g7e9-text); }
.g7e9-text-link { color: var(--g7e9-accent); font-weight: 600; cursor: pointer; }
.g7e9-text-link:hover { color: var(--g7e9-primary); text-decoration: underline; }

/* Buttons */
.g7e9-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 18px; border: none; border-radius: 999px;
  font-size: 1.35rem; font-weight: 700; cursor: pointer; text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.g7e9-btn-primary { background: linear-gradient(135deg, var(--g7e9-primary), var(--g7e9-secondary)); color: #0b1f2a; box-shadow: 0 4px 14px rgba(0,191,255,0.35); }
.g7e9-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,191,255,0.5); }
.g7e9-btn-accent { background: linear-gradient(135deg, var(--g7e9-accent), #ffb547); color: #2a1a00; box-shadow: 0 4px 14px rgba(255,210,63,0.3); }
.g7e9-btn-ghost { background: transparent; color: var(--g7e9-text); border: 1.5px solid var(--g7e9-border); }
.g7e9-btn-block { width: 100%; }
.g7e9-btn-sm { min-height: 36px; padding: 6px 12px; font-size: 1.2rem; }
.g7e9-btn-lg { min-height: 52px; padding: 14px 24px; font-size: 1.55rem; }

/* Header */
.g7e9-header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--g7e9-header-h);
  background: rgba(21,21,42,0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--g7e9-border); z-index: 1000;
  display: flex; align-items: center;
}
.g7e9-header-inner { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 10px; display: flex; align-items: center; gap: 8px; }
.g7e9-logo { display: flex; align-items: center; gap: 8px; color: var(--g7e9-text); font-weight: 800; font-size: 1.5rem; }
.g7e9-logo img { width: 28px; height: 28px; border-radius: 6px; }
.g7e9-logo span { background: linear-gradient(90deg, var(--g7e9-primary), var(--g7e9-accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.g7e9-header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.g7e9-menu-btn { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; background: transparent; border: none; color: var(--g7e9-text); font-size: 2rem; cursor: pointer; border-radius: 8px; }
.g7e9-menu-btn.g7e9-active { background: rgba(0,191,255,0.15); color: var(--g7e9-primary); }

/* Mobile menu drawer */
.g7e9-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: opacity .2s ease; z-index: 9998; }
.g7e9-menu-overlay.g7e9-menu-open { opacity: 1; visibility: visible; }
.g7e9-mobile-menu {
  position: fixed; top: 0; right: -80%; width: 80%; max-width: 320px; height: 100vh;
  background: var(--g7e9-bg-2); border-left: 1px solid var(--g7e9-border);
  padding: 20px 16px; transition: right .25s ease; z-index: 9999; overflow-y: auto;
}
.g7e9-mobile-menu.g7e9-menu-open { right: 0; }
.g7e9-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.g7e9-menu-close { background: transparent; border: none; color: var(--g7e9-text); font-size: 2rem; cursor: pointer; }
.g7e9-menu-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.g7e9-menu-item { display: flex; align-items: center; gap: 10px; padding: 12px 12px; border-radius: 10px; color: var(--g7e9-text); font-size: 1.35rem; cursor: pointer; }
.g7e9-menu-item:hover, .g7e9-menu-item:focus { background: rgba(0,191,255,0.12); color: var(--g7e9-primary); }
.g7e9-menu-item i { font-size: 1.6rem; color: var(--g7e9-primary); }
.g7e9-menu-divider { height: 1px; background: var(--g7e9-border); margin: 12px 0; }
.g7e9-menu-promo { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

/* Carousel */
.g7e9-carousel { position: relative; margin-top: calc(var(--g7e9-header-h) + 8px); border-radius: var(--g7e9-radius); overflow: hidden; box-shadow: var(--g7e9-shadow); }
.g7e9-carousel-viewport { overflow: hidden; }
.g7e9-carousel-track { display: flex; transition: transform .5s ease; will-change: transform; }
.g7e9-slide { min-width: 100%; position: relative; }
.g7e9-slide img { width: 100%; height: 200px; object-fit: cover; }
.g7e9-slide-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; background: linear-gradient(to top, rgba(26,26,46,0.92), rgba(26,26,46,0)); color: var(--g7e9-text); }
.g7e9-slide-caption h2 { color: var(--g7e9-text); font-size: 1.6rem; margin-bottom: 4px; }
.g7e9-slide-caption p { color: var(--g7e9-text-muted); font-size: 1.2rem; }
.g7e9-carousel-dots { position: absolute; left: 0; right: 0; bottom: 10px; display: flex; justify-content: center; gap: 6px; }
.g7e9-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(240,240,240,0.5); border: none; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.g7e9-dot.g7e9-dot-active { background: var(--g7e9-primary); transform: scale(1.3); }
.g7e9-carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,0.4); color: #fff; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.g7e9-carousel-arrow:hover { background: rgba(0,191,255,0.6); }
.g7e9-arrow-prev { left: 8px; }
.g7e9-arrow-next { right: 8px; }

/* Filter chips */
.g7e9-filter-bar { display: flex; gap: 8px; overflow-x: auto; padding: 10px 0; -webkit-overflow-scrolling: touch; }
.g7e9-filter-chip { flex: 0 0 auto; padding: 8px 14px; border-radius: 999px; background: var(--g7e9-bg-3); color: var(--g7e9-text-muted); font-size: 1.2rem; font-weight: 600; border: 1px solid transparent; cursor: pointer; white-space: nowrap; }
.g7e9-filter-chip.g7e9-chip-active { background: linear-gradient(135deg, var(--g7e9-primary), var(--g7e9-secondary)); color: #0b1f2a; border-color: var(--g7e9-primary); }

/* Game grid + cards */
.g7e9-cat-head { display: flex; align-items: center; gap: 10px; margin: 18px 0 10px; }
.g7e9-cat-head h2 { font-size: 1.7rem; color: var(--g7e9-primary); }
.g7e9-cat-head .g7e9-cat-icon { font-size: 2rem; color: var(--g7e9-accent); }
.g7e9-cat-head .g7e9-cat-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--g7e9-primary), transparent); border-radius: 2px; }
.g7e9-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.g7e9-card { background: var(--g7e9-bg-3); border: 1px solid var(--g7e9-border); border-radius: 12px; overflow: hidden; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; position: relative; }
.g7e9-card:hover, .g7e9-card:focus { transform: translateY(-2px); border-color: var(--g7e9-primary); box-shadow: 0 8px 22px rgba(0,191,255,0.2); }
.g7e9-card-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #0e0e1c; }
.g7e9-card-name { padding: 6px 8px; font-size: 1.1rem; font-weight: 600; color: var(--g7e9-text); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.g7e9-card-badge { position: absolute; top: 6px; left: 6px; background: var(--g7e9-danger); color: #fff; font-size: 1rem; font-weight: 700; padding: 2px 6px; border-radius: 6px; }
.g7e9-card-badge.g7e9-badge-hot { background: linear-gradient(135deg, #ff5a5f, #ff9966); }

/* Feature / info blocks */
.g7e9-feature-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.g7e9-feature-card { background: var(--g7e9-bg-3); border: 1px solid var(--g7e9-border); border-radius: 12px; padding: 16px; }
.g7e9-feature-card .g7e9-feat-icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, rgba(0,191,255,0.18), rgba(70,130,180,0.18)); display: inline-flex; align-items: center; justify-content: center; color: var(--g7e9-primary); font-size: 2.2rem; margin-bottom: 10px; }
.g7e9-feature-card h3 { font-size: 1.5rem; color: var(--g7e9-text); margin-bottom: 6px; }
.g7e9-feature-card p { font-size: 1.3rem; color: var(--g7e9-text-muted); line-height: 1.5; }

/* Steps */
.g7e9-steps { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 10px; }
.g7e9-step { counter-increment: step; display: flex; gap: 12px; padding: 12px 14px; background: var(--g7e9-bg-3); border: 1px solid var(--g7e9-border); border-radius: 10px; }
.g7e9-step::before { content: counter(step); flex: 0 0 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--g7e9-primary), var(--g7e9-secondary)); color: #0b1f2a; font-weight: 800; font-size: 1.3rem; display: inline-flex; align-items: center; justify-content: center; }
.g7e9-step-text { font-size: 1.3rem; color: var(--g7e9-text); line-height: 1.5; }

/* FAQ accordion (pure CSS) */
.g7e9-faq { display: flex; flex-direction: column; gap: 8px; }
.g7e9-faq-item { background: var(--g7e9-bg-3); border: 1px solid var(--g7e9-border); border-radius: 10px; overflow: hidden; }
.g7e9-faq-q { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; font-size: 1.35rem; font-weight: 700; color: var(--g7e9-text); cursor: pointer; }
.g7e9-faq-q i { color: var(--g7e9-primary); font-size: 1.4rem; }
.g7e9-faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; padding: 0 14px; }
.g7e9-faq-item input[type="checkbox"] { display: none; }
.g7e9-faq-item input[type="checkbox"]:checked ~ .g7e9-faq-a { max-height: 320px; padding: 0 14px 12px; }

/* Testimonials */
.g7e9-testi-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.g7e9-testi-card { background: var(--g7e9-bg-3); border: 1px solid var(--g7e9-border); border-radius: 12px; padding: 14px; }
.g7e9-testi-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.g7e9-testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--g7e9-primary), var(--g7e9-secondary)); color: #0b1f2a; font-weight: 800; font-size: 1.5rem; display: inline-flex; align-items: center; justify-content: center; }
.g7e9-testi-name { font-size: 1.3rem; font-weight: 700; color: var(--g7e9-text); }
.g7e9-testi-stars { color: var(--g7e9-accent); font-size: 1.2rem; margin-left: auto; }
.g7e9-testi-text { font-size: 1.25rem; color: var(--g7e9-text-muted); line-height: 1.5; }

/* Winners ticker */
.g7e9-winners { background: var(--g7e9-bg-2); border: 1px solid var(--g7e9-border); border-radius: 12px; padding: 10px 12px; overflow: hidden; }
.g7e9-winners-list { display: flex; flex-direction: column; gap: 6px; }
.g7e9-winner-row { display: flex; align-items: center; gap: 8px; font-size: 1.2rem; color: var(--g7e9-text); }
.g7e9-winner-row .g7e9-winner-name { color: var(--g7e9-accent); font-weight: 700; }
.g7e9-winner-row .g7e9-winner-game { color: var(--g7e9-text-muted); }
.g7e9-winner-row .g7e9-winner-amount { margin-left: auto; color: var(--g7e9-success); font-weight: 800; }

/* Payment methods */
.g7e9-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.g7e9-pay-item { background: #fff; border-radius: 8px; padding: 8px 4px; text-align: center; font-size: 1rem; color: #1A1A2E; font-weight: 700; border: 1px solid var(--g7e9-border); }
.g7e9-pay-item i { font-size: 2rem; color: var(--g7e9-secondary); display: block; margin-bottom: 2px; }

/* App download CTA + promo banner */
.g7e9-app-cta { background: linear-gradient(135deg, rgba(0,191,255,0.15), rgba(70,130,180,0.18)); border: 1px solid var(--g7e9-border); border-radius: 14px; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.g7e9-app-cta h3 { font-size: 1.7rem; color: var(--g7e9-text); }
.g7e9-app-cta p { font-size: 1.3rem; color: var(--g7e9-text-muted); }
.g7e9-app-cta .g7e9-app-btns { display: flex; flex-direction: column; gap: 8px; }
.g7e9-cta-banner { background: linear-gradient(135deg, var(--g7e9-primary), var(--g7e9-secondary)); border-radius: 14px; padding: 18px; color: #0b1f2a; text-align: center; box-shadow: var(--g7e9-shadow); }
.g7e9-cta-banner h3 { font-size: 1.8rem; color: #0b1f2a; margin-bottom: 6px; }
.g7e9-cta-banner p { font-size: 1.3rem; color: #10222e; margin-bottom: 12px; }
.g7e9-cta-banner .g7e9-btn { background: #0b1f2a; color: var(--g7e9-primary); }

/* Footer */
.g7e9-footer { background: var(--g7e9-bg-2); border-top: 1px solid var(--g7e9-border); padding: 22px 12px 16px; margin-top: 20px; }
.g7e9-footer-brand { font-size: 1.5rem; font-weight: 800; color: var(--g7e9-primary); margin-bottom: 8px; }
.g7e9-footer-desc { font-size: 1.25rem; color: var(--g7e9-text-muted); line-height: 1.55; margin-bottom: 14px; }
.g7e9-footer-promos { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.g7e9-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 14px; }
.g7e9-footer-links a { font-size: 1.2rem; color: var(--g7e9-text-muted); padding: 6px 0; border-bottom: 1px dashed var(--g7e9-border); }
.g7e9-footer-links a:hover { color: var(--g7e9-primary); }
.g7e9-footer-copy { font-size: 1.1rem; color: var(--g7e9-text-muted); text-align: center; padding-top: 10px; border-top: 1px solid var(--g7e9-border); }

/* Mobile bottom nav */
.g7e9-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; height: var(--g7e9-bottomnav-h);
  background: rgba(21,21,42,0.98); backdrop-filter: blur(8px);
  border-top: 1px solid var(--g7e9-border);
  display: flex; justify-content: space-around; align-items: stretch; z-index: 1000;
}
.g7e9-bottomnav-btn { flex: 1; min-width: 60px; min-height: 60px; background: transparent; border: none; color: var(--g7e9-text-muted); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; cursor: pointer; transition: color .15s ease, transform .15s ease; padding: 4px 2px; }
.g7e9-bottomnav-btn i, .g7e9-bottomnav-btn .material-icons { font-size: 22px; transition: transform .15s ease, color .15s ease; }
.g7e9-bottomnav-btn span { font-size: 11px; font-weight: 600; }
.g7e9-bottomnav-btn:active { transform: scale(0.94); }
.g7e9-bottomnav-btn:hover { color: var(--g7e9-primary); }
.g7e9-bottomnav-btn.g7e9-nav-active { color: var(--g7e9-primary); }
.g7e9-bottomnav-btn.g7e9-nav-active i, .g7e9-bottomnav-btn.g7e9-nav-active .material-icons { transform: translateY(-2px) scale(1.1); }
.g7e9-nav-promo { position: relative; }
.g7e9-nav-promo::after { content: ''; position: absolute; top: 6px; right: 18px; width: 6px; height: 6px; border-radius: 50%; background: var(--g7e9-danger); box-shadow: 0 0 6px var(--g7e9-danger); }

/* Spacing + a11y */
.g7e9-mt-8 { margin-top: 8px; } .g7e9-mt-12 { margin-top: 12px; } .g7e9-mt-16 { margin-top: 16px; }
.g7e9-center { text-align: center; } .g7e9-hide-mobile { display: none; }
:focus-visible { outline: 2px solid var(--g7e9-primary); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Desktop >= 769px */
@media (min-width: 769px) {
  .g7e9-bottomnav { display: none; }
  .g7e9-container, .g7e9-wrapper, .g7e9-header-inner, .g7e9-footer { max-width: 960px; }
  .g7e9-grid { grid-template-columns: repeat(5, 1fr); }
  .g7e9-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .g7e9-testi-grid { grid-template-columns: repeat(2, 1fr); }
  .g7e9-pay-grid { grid-template-columns: repeat(6, 1fr); }
  .g7e9-footer-links { grid-template-columns: repeat(4, 1fr); }
  .g7e9-hide-mobile { display: block; }
  .g7e9-app-cta { flex-direction: row; align-items: center; }
  .g7e9-app-cta .g7e9-app-btns { flex-direction: row; }
}
/* Mobile bottom padding so content is never hidden behind fixed nav */
@media (max-width: 768px) {
  main.g7e9-main { padding-bottom: calc(var(--g7e9-bottomnav-h) + 16px); }
  .g7e9-footer { padding-bottom: calc(var(--g7e9-bottomnav-h) + 16px); }
}
