/* OKBet PH - Theme Stylesheet - All classes use g8da- prefix */
:root {
  --g8da-primary: #E91E63; --g8da-primary-dark: #880E4F; --g8da-bg: #262626;
  --g8da-bg-light: #1e1e1e; --g8da-bg-card: #2d2d2d; --g8da-text: #f5f5f5;
  --g8da-text-gray: #778899; --g8da-text-muted: #a0a0a0; --g8da-accent: #FF5252;
  --g8da-gold: #FFD700; --g8da-green: #4CAF50; --g8da-radius: 1.2rem;
  --g8da-radius-sm: 0.8rem; --g8da-shadow: 0 4px 20px rgba(0,0,0,0.3);
  --g8da-transition: all 0.3s ease; font-size: 62.5%;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background-color: var(--g8da-bg); color: var(--g8da-text); line-height: 1.5rem;
  font-size: 1.4rem; max-width: 430px; margin: 0 auto; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--g8da-primary); }

/* HEADER */
.g8da-header { position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; z-index: 1000;
  background: linear-gradient(135deg, var(--g8da-primary-dark), #4a0a2a);
  padding: 0.8rem 1rem; display: flex; align-items: center;
  justify-content: space-between; box-shadow: 0 2px 15px rgba(233,30,99,0.3); }
.g8da-header-brand { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.g8da-header-logo { width: 28px; height: 28px; border-radius: 50%; }
.g8da-header-name { font-size: 1.6rem; font-weight: 700; color: #fff; white-space: nowrap; }
.g8da-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.g8da-btn-register { background: linear-gradient(135deg, var(--g8da-gold), #FFA000); color: #000;
  font-weight: 700; font-size: 1.2rem; padding: 0.5rem 1.2rem; border-radius: var(--g8da-radius-sm);
  border: none; cursor: pointer; min-height: 32px; min-width: 44px; transition: var(--g8da-transition); }
.g8da-btn-register:hover { transform: scale(1.05); }
.g8da-btn-login { background: transparent; color: #fff; font-weight: 600; font-size: 1.2rem;
  padding: 0.5rem 1rem; border: 1.5px solid rgba(255,255,255,0.5); border-radius: var(--g8da-radius-sm);
  cursor: pointer; min-height: 32px; min-width: 44px; transition: var(--g8da-transition); }
.g8da-btn-login:hover { border-color: var(--g8da-gold); color: var(--g8da-gold); }
.g8da-menu-toggle { background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;
  padding: 0.4rem; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }

/* MOBILE MENU */
.g8da-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); z-index: 9998; opacity: 0; visibility: hidden; transition: var(--g8da-transition); }
.g8da-overlay-active { opacity: 1; visibility: visible; }
.g8da-mobile-menu { position: fixed; top: 0; right: -280px; width: 260px; height: 100%;
  background: var(--g8da-bg-light); z-index: 9999; transition: right 0.3s ease;
  padding: 2rem 1.5rem; overflow-y: auto; }
.g8da-menu-active { right: 0; }
.g8da-mobile-menu-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  color: var(--g8da-text); font-size: 2.2rem; cursor: pointer; min-width: 44px; min-height: 44px; }
.g8da-mobile-menu h3 { color: var(--g8da-primary); font-size: 1.6rem; margin-bottom: 1.5rem;
  padding-bottom: 0.8rem; border-bottom: 2px solid var(--g8da-primary); }
.g8da-mobile-menu ul { list-style: none; }
.g8da-mobile-menu ul li a { display: block; color: var(--g8da-text); padding: 1rem 0; font-size: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08); transition: var(--g8da-transition); }
.g8da-mobile-menu ul li a:hover { color: var(--g8da-primary); padding-left: 0.8rem; }

/* MAIN CONTENT */
.g8da-main { padding-top: 56px; padding-bottom: 0; min-height: 100vh; }
@media (max-width: 768px) { .g8da-main { padding-bottom: 72px; } }

/* SLIDER */
.g8da-slider { position: relative; width: 100%; overflow: hidden; border-radius: 0 0 var(--g8da-radius) var(--g8da-radius); }
.g8da-slide { display: none; width: 100%; cursor: pointer; }
.g8da-slide img { width: 100%; height: auto; min-height: 160px; object-fit: cover; }
.g8da-slide-active { display: block; }
.g8da-slider-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.g8da-slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--g8da-transition); }
.g8da-dot-active { background: var(--g8da-gold); width: 20px; border-radius: 4px; }

/* SECTIONS */
.g8da-section { padding: 2rem 1.2rem; }
.g8da-section-title { font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.6rem; }
.g8da-section-title i, .g8da-section-title .material-icons { color: var(--g8da-primary); font-size: 2rem; }

/* GAME GRID */
.g8da-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.g8da-game-item { display: flex; flex-direction: column; align-items: center; cursor: pointer;
  transition: var(--g8da-transition); border-radius: var(--g8da-radius-sm); padding: 0.5rem; }
.g8da-game-item:hover { transform: translateY(-2px); background: rgba(233,30,99,0.1); }
.g8da-game-item img { width: 64px; height: 64px; border-radius: 1rem; object-fit: cover;
  border: 2px solid rgba(233,30,99,0.3); }
.g8da-game-item span { font-size: 1rem; color: var(--g8da-text-muted); margin-top: 0.3rem;
  text-align: center; line-height: 1.2; max-width: 70px; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap; }

/* CARDS */
.g8da-card { background: var(--g8da-bg-card); border-radius: var(--g8da-radius);
  padding: 1.5rem; margin-bottom: 1.2rem; box-shadow: var(--g8da-shadow); }
.g8da-card h3 { font-size: 1.5rem; color: var(--g8da-primary); margin-bottom: 0.8rem; }
.g8da-card p { color: var(--g8da-text-gray); font-size: 1.3rem; line-height: 1.6; }

/* CTA BUTTONS */
.g8da-cta-btn { display: inline-block; background: linear-gradient(135deg, var(--g8da-primary), var(--g8da-primary-dark));
  color: #fff; font-weight: 700; font-size: 1.4rem; padding: 1rem 2.4rem; border-radius: var(--g8da-radius);
  border: none; cursor: pointer; min-height: 44px; transition: var(--g8da-transition); text-align: center; }
.g8da-cta-btn:hover { transform: scale(1.03); box-shadow: 0 4px 20px rgba(233,30,99,0.4); }
.g8da-cta-gold { background: linear-gradient(135deg, var(--g8da-gold), #FFA000); color: #000; }

/* TESTIMONIALS */
.g8da-testimonial { background: var(--g8da-bg-card); border-radius: var(--g8da-radius);
  padding: 1.2rem; margin-bottom: 1rem; border-left: 3px solid var(--g8da-primary); }
.g8da-testimonial-name { color: var(--g8da-gold); font-weight: 600; font-size: 1.3rem; }
.g8da-testimonial-text { color: var(--g8da-text-gray); font-size: 1.2rem; margin-top: 0.5rem; line-height: 1.5; }

/* FOOTER */
.g8da-footer { background: #1a1a1a; padding: 2.5rem 1.2rem 1.5rem; margin-top: 2rem; }
.g8da-footer-brand { font-size: 1.8rem; font-weight: 700; color: var(--g8da-primary); margin-bottom: 0.8rem; }
.g8da-footer-desc { color: var(--g8da-text-gray); font-size: 1.2rem; line-height: 1.6; margin-bottom: 1.5rem; }
.g8da-footer-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.g8da-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; margin-bottom: 1.5rem; }
.g8da-footer-links a { color: var(--g8da-text-gray); font-size: 1.1rem; transition: var(--g8da-transition); }
.g8da-footer-links a:hover { color: var(--g8da-primary); }
.g8da-footer-copy { color: var(--g8da-text-muted); font-size: 1rem; text-align: center;
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }

/* BOTTOM NAV */
.g8da-bottom-nav { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: 60px;
  background: linear-gradient(135deg, var(--g8da-primary-dark), #3a0a20);
  display: flex; justify-content: space-around; align-items: center;
  z-index: 1000; box-shadow: 0 -2px 15px rgba(233,30,99,0.2); }
@media (min-width: 769px) { .g8da-bottom-nav { display: none; } }
.g8da-bottom-nav-btn { display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; min-width: 60px;
  min-height: 56px; transition: var(--g8da-transition); gap: 2px; border-radius: 0.6rem; }
.g8da-bottom-nav-btn i, .g8da-bottom-nav-btn .material-icons, .g8da-bottom-nav-btn ion-icon { font-size: 22px; }
.g8da-bottom-nav-btn span { font-size: 1rem; line-height: 1; }
.g8da-bottom-nav-btn:hover { color: var(--g8da-gold); background: rgba(255,215,0,0.08); }
.g8da-nav-active { color: var(--g8da-gold) !important; }

/* REVEAL ANIMATION */
.g8da-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.g8da-revealed { opacity: 1; transform: translateY(0); }

/* UTILITY */
.g8da-text-center { text-align: center; }
.g8da-mt-1 { margin-top: 1rem; } .g8da-mt-2 { margin-top: 2rem; }
.g8da-mb-1 { margin-bottom: 1rem; } .g8da-mb-2 { margin-bottom: 2rem; }
.g8da-highlight { color: var(--g8da-primary); font-weight: 600; }
.g8da-text-link { color: var(--g8da-primary); font-weight: 500; border-bottom: 1px dashed var(--g8da-primary);
  transition: var(--g8da-transition); }
.g8da-text-link:hover { color: var(--g8da-gold); border-bottom-color: var(--g8da-gold); }
.g8da-badge { display: inline-block; background: var(--g8da-primary); color: #fff; font-size: 1rem;
  padding: 0.2rem 0.6rem; border-radius: 0.4rem; font-weight: 600; }
.g8da-badge-gold { background: var(--g8da-gold); color: #000; }

/* FAQ */
.g8da-faq-item { margin-bottom: 1rem; }
.g8da-faq-q { font-weight: 600; color: var(--g8da-primary); font-size: 1.3rem; margin-bottom: 0.4rem; }
.g8da-faq-a { color: var(--g8da-text-gray); font-size: 1.2rem; line-height: 1.5; padding-left: 1rem; }

/* FEATURE LIST */
.g8da-feature-list { list-style: none; }
.g8da-feature-list li { padding: 0.6rem 0; color: var(--g8da-text-gray); font-size: 1.3rem;
  display: flex; align-items: flex-start; gap: 0.6rem; }
.g8da-feature-list li i { color: var(--g8da-green); margin-top: 0.2rem; flex-shrink: 0; }

/* WINNER TABLE */
.g8da-winner-row { display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1.2rem; }
.g8da-winner-name { color: var(--g8da-gold); font-weight: 600; }
.g8da-winner-game { color: var(--g8da-text-muted); }
.g8da-winner-amount { color: var(--g8da-green); font-weight: 700; }

/* CATEGORY LABEL */
.g8da-cat-label { font-size: 1.3rem; font-weight: 700; color: var(--g8da-primary); margin-bottom: 0.8rem;
  padding: 0.4rem 0; border-bottom: 2px solid rgba(233,30,99,0.3); display: flex; align-items: center; gap: 0.5rem; }
