/*!
 * okplay apk - style-728e.css
 * Mobile-first HTML5 gaming site styles.
 * All custom classes use the g8ec- prefix to namespace the design system.
 * Comments in English.
 */

/* ---------- Design tokens ---------- */
:root {
  --g8ec-bg-dark: #1C2833;
  --g8ec-bg-mid: #233344;
  --g8ec-bg-soft: #2C3E50;
  --g8ec-cyan: #00FFFF;
  --g8ec-blue: #00BFFF;
  --g8ec-light-blue: #ADD8E6;
  --g8ec-paper: #F0F8FF;
  --g8ec-muted: #E9ECEF;
  --g8ec-text: #F0F8FF;
  --g8ec-text-soft: #B8C7D6;
  --g8ec-gold: #FFD479;
  --g8ec-success: #2EE6A6;
  --g8ec-danger: #FF6B6B;

  --g8ec-primary: #00BFFF;
  --g8ec-primary-2: #00FFFF;
  --g8ec-accent: #FFD479;

  --g8ec-radius: 14px;
  --g8ec-radius-lg: 22px;
  --g8ec-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --g8ec-shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.25);

  --g8ec-header-h: 60px;
  --g8ec-bottomnav-h: 62px;

  --g8ec-grad-brand: linear-gradient(135deg, #00BFFF 0%, #00FFFF 100%);
  --g8ec-grad-gold: linear-gradient(135deg, #FFD479 0%, #FFB347 100%);
  --g8ec-grad-card: linear-gradient(160deg, #2C3E50 0%, #1C2833 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, system-ui, sans-serif;
  background: var(--g8ec-bg-dark);
  color: var(--g8ec-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img { max-width: 100%; display: block; }
a { color: var(--g8ec-cyan); text-decoration: none; }
a:hover { color: var(--g8ec-gold); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.g8ec-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 14px;
}
.g8ec-wrapper { width: 100%; }
.g8ec-section {
  padding: 26px 0 18px;
}
.g8ec-section-alt { background: linear-gradient(180deg, #1b2735 0%, #1C2833 100%); }
.g8ec-divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, .35), transparent);
  margin: 18px 0;
}

/* ---------- Header ---------- */
.g8ec-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--g8ec-header-h);
  background: rgba(28, 40, 51, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 191, 255, 0.18);
  z-index: 1000;
  transition: box-shadow .25s ease, background .25s ease;
}
.g8ec-header-scrolled { box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45); }
.g8ec-header-inner {
  max-width: 430px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  gap: 8px;
}
.g8ec-brand {
  display: flex; align-items: center; gap: 8px;
  min-width: 0;
}
.g8ec-brand-logo {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--g8ec-grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: #04121c; font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 191, 255, 0.45);
  flex-shrink: 0;
}
.g8ec-brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--g8ec-cyan);
  letter-spacing: .3px;
  white-space: nowrap;
}
.g8ec-brand-name span { color: var(--g8ec-gold); }
.g8ec-header-actions { display: flex; align-items: center; gap: 8px; }
.g8ec-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
  min-height: 36px;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.g8ec-btn:active { transform: scale(0.96); }
.g8ec-btn-login {
  background: transparent;
  border: 1.5px solid var(--g8ec-blue);
  color: var(--g8ec-cyan);
}
.g8ec-btn-register {
  background: var(--g8ec-grad-gold);
  color: #2a1d00;
  box-shadow: 0 4px 12px rgba(255, 212, 121, 0.35);
}
.g8ec-menu-toggle {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0, 191, 255, 0.12);
  color: var(--g8ec-cyan);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}

/* ---------- Spacing under fixed header ---------- */
.g8ec-top-spacer { height: var(--g8ec-header-h); }

/* ---------- Mobile slide menu ---------- */
#g8ec-menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 9998;
}
#g8ec-menu-backdrop.g8ec-backdrop-show { opacity: 1; visibility: visible; }
#g8ec-mobile-menu {
  position: fixed;
  top: 0; right: -82%;
  width: 78%; max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #1b2735 0%, #14202c 100%);
  padding: 22px 18px;
  transform: translateX(0);
  transition: right .3s ease;
  z-index: 9999;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}
#g8ec-mobile-menu.g8ec-menu-open { right: 0; }
.g8ec-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.g8ec-menu-title { font-size: 1.7rem; font-weight: 800; color: var(--g8ec-cyan); }
.g8ec-menu-close {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--g8ec-text); font-size: 1.8rem;
}
.g8ec-menu-list li { margin-bottom: 8px; }
.g8ec-menu-list a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--g8ec-text);
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.g8ec-menu-list a:hover {
  background: rgba(0, 191, 255, 0.14);
  color: var(--g8ec-cyan);
}
.g8ec-menu-list .material-icons,
.g8ec-menu-list i { color: var(--g8ec-gold); font-size: 20px; }

/* ---------- Carousel ---------- */
.g8ec-carousel {
  position: relative;
  border-radius: var(--g8ec-radius-lg);
  overflow: hidden;
  box-shadow: var(--g8ec-shadow);
  margin-top: 14px;
}
.g8ec-carousel-track {
  display: flex;
  transition: transform .55s ease;
}
.g8ec-slide {
  min-width: 100%;
  position: relative;
  cursor: pointer;
}
.g8ec-slide img {
  width: 100%; height: 200px; object-fit: cover;
}
.g8ec-slide-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  color: #fff;
}
.g8ec-slide-title {
  font-size: 1.7rem; font-weight: 800; margin: 0 0 4px;
  color: var(--g8ec-cyan);
}
.g8ec-slide-sub { font-size: 1.25rem; color: var(--g8ec-muted); margin: 0; }
.g8ec-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.g8ec-carousel-arrow.prev { left: 8px; }
.g8ec-carousel-arrow.next { right: 8px; }
.g8ec-carousel-dots {
  position: absolute; bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
}
.g8ec-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.g8ec-dot.g8ec-dot-active { background: var(--g8ec-gold); width: 22px; border-radius: 4px; }

/* ---------- Hero / titles ---------- */
.g8ec-hero {
  padding: 8px 0 4px;
  text-align: center;
}
.g8ec-h1 {
  font-size: 2.1rem; font-weight: 800;
  margin: 8px 0 6px;
  line-height: 1.25;
  background: var(--g8ec-grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.g8ec-subtitle {
  color: var(--g8ec-text-soft);
  font-size: 1.35rem;
  margin: 0 auto 14px;
  max-width: 380px;
}
.g8ec-cta-row {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin: 10px 0 6px;
}
.g8ec-btn-cta {
  background: var(--g8ec-grad-brand);
  color: #04121c; font-weight: 800;
  padding: 12px 22px; font-size: 1.45rem;
  box-shadow: 0 6px 16px rgba(0, 191, 255, 0.4);
}
.g8ec-btn-cta-alt {
  background: var(--g8ec-grad-gold);
  color: #2a1d00; font-weight: 800;
  padding: 12px 22px; font-size: 1.45rem;
  box-shadow: 0 6px 16px rgba(255, 212, 121, 0.4);
}
.g8ec-section-head {
  text-align: center;
  margin: 22px 0 12px;
}
.g8ec-section-head h2 {
  font-size: 1.75rem; font-weight: 800; margin: 0 0 4px;
  color: var(--g8ec-cyan);
}
.g8ec-section-head p {
  color: var(--g8ec-text-soft); font-size: 1.3rem; margin: 0;
}
.g8ec-section-head h2 span,
.g8ec-section-head .g8ec-hl { color: var(--g8ec-gold); }

/* ---------- Filter chips ---------- */
.g8ec-filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 8px 0 14px;
  justify-content: center;
}
.g8ec-filter-btn {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.25);
  color: var(--g8ec-text-soft);
  font-size: 1.25rem; font-weight: 600;
}
.g8ec-filter-btn.g8ec-filter-active {
  background: var(--g8ec-grad-brand);
  color: #04121c; border-color: transparent;
}

/* ---------- Game grid ---------- */
.g8ec-game-section { margin-top: 14px; }
.g8ec-cat-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: 4px 0 10px;
}
.g8ec-cat-title {
  font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; gap: 8px;
  color: var(--g8ec-text);
}
.g8ec-cat-title i,
.g8ec-cat-title .material-icons { color: var(--g8ec-gold); font-size: 22px; }
.g8ec-cat-link {
  font-size: 1.2rem; color: var(--g8ec-cyan); font-weight: 600;
}
.g8ec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.g8ec-game-card {
  background: var(--g8ec-grad-card);
  border-radius: var(--g8ec-radius);
  padding: 8px 6px 10px;
  text-align: center;
  border: 1px solid rgba(0, 191, 255, 0.14);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  overflow: hidden;
  position: relative;
}
.g8ec-game-card:active {
  transform: scale(0.97);
  border-color: var(--g8ec-gold);
  box-shadow: 0 8px 18px rgba(0, 191, 255, 0.25);
}
.g8ec-game-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #0f1822;
  margin-bottom: 6px;
}
.g8ec-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.g8ec-game-name {
  font-size: 1.18rem; font-weight: 600;
  color: var(--g8ec-text);
  line-height: 1.25;
  min-height: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.g8ec-game-tag {
  position: absolute; top: 6px; left: 6px;
  font-size: 0.95rem; padding: 2px 7px;
  border-radius: 6px;
  background: var(--g8ec-grad-gold);
  color: #2a1d00; font-weight: 700;
}

/* ---------- Feature cards ---------- */
.g8ec-feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.g8ec-feature {
  background: var(--g8ec-grad-card);
  border: 1px solid rgba(0, 191, 255, 0.16);
  border-radius: var(--g8ec-radius);
  padding: 14px;
}
.g8ec-feature .g8ec-feature-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 191, 255, 0.18); color: var(--g8ec-cyan);
  font-size: 1.9rem; margin-bottom: 8px;
}
.g8ec-feature h3 { font-size: 1.35rem; margin: 0 0 4px; color: var(--g8ec-text); }
.g8ec-feature p { margin: 0; color: var(--g8ec-text-soft); font-size: 1.2rem; }

/* ---------- Steps ---------- */
.g8ec-steps { display: grid; gap: 10px; }
.g8ec-step {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--g8ec-grad-card);
  border: 1px solid rgba(0, 191, 255, 0.14);
  padding: 12px 14px;
  border-radius: var(--g8ec-radius);
}
.g8ec-step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--g8ec-grad-brand);
  color: #04121c; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
}
.g8ec-step-body h4 { margin: 0 0 4px; font-size: 1.35rem; color: var(--g8ec-text); }
.g8ec-step-body p { margin: 0; color: var(--g8ec-text-soft); font-size: 1.22rem; }

/* ---------- Text content / SEO ---------- */
.g8ec-prose {
  background: var(--g8ec-grad-card);
  border: 1px solid rgba(0, 191, 255, 0.14);
  border-radius: var(--g8ec-radius-lg);
  padding: 16px 16px;
  color: var(--g8ec-text-soft);
  font-size: 1.3rem;
}
.g8ec-prose h2 { color: var(--g8ec-cyan); font-size: 1.6rem; margin: 14px 0 6px; }
.g8ec-prose h3 { color: var(--g8ec-gold); font-size: 1.4rem; margin: 12px 0 4px; }
.g8ec-prose p { margin: 0 0 10px; }
.g8ec-prose strong { color: var(--g8ec-text); }
.g8ec-prose a { color: var(--g8ec-gold); font-weight: 700; text-decoration: underline; }
.g8ec-prose ul { padding-left: 18px; margin: 6px 0 10px; list-style: disc; }
.g8ec-prose ul li { margin-bottom: 4px; }

/* ---------- RTP table ---------- */
.g8ec-rtp-table {
  width: 100%; border-collapse: collapse;
  background: var(--g8ec-grad-card);
  border-radius: var(--g8ec-radius);
  overflow: hidden;
  font-size: 1.2rem;
}
.g8ec-rtp-table th, .g8ec-rtp-table td {
  padding: 9px 10px; text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.g8ec-rtp-table th { background: rgba(0, 191, 255, 0.16); color: var(--g8ec-cyan); }
.g8ec-rtp-table td .g8ec-bar {
  display: inline-block; height: 6px; border-radius: 3px;
  background: var(--g8ec-grad-brand); vertical-align: middle; margin-right: 6px;
}

/* ---------- Testimonials ---------- */
.g8ec-testi-grid { display: grid; gap: 10px; }
.g8ec-testi {
  background: var(--g8ec-grad-card);
  border: 1px solid rgba(0, 191, 255, 0.14);
  border-radius: var(--g8ec-radius);
  padding: 12px 14px;
}
.g8ec-testi-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.g8ec-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--g8ec-grad-brand);
  color: #04121c; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.g8ec-testi-name { font-weight: 700; color: var(--g8ec-text); font-size: 1.3rem; }
.g8ec-stars { color: var(--g8ec-gold); font-size: 1.2rem; }
.g8ec-testi p { margin: 0; color: var(--g8ec-text-soft); font-size: 1.22rem; }

/* ---------- Winners ---------- */
.g8ec-winners {
  background: var(--g8ec-grad-card);
  border: 1px solid rgba(255, 212, 121, 0.2);
  border-radius: var(--g8ec-radius);
  overflow: hidden;
}
.g8ec-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1.2rem;
}
.g8ec-winner-row:last-child { border-bottom: none; }
.g8ec-winner-name { color: var(--g8ec-cyan); font-weight: 700; }
.g8ec-winner-amount { color: var(--g8ec-gold); font-weight: 800; }

/* ---------- Payment ---------- */
.g8ec-pay-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.g8ec-pay-item {
  background: var(--g8ec-grad-card);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  border: 1px solid rgba(0, 191, 255, 0.14);
  font-size: 1.1rem;
  color: var(--g8ec-text-soft);
}
.g8ec-pay-item .g8ec-pay-icon { font-size: 1.9rem; color: var(--g8ec-cyan); margin-bottom: 4px; }

/* ---------- FAQ ---------- */
.g8ec-faq-list { display: grid; gap: 8px; }
.g8ec-faq-item {
  background: var(--g8ec-grad-card);
  border: 1px solid rgba(0, 191, 255, 0.14);
  border-radius: var(--g8ec-radius);
  overflow: hidden;
}
.g8ec-faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 12px 14px;
  text-align: left;
  font-weight: 700; font-size: 1.3rem;
  color: var(--g8ec-text);
}
.g8ec-faq-q .g8ec-faq-icon { color: var(--g8ec-cyan); transition: transform .2s ease; }
.g8ec-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 14px;
  color: var(--g8ec-text-soft);
  font-size: 1.22rem;
}
.g8ec-faq-open .g8ec-faq-a { max-height: 360px; padding: 0 14px 12px; }
.g8ec-faq-open .g8ec-faq-icon { transform: rotate(45deg); color: var(--g8ec-gold); }

/* ---------- App download CTA ---------- */
.g8ec-app-cta {
  background: radial-gradient(circle at 30% 30%, rgba(0, 191, 255, 0.25), transparent 60%),
              linear-gradient(160deg, #2C3E50 0%, #1C2833 100%);
  border: 1px solid rgba(0, 191, 255, 0.22);
  border-radius: var(--g8ec-radius-lg);
  padding: 18px 16px;
  text-align: center;
}
.g8ec-app-cta h3 { color: var(--g8ec-cyan); font-size: 1.7rem; margin: 0 0 6px; }
.g8ec-app-cta p { color: var(--g8ec-text-soft); font-size: 1.25rem; margin: 0 0 12px; }
.g8ec-app-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.g8ec-footer {
  background: #14202c;
  border-top: 1px solid rgba(0, 191, 255, 0.18);
  padding: 22px 14px calc(var(--g8ec-bottomnav-h) + 22px);
  margin-top: 24px;
  color: var(--g8ec-text-soft);
}
.g8ec-footer-inner { max-width: 430px; margin: 0 auto; }
.g8ec-footer-brand {
  font-size: 1.5rem; font-weight: 800; color: var(--g8ec-cyan); margin-bottom: 6px;
}
.g8ec-footer-desc { font-size: 1.2rem; line-height: 1.5; margin-bottom: 14px; }
.g8ec-footer-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 14px;
}
.g8ec-footer-col h4 {
  color: var(--g8ec-gold); font-size: 1.3rem; margin: 0 0 6px;
}
.g8ec-footer-col a {
  display: block; padding: 4px 0;
  color: var(--g8ec-text-soft); font-size: 1.18rem;
}
.g8ec-footer-col a:hover { color: var(--g8ec-cyan); }
.g8ec-footer-promos {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 14px;
}
.g8ec-footer-promos .g8ec-btn-promo {
  flex: 1 1 45%;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--g8ec-grad-brand);
  color: #04121c; font-weight: 700; font-size: 1.2rem;
  text-align: center;
}
.g8ec-footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  font-size: 1.1rem;
  color: #8aa0b3;
  text-align: center;
}

/* ---------- Mobile bottom nav ---------- */
.g8ec-bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--g8ec-bottomnav-h);
  background: rgba(20, 32, 44, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 191, 255, 0.2);
  display: flex; justify-content: space-around; align-items: stretch;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
}
.g8ec-nav-btn {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  color: var(--g8ec-text-soft);
  font-size: 1.05rem;
  min-width: 60px; min-height: 60px;
  position: relative;
  transition: color .15s ease, transform .15s ease;
}
.g8ec-nav-btn:active { transform: scale(0.92); }
.g8ec-nav-btn .g8ec-nav-icon { font-size: 2.2rem; line-height: 1; }
.g8ec-nav-btn .g8ec-nav-label { font-size: 1.05rem; font-weight: 600; }
.g8ec-nav-btn.is-active { color: var(--g8ec-cyan); }
.g8ec-nav-btn.is-active .g8ec-nav-icon { color: var(--g8ec-gold); }
.g8ec-nav-btn.g8ec-nav-cta .g8ec-nav-icon {
  background: var(--g8ec-grad-gold);
  color: #2a1d00;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: -10px;
  box-shadow: 0 4px 12px rgba(255, 212, 121, 0.4);
}

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

/* ---------- Badge ---------- */
.g8ec-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(46, 230, 166, 0.16);
  color: var(--g8ec-success);
  font-size: 1.1rem; font-weight: 700;
}

/* ---------- Mobile-first padding for fixed bottom nav ---------- */
main.g8ec-main { padding-bottom: calc(var(--g8ec-bottomnav-h) + 14px); }

/* ---------- Desktop / wider screens ---------- */
@media (min-width: 768px) {
  .g8ec-bottom-nav { display: none; }
  .g8ec-menu-toggle { display: none; }
  .g8ec-container { max-width: 900px; }
  .g8ec-grid { grid-template-columns: repeat(6, 1fr); }
  .g8ec-feature-grid { grid-template-columns: repeat(4, 1fr); }
  .g8ec-footer { padding-bottom: 22px; }
  main.g8ec-main { padding-bottom: 14px; }
}

/* ---------- Very small screens ---------- */
@media (max-width: 360px) {
  .g8ec-grid { grid-template-columns: repeat(2, 1fr); }
  .g8ec-h1 { font-size: 1.85rem; }
}
