/* 789be89 basefiles stylesheet - all custom classes use the g0a9- prefix. */
:root {
  --g0a9-primary: #FFEBCD;
  --g0a9-bg: #141414;
  --g0a9-bg-alt: #1d1d1d;
  --g0a9-bg-card: #232323;
  --g0a9-text: #FFEBCD;
  --g0a9-text-muted: #b9b3a4;
  --g0a9-accent: #e6b54a;
  --g0a9-accent-2: #c8102e;
  --g0a9-border: #2c2c2c;
  --g0a9-radius: 1.2rem;
  --g0a9-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.45);
  --g0a9-maxw: 430px;
  --g0a9-header-h: 5.6rem;
  --g0a9-bottomnav-h: 6.4rem;
}

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

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Inter", "Roboto", system-ui, sans-serif;
  background: var(--g0a9-bg);
  color: var(--g0a9-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--g0a9-accent); text-decoration: none; }

.g0a9-wrapper {
  max-width: var(--g0a9-maxw);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--g0a9-bg);
  position: relative;
}

/* ---------- Header ---------- */
.g0a9-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #1a1a1a, #141414);
  border-bottom: 0.1rem solid var(--g0a9-border);
  box-shadow: var(--g0a9-shadow);
}
.g0a9-header-inner {
  max-width: var(--g0a9-maxw);
  margin: 0 auto;
  height: var(--g0a9-header-h);
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.g0a9-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
  min-width: 0;
}
.g0a9-logo img { width: 3rem; height: 3rem; border-radius: 0.6rem; }
.g0a9-logo span {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--g0a9-primary);
  letter-spacing: 0.03rem;
}
.g0a9-header-btns { display: flex; align-items: center; gap: 0.6rem; }
.g0a9-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.1rem;
  border-radius: 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  min-height: 3.6rem;
  min-width: 4.4rem;
  cursor: pointer;
  border: 0.1rem solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.g0a9-btn:active { transform: scale(0.94); }
.g0a9-btn-register {
  background: linear-gradient(135deg, #e6b54a, #c8102e);
  color: #141414;
  box-shadow: 0 0.3rem 0.8rem rgba(200, 16, 46, 0.4);
}
.g0a9-btn-login {
  background: transparent;
  color: var(--g0a9-primary);
  border-color: var(--g0a9-accent);
}
.g0a9-menu-btn {
  background: transparent;
  border: none;
  color: var(--g0a9-primary);
  font-size: 2.2rem;
  cursor: pointer;
  min-width: 3.6rem;
  min-height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Mobile menu ---------- */
.g0a9-mobile-menu {
  max-width: var(--g0a9-maxw);
  margin: 0 auto;
  background: var(--g0a9-bg-alt);
  border-bottom: 0.1rem solid var(--g0a9-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 9999;
}
.g0a9-mobile-menu.g0a9-menu-open { max-height: 50rem; }
.g0a9-mobile-menu ul { list-style: none; padding: 0.8rem 1.2rem 1.2rem; }
.g0a9-mobile-menu li { border-bottom: 0.1rem solid var(--g0a9-border); }
.g0a9-mobile-menu li:last-child { border-bottom: none; }
.g0a9-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 0.4rem;
  color: var(--g0a9-primary);
  font-size: 1.5rem;
  font-weight: 600;
}
.g0a9-mobile-menu a:active { color: var(--g0a9-accent); }

/* ---------- Main content ---------- */
main {
  padding-top: calc(var(--g0a9-header-h) + 0.8rem);
  padding-bottom: 1rem;
}

/* ---------- Carousel ---------- */
.g0a9-carousel {
  position: relative;
  border-radius: var(--g0a9-radius);
  overflow: hidden;
  margin: 1rem 0 1.5rem;
  box-shadow: var(--g0a9-shadow);
}
.g0a9-slides { position: relative; width: 100%; aspect-ratio: 16 / 9; }
.g0a9-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}
.g0a9-slide img { width: 100%; height: 100%; object-fit: cover; }
.g0a9-slide.g0a9-slide-active { opacity: 1; }
.g0a9-slide-cap {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(20, 20, 20, 0.72);
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--g0a9-primary);
}
.g0a9-dots {
  position: absolute;
  right: 1rem; bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}
.g0a9-dot {
  width: 0.8rem; height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 235, 205, 0.5);
  cursor: pointer;
}
.g0a9-dot.g0a9-dot-active { background: var(--g0a9-accent); }

/* ---------- Section / headings ---------- */
.g0a9-section {
  padding: 1.2rem 1.2rem 1.5rem;
}
.g0a9-section-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.g0a9-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--g0a9-primary);
}
.g0a9-section-title .g0a9-accent { color: var(--g0a9-accent); }
.g0a9-divider {
  height: 0.1rem;
  background: linear-gradient(90deg, var(--g0a9-accent), transparent);
  margin: 0.5rem 0 1rem;
}

/* ---------- Filter buttons ---------- */
.g0a9-filter-bar {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.2rem 0 1rem;
  scrollbar-width: none;
}
.g0a9-filter-bar::-webkit-scrollbar { display: none; }
.g0a9-filter-btn {
  flex: 0 0 auto;
  padding: 0.6rem 1.1rem;
  border-radius: 2rem;
  background: var(--g0a9-bg-card);
  color: var(--g0a9-text-muted);
  font-size: 1.3rem;
  font-weight: 700;
  border: 0.1rem solid var(--g0a9-border);
  cursor: pointer;
  white-space: nowrap;
}
.g0a9-filter-btn.g0a9-filter-active {
  background: var(--g0a9-accent);
  color: #141414;
  border-color: var(--g0a9-accent);
}

/* ---------- Game grid ---------- */
.g0a9-game-section { margin-bottom: 1.5rem; }
.g0a9-game-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--g0a9-accent);
  margin: 0 0 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.g0a9-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.g0a9-game-card {
  background: var(--g0a9-bg-card);
  border-radius: 0.8rem;
  overflow: hidden;
  border: 0.1rem solid var(--g0a9-border);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.g0a9-game-card:active {
  transform: scale(0.95);
  border-color: var(--g0a9-accent);
}
.g0a9-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #000;
}
.g0a9-game-card span {
  font-size: 1.05rem;
  color: var(--g0a9-primary);
  padding: 0.4rem 0.3rem 0.5rem;
  text-align: center;
  line-height: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------- Info / feature cards ---------- */
.g0a9-card {
  background: var(--g0a9-bg-card);
  border-radius: var(--g0a9-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 0.1rem solid var(--g0a9-border);
}
.g0a9-card h3 {
  font-size: 1.5rem;
  color: var(--g0a9-accent);
  margin-bottom: 0.6rem;
}
.g0a9-card p { font-size: 1.35rem; color: var(--g0a9-text); margin-bottom: 0.6rem; }
.g0a9-card ul { list-style: none; padding-left: 0; }
.g0a9-card li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.6rem;
  font-size: 1.3rem;
  color: var(--g0a9-text);
}
.g0a9-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--g0a9-accent);
  font-size: 1.1rem;
}

/* ---------- Promo text link ---------- */
.g0a9-promo-link {
  color: var(--g0a9-accent);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

/* ---------- FAQ ---------- */
.g0a9-faq-item {
  background: var(--g0a9-bg-card);
  border-radius: 0.8rem;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  border: 0.1rem solid var(--g0a9-border);
}
.g0a9-faq-item h4 {
  font-size: 1.35rem;
  color: var(--g0a9-primary);
  margin-bottom: 0.4rem;
}
.g0a9-faq-item p { font-size: 1.25rem; color: var(--g0a9-text-muted); }

/* ---------- Winners / testimonials ---------- */
.g0a9-winners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.g0a9-winner {
  background: var(--g0a9-bg-card);
  border-radius: 0.8rem;
  padding: 0.8rem;
  border: 0.1rem solid var(--g0a9-border);
  font-size: 1.15rem;
  color: var(--g0a9-text);
}
.g0a9-winner b { color: var(--g0a9-accent); }

.g0a9-testimonial {
  background: var(--g0a9-bg-card);
  border-radius: 0.8rem;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border: 0.1rem solid var(--g0a9-border);
}
.g0a9-testimonial p { font-size: 1.25rem; color: var(--g0a9-text); font-style: italic; }
.g0a9-testimonial span { font-size: 1.1rem; color: var(--g0a9-accent); }

/* ---------- Payment ---------- */
.g0a9-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.g0a9-pay span {
  background: var(--g0a9-bg-card);
  border: 0.1rem solid var(--g0a9-border);
  border-radius: 0.6rem;
  padding: 0.5rem 0.9rem;
  font-size: 1.2rem;
  color: var(--g0a9-primary);
}

/* ---------- App CTA ---------- */
.g0a9-app-cta {
  background: linear-gradient(135deg, #2a2a2a, #141414);
  border-radius: var(--g0a9-radius);
  padding: 1.2rem;
  border: 0.1rem solid var(--g0a9-accent);
  text-align: center;
}
.g0a9-app-cta h3 { color: var(--g0a9-accent); font-size: 1.6rem; margin-bottom: 0.4rem; }
.g0a9-app-cta p { color: var(--g0a9-text); font-size: 1.3rem; margin-bottom: 0.8rem; }
.g0a9-app-cta .g0a9-btn { margin: 0 auto; }

/* ---------- Footer ---------- */
.g0a9-footer {
  background: #0f0f0f;
  border-top: 0.1rem solid var(--g0a9-border);
  padding: 1.5rem 1.2rem 2rem;
  margin-top: 1.5rem;
}
.g0a9-footer-brand { font-size: 1.3rem; color: var(--g0a9-text-muted); margin-bottom: 1rem; }
.g0a9-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.g0a9-footer-links a {
  font-size: 1.2rem;
  color: var(--g0a9-primary);
  text-decoration: underline;
}
.g0a9-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.g0a9-footer-copy { font-size: 1.1rem; color: var(--g0a9-text-muted); }

/* ---------- Mobile bottom nav ---------- */
.g0a9-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0f0f0f;
  border-top: 0.1rem solid var(--g0a9-accent);
  box-shadow: 0 -0.4rem 1rem rgba(0, 0, 0, 0.5);
}
.g0a9-bottomnav-inner {
  max-width: var(--g0a9-maxw);
  margin: 0 auto;
  height: var(--g0a9-bottomnav-h);
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.g0a9-bottomnav a {
  flex: 1;
  min-width: 6rem;
  min-height: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--g0a9-text-muted);
  font-size: 1.05rem;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}
.g0a9-bottomnav a i,
.g0a9-bottomnav a .material-icons-outlined,
.g0a9-bottomnav a ion-icon {
  font-size: 2.4rem;
  line-height: 1;
}
.g0a9-bottomnav a:active { transform: scale(0.9); }
.g0a9-bottomnav a.g0a9-active { color: var(--g0a9-accent); }

/* ---------- Reveal animation ---------- */
.g0a9-reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.g0a9-reveal.g0a9-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile padding / desktop ---------- */
@media (max-width: 768px) {
  main { padding-bottom: calc(var(--g0a9-bottomnav-h) + 1rem); }
}
@media (min-width: 769px) {
  .g0a9-bottomnav { display: none; }
  body { background: #0c0c0c; }
}
