/* =========================================================
 * bee ph - shared stylesheet (index + sub pages)
 * Every custom class uses the "gea1-" prefix.
 * Palette: #FFCCCB (soft pink) | #FF9500 (amber) | #1A1A2E (navy)
 * =======================================================*/

:root {
  --gea1-primary: #FF9500;
  --gea1-secondary: #FFCCCB;
  --gea1-bg: #1A1A2E;
  --gea1-bg-soft: #232347;
  --gea1-bg-card: #20203c;
  --gea1-text: #FFCCCB;
  --gea1-text-strong: #ffffff;
  --gea1-text-muted: #b8b8d4;
  --gea1-gold: #FFD580;
  --gea1-border: rgba(255, 204, 203, 0.14);
  --gea1-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
  --gea1-radius: 14px;
  --gea1-radius-sm: 10px;
  --gea1-gradient: linear-gradient(135deg, #FF9500 0%, #FFCCCB 100%);
  --gea1-gradient-dark: linear-gradient(160deg, #1A1A2E 0%, #2a2a52 100%);
  --gea1-max: 430px;
}

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

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

body {
  font-family: "Segoe UI", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  background: var(--gea1-bg);
  color: var(--gea1-text);
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gea1-primary); text-decoration: none; }
h1, h2, h3 { color: var(--gea1-text-strong); line-height: 1.3; font-weight: 800; }
h1 { font-size: 2.2rem; margin: 1rem 0; }
h2 { font-size: 1.9rem; margin: 1.2rem 0 0.6rem; }
h3 { font-size: 1.55rem; margin: 1rem 0 0.4rem; }
p { margin: 0.6rem 0; color: var(--gea1-text-muted); }

.gea1-wrapper { width: 100%; max-width: var(--gea1-max); margin: 0 auto; padding: 0 1.2rem; }

/* ===== Header ===== */
.gea1-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 26, 46, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gea1-border);
  transition: box-shadow .25s ease, background .25s ease;
}
.gea1-header--scrolled { box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45); }
.gea1-header-inner {
  max-width: var(--gea1-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem; gap: 0.6rem;
}
.gea1-logo { display: flex; align-items: center; gap: 0.5rem; }
.gea1-logo img { width: 30px; height: 30px; border-radius: 8px; }
.gea1-logo-text { font-size: 1.7rem; font-weight: 800; color: var(--gea1-primary); letter-spacing: .3px; }
.gea1-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.gea1-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-weight: 700; font-size: 1.3rem; border: none; cursor: pointer;
  padding: 0.7rem 1.1rem; border-radius: 999px; transition: transform .15s ease, box-shadow .2s ease;
  min-height: 38px;
}
.gea1-btn:active { transform: scale(0.95); }
.gea1-btn--primary { background: var(--gea1-gradient); color: #1A1A2E; box-shadow: 0 4px 14px rgba(255, 149, 0, 0.4); }
.gea1-btn--ghost { background: transparent; color: var(--gea1-secondary); border: 1px solid var(--gea1-secondary); }
.gea1-btn--block { width: 100%; padding: 1rem; font-size: 1.5rem; }
.gea1-menu-toggle {
  background: transparent; border: 1px solid var(--gea1-border); color: var(--gea1-secondary);
  width: 38px; height: 38px; border-radius: 10px; font-size: 1.6rem; cursor: pointer;
}

/* ===== Nav menu ===== */
.gea1-nav-menu {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
  background: var(--gea1-bg-soft); z-index: 9999; padding: 6rem 1.4rem 2rem;
  transition: right .3s ease; overflow-y: auto; box-shadow: var(--gea1-shadow);
}
.gea1-nav-menu--open { right: 0; }
.gea1-nav-close {
  position: absolute; top: 1rem; right: 1rem; background: transparent; border: none;
  color: var(--gea1-secondary); font-size: 2rem; cursor: pointer;
}
.gea1-nav-menu h4 { color: var(--gea1-primary); font-size: 1.3rem; margin: 1rem 0 0.4rem; text-transform: uppercase; letter-spacing: 1px; }
.gea1-nav-menu a { display: block; padding: 0.8rem 0.6rem; color: var(--gea1-text); border-bottom: 1px solid var(--gea1-border); font-size: 1.4rem; }
.gea1-nav-menu a:hover { color: var(--gea1-primary); }
.gea1-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 9998;
  opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.gea1-overlay--visible { opacity: 1; visibility: visible; }

/* ===== Main / sections ===== */
.gea1-main { padding-top: 68px; padding-bottom: 90px; }
.gea1-section { padding: 1.6rem 0; }
.gea1-section--alt { background: var(--gea1-bg-soft); }
.gea1-eyebrow { color: var(--gea1-primary); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.gea1-card {
  background: var(--gea1-bg-card); border: 1px solid var(--gea1-border);
  border-radius: var(--gea1-radius); padding: 1.2rem; box-shadow: var(--gea1-shadow);
}

/* ===== Carousel ===== */
.gea1-carousel { position: relative; border-radius: var(--gea1-radius); overflow: hidden; box-shadow: var(--gea1-shadow); }
.gea1-carousel-viewport { overflow: hidden; }
.gea1-carousel-track { display: flex; transition: transform .5s ease; }
.gea1-carousel-slide { min-width: 100%; position: relative; cursor: pointer; }
.gea1-carousel-slide img { width: 100%; height: 190px; object-fit: cover; }
.gea1-carousel-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(26, 26, 46, 0.92));
  padding: 1.4rem 1rem 1rem; color: var(--gea1-text-strong);
}
.gea1-carousel-cap strong { color: var(--gea1-primary); display: block; font-size: 1.5rem; }
.gea1-carousel-dots { display: flex; justify-content: center; gap: 0.5rem; padding: 0.7rem 0; }
.gea1-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gea1-border); cursor: pointer; border: none; }
.gea1-dot--active { background: var(--gea1-primary); width: 22px; border-radius: 6px; }

/* ===== Game grid ===== */
.gea1-cat-head { display: flex; align-items: center; gap: 0.6rem; margin: 1.4rem 0 0.8rem; }
.gea1-cat-head .gea1-cat-icon { color: var(--gea1-primary); font-size: 2rem; }
.gea1-cat-head h2 { margin: 0; font-size: 1.7rem; }
.gea1-cat-head .gea1-cat-more { margin-left: auto; font-size: 1.2rem; color: var(--gea1-secondary); }
.gea1-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.gea1-game-item {
  background: var(--gea1-bg-card); border: 1px solid var(--gea1-border);
  border-radius: var(--gea1-radius-sm); padding: 0.5rem; text-align: center;
  cursor: pointer; transition: transform .15s ease, border-color .2s ease; display: block;
}
.gea1-game-item:hover { transform: translateY(-3px); border-color: var(--gea1-primary); }
.gea1-game-item img { width: 100%; height: 78px; object-fit: cover; border-radius: 8px; }
.gea1-game-name { display: block; margin-top: 0.4rem; font-size: 1.1rem; color: var(--gea1-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ===== Feature / step grid ===== */
.gea1-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.gea1-feature-card { background: var(--gea1-bg-card); border: 1px solid var(--gea1-border); border-radius: var(--gea1-radius-sm); padding: 1rem; text-align: center; }
.gea1-feature-card .gea1-feature-icon { font-size: 2.6rem; color: var(--gea1-primary); margin-bottom: 0.4rem; }
.gea1-feature-card h3 { font-size: 1.3rem; color: var(--gea1-text-strong); }
.gea1-feature-card p { font-size: 1.15rem; margin: 0.3rem 0 0; }
.gea1-steps { list-style: none; counter-reset: step; }
.gea1-steps li { position: relative; padding: 0.6rem 0 0.6rem 3.2rem; border-bottom: 1px dashed var(--gea1-border); }
.gea1-steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0.5rem; width: 2.4rem; height: 2.4rem; line-height: 2.4rem; text-align: center; border-radius: 50%; background: var(--gea1-gradient); color: #1A1A2E; font-weight: 800; }

/* ===== RTP table ===== */
.gea1-rtp-table { width: 100%; border-collapse: collapse; }
.gea1-rtp-table th, .gea1-rtp-table td { padding: 0.7rem 0.6rem; border-bottom: 1px solid var(--gea1-border); text-align: left; font-size: 1.2rem; }
.gea1-rtp-table th { color: var(--gea1-primary); }
.gea1-rtp-table td:last-child { color: var(--gea1-gold); font-weight: 700; }

/* ===== Testimonials ===== */
.gea1-testi-grid { display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
.gea1-testi { background: var(--gea1-bg-card); border-left: 3px solid var(--gea1-primary); border-radius: 8px; padding: 1rem; }
.gea1-testi-stars { color: var(--gea1-primary); margin-bottom: 0.3rem; }
.gea1-testi cite { display: block; margin-top: 0.4rem; color: var(--gea1-secondary); font-style: normal; font-weight: 700; }

/* ===== Payment chips ===== */
.gea1-chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.gea1-chip { background: var(--gea1-bg-card); border: 1px solid var(--gea1-border); border-radius: 999px; padding: 0.5rem 1rem; font-size: 1.15rem; color: var(--gea1-secondary); display: inline-flex; align-items: center; gap: 0.3rem; }

/* ===== Winners ===== */
.gea1-winner { display: flex; align-items: center; gap: 0.6rem; padding: 0.5rem 0; border-bottom: 1px solid var(--gea1-border); }
.gea1-winner .gea1-winner-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gea1-gradient); color: #1A1A2E; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.gea1-winner .gea1-winner-amount { margin-left: auto; color: var(--gea1-gold); font-weight: 800; }

/* ===== App download CTA ===== */
.gea1-app-cta { background: var(--gea1-gradient-dark); border: 1px solid var(--gea1-border); border-radius: var(--gea1-radius); padding: 1.4rem; display: flex; align-items: center; gap: 1rem; }
.gea1-app-cta .gea1-app-icon { font-size: 3rem; color: var(--gea1-primary); }

/* ===== FAQ ===== */
.gea1-faq-item { background: var(--gea1-bg-card); border: 1px solid var(--gea1-border); border-radius: var(--gea1-radius-sm); margin-bottom: 0.6rem; overflow: hidden; }
.gea1-faq-q { width: 100%; text-align: left; background: transparent; border: none; color: var(--gea1-text-strong); font-weight: 700; font-size: 1.35rem; padding: 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.gea1-faq-q .gea1-faq-icon { color: var(--gea1-primary); transition: transform .25s ease; }
.gea1-faq-item--open .gea1-faq-icon { transform: rotate(45deg); }
.gea1-faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 1rem; }

/* ===== CTA banner ===== */
.gea1-cta-banner { background: var(--gea1-gradient); border-radius: var(--gea1-radius); padding: 1.6rem; text-align: center; color: #1A1A2E; box-shadow: var(--gea1-shadow); }
.gea1-cta-banner h2 { color: #1A1A2E; }
.gea1-cta-banner p { color: #2a2a52; }
.gea1-cta-banner .gea1-btn { background: #1A1A2E; color: var(--gea1-gold); margin-top: 0.6rem; }

/* ===== Footer ===== */
.gea1-footer { background: var(--gea1-bg-soft); padding: 2rem 0 6.5rem; border-top: 1px solid var(--gea1-border); }
.gea1-footer p { font-size: 1.25rem; }
.gea1-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem 0.8rem; margin: 1rem 0; }
.gea1-footer-links a { font-size: 1.2rem; color: var(--gea1-text-muted); }
.gea1-footer-links a:hover { color: var(--gea1-primary); }
.gea1-footer-promo { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0; }
.gea1-copyright { font-size: 1.1rem; color: var(--gea1-text-muted); border-top: 1px solid var(--gea1-border); padding-top: 1rem; margin-top: 1rem; }

/* ===== Mobile bottom nav (unique raised-center design) ===== */
.gea1-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; height: 62px;
  background: rgba(26, 26, 46, 0.98); backdrop-filter: blur(12px);
  border-top: 2px solid var(--gea1-primary);
  display: flex; align-items: flex-end; justify-content: space-around;
  padding: 0 0.3rem; box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.4);
}
.gea1-bottom-nav-btn {
  flex: 1; min-width: 60px; min-height: 60px; background: transparent; border: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  color: var(--gea1-text-muted); cursor: pointer; padding: 4px 0; transition: transform .15s ease, color .2s ease;
}
.gea1-bottom-nav-btn:active { transform: scale(0.9); }
.gea1-bottom-nav-btn .gea1-bn-icon { font-size: 22px; }
.gea1-bottom-nav-btn .gea1-bn-label { font-size: 10px; }
.gea1-bottom-nav-btn--active { color: var(--gea1-primary); }
.gea1-bottom-nav-btn--center {
  position: relative; transform: translateY(-14px); color: var(--gea1-text-strong);
}
.gea1-bottom-nav-btn--center .gea1-bn-icon {
  width: 50px; height: 50px; border-radius: 50%; background: var(--gea1-gradient); color: #1A1A2E;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  box-shadow: 0 4px 14px rgba(255, 149, 0, 0.55); border: 3px solid var(--gea1-bg);
}
.gea1-bottom-nav-btn--center:active { transform: translateY(-14px) scale(0.92); }

/* ===== Reveal animation ===== */
.gea1-reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.gea1-reveal--in { opacity: 1; transform: translateY(0); }

/* ===== Desktop: hide bottom nav, widen wrapper ===== */
@media (min-width: 769px) {
  .gea1-bottom-nav { display: none; }
  .gea1-header-inner { max-width: 960px; }
  .gea1-wrapper { max-width: 960px; }
  .gea1-game-grid { grid-template-columns: repeat(6, 1fr); }
  .gea1-feature-grid { grid-template-columns: repeat(4, 1fr); }
  .gea1-testi-grid { grid-template-columns: repeat(3, 1fr); }
  .gea1-main { padding-bottom: 2rem; }
}
@media (max-width: 768px) {
  .gea1-main { padding-bottom: 90px; }
}
