/* five 88 basefiles stylesheet - all custom classes use g122- prefix
   Mobile-first design, max-width 430px viewport */
:root {
  --g122-primary: #0000FF;
  --g122-bg: #0a0e27;
  --g122-bg-2: #111936;
  --g122-bg-3: #1a244b;
  --g122-text: #D3D3D3;
  --g122-text-light: #ffffff;
  --g122-accent: #87CEFA;
  --g122-muted: #95A5A6;
  --g122-deep: #34495E;
  --g122-gold: #f4c430;
  --g122-red: #ff4d4d;
  --g122-green: #2ecc71;
  --g122-radius: 10px;
  --g122-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; }
body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: var(--g122-bg);
  color: var(--g122-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--g122-accent); text-decoration: none; }
a:hover { color: var(--g122-text-light); }
img { max-width: 100%; display: block; }
.g122-wrapper {
  max-width: 430px;
  margin: 0 auto;
  background: var(--g122-bg);
  min-height: 100vh;
  position: relative;
}
/* ===== Header ===== */
.g122-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0a0e27 0%, #111936 100%);
  border-bottom: 1px solid rgba(135, 206, 250, 0.18);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  height: 56px;
}
.g122-logo { display: flex; align-items: center; gap: 8px; color: var(--g122-text-light); font-weight: 700; font-size: 1.6rem; }
.g122-logo img { width: 30px; height: 30px; border-radius: 6px; }
.g122-logo .g122-logo-text {
  background: linear-gradient(90deg, #87CEFA, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.g122-header-actions { display: flex; align-items: center; gap: 8px; }
.g122-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  min-height: 36px;
}
.g122-btn:active { transform: scale(0.96); }
.g122-btn-register { background: linear-gradient(90deg, #0000FF, #4169E1); color: #fff; box-shadow: 0 3px 10px rgba(0, 0, 255, 0.35); }
.g122-btn-login { background: transparent; color: var(--g122-accent); border: 1px solid var(--g122-accent); }
.g122-menu-toggle {
  background: transparent;
  border: none;
  color: var(--g122-accent);
  font-size: 2.2rem;
  cursor: pointer;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
}
/* ===== Mobile slide-down menu ===== */
.g122-mobile-menu {
  position: fixed;
  top: 56px; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: var(--g122-bg-2);
  border-bottom: 1px solid rgba(135, 206, 250, 0.18);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  z-index: 9999;
}
.g122-mobile-menu.g122-menu-open { max-height: 480px; }
.g122-mobile-menu ul { list-style: none; padding: 6px 0; }
.g122-mobile-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  color: var(--g122-text);
  border-bottom: 1px solid rgba(135, 206, 250, 0.08);
  font-size: 1.4rem;
}
.g122-mobile-menu li a:hover { background: var(--g122-bg-3); color: var(--g122-accent); }
.g122-mobile-menu li a i { color: var(--g122-accent); width: 22px; text-align: center; }
/* ===== Main content ===== */
.g122-main { padding-top: 56px; padding-bottom: 80px; }
.g122-section { padding: 18px 14px; }
.g122-section-title {
  font-size: 1.8rem;
  color: var(--g122-text-light);
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 4px solid var(--g122-primary);
}
/* ===== Carousel ===== */
.g122-carousel { position: relative; width: 100%; height: 180px; overflow: hidden; border-radius: 0 0 14px 14px; }
.g122-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; cursor: pointer; }
.g122-slide.g122-slide-active { opacity: 1; }
.g122-slide img { width: 100%; height: 100%; object-fit: cover; }
.g122-slide-overlay { position: absolute; left: 14px; bottom: 16px; color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,.6); }
.g122-slide-overlay h3 { font-size: 1.6rem; margin-bottom: 4px; }
.g122-slide-overlay p { font-size: 1.2rem; color: var(--g122-accent); }
.g122-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.4); color: #fff; border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 1.6rem; cursor: pointer; z-index: 2;
}
.g122-carousel-arrow.g122-prev { left: 8px; }
.g122-carousel-arrow.g122-next { right: 8px; }
.g122-dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 2; }
.g122-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; }
.g122-dot.g122-dot-active { background: var(--g122-accent); }
/* ===== Hero ===== */
.g122-hero { padding: 18px 14px 6px; text-align: center; }
.g122-hero h1 { font-size: 2.2rem; color: var(--g122-text-light); margin-bottom: 8px; line-height: 1.3; }
.g122-hero p { font-size: 1.35rem; color: var(--g122-text); margin-bottom: 14px; }
.g122-cta-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.g122-cta-row .g122-btn { padding: 10px 20px; font-size: 1.4rem; }
/* ===== Game grid ===== */
.g122-game-block { margin-bottom: 6px; }
.g122-game-block h2 { font-size: 1.6rem; color: var(--g122-text-light); margin: 14px 0 10px; display: flex; align-items: center; gap: 8px; }
.g122-game-block h2 i { color: var(--g122-gold); }
.g122-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.g122-game-card {
  background: var(--g122-bg-2);
  border-radius: var(--g122-radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(135, 206, 250, 0.1);
  transition: transform .15s ease, border-color .15s ease;
  text-align: center;
}
.g122-game-card:active { transform: scale(0.95); border-color: var(--g122-accent); }
.g122-game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.g122-game-card .g122-game-name { font-size: 1.05rem; color: var(--g122-text); padding: 5px 4px 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* ===== Info / feature cards ===== */
.g122-card {
  background: var(--g122-bg-2);
  border-radius: var(--g122-radius);
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(135, 206, 250, 0.1);
}
.g122-card h3 { color: var(--g122-text-light); font-size: 1.5rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.g122-card h3 i { color: var(--g122-accent); }
.g122-card p { font-size: 1.3rem; color: var(--g122-text); margin-bottom: 8px; }
.g122-card ul { list-style: none; padding-left: 0; }
.g122-card ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 1.3rem;
  color: var(--g122-text);
  border-bottom: 1px dashed rgba(135, 206, 250, 0.1);
}
.g122-card ul li:last-child { border-bottom: none; }
.g122-card ul li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--g122-green); font-size: 1.1rem; }
.g122-promo-link { color: var(--g122-gold); font-weight: 700; cursor: pointer; text-decoration: underline; }
.g122-site-link { color: var(--g122-accent); font-weight: 700; text-decoration: underline; }
.g122-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 10px 0; }
.g122-mini-card { background: var(--g122-bg-3); border: 1px solid rgba(135, 206, 250, 0.14); border-radius: 8px; padding: 10px; }
.g122-mini-card strong { color: var(--g122-text-light); display: block; margin-bottom: 4px; }
.g122-step-list { counter-reset: g122step; list-style: none; padding-left: 0; }
.g122-step-list li { counter-increment: g122step; position: relative; padding: 8px 0 8px 34px; border-bottom: 1px dashed rgba(135, 206, 250, 0.12); }
.g122-step-list li::before { content: counter(g122step); position: absolute; left: 0; top: 7px; width: 24px; height: 24px; border-radius: 50%; background: var(--g122-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; }
.g122-note { background: rgba(135, 206, 250, 0.08); border-left: 3px solid var(--g122-accent); border-radius: 8px; padding: 10px; font-size: 1.25rem; }
/* ===== FAQ accordion ===== */
.g122-faq-item { background: var(--g122-bg-2); border-radius: var(--g122-radius); margin-bottom: 8px; overflow: hidden; border: 1px solid rgba(135, 206, 250, 0.1); }
.g122-faq-header { padding: 12px 14px; font-size: 1.35rem; color: var(--g122-text-light); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.g122-faq-header .g122-faq-icon { color: var(--g122-accent); transition: transform .2s; }
.g122-faq-item.g122-faq-open .g122-faq-header .g122-faq-icon { transform: rotate(180deg); }
.g122-faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 14px; color: var(--g122-text); font-size: 1.25rem; }
.g122-faq-item.g122-faq-open .g122-faq-body { max-height: 240px; padding: 0 14px 12px; }
/* ===== RTP table ===== */
.g122-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.25rem; }
.g122-rtp-table th, .g122-rtp-table td { padding: 8px 10px; text-align: left; border-bottom: 1px solid rgba(135, 206, 250, 0.12); }
.g122-rtp-table th { color: var(--g122-accent); }
.g122-rtp-table td { color: var(--g122-text); }
.g122-rtp-table td.g122-rtp-high { color: var(--g122-green); font-weight: 700; }
/* ===== Testimonials ===== */
.g122-testimonial { background: var(--g122-bg-2); border-radius: var(--g122-radius); padding: 12px 14px; margin-bottom: 8px; border-left: 3px solid var(--g122-gold); }
.g122-testimonial .g122-testi-name { color: var(--g122-text-light); font-weight: 700; font-size: 1.3rem; margin-bottom: 4px; }
.g122-testimonial .g122-testi-text { font-size: 1.2rem; color: var(--g122-text); }
.g122-stars { color: var(--g122-gold); font-size: 1.1rem; }
/* ===== Payment / app badges ===== */
.g122-badge-row { display: flex; flex-wrap: wrap; gap: 8px; }
.g122-badge { background: var(--g122-bg-3); border: 1px solid rgba(135, 206, 250, 0.15); border-radius: 8px; padding: 8px 12px; font-size: 1.2rem; color: var(--g122-text); display: flex; align-items: center; gap: 6px; }
.g122-badge i { color: var(--g122-accent); }
/* ===== Winners ===== */
.g122-winner { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; background: var(--g122-bg-2); border-radius: 8px; margin-bottom: 6px; font-size: 1.2rem; }
.g122-winner .g122-winner-name { color: var(--g122-text-light); font-weight: 600; }
.g122-winner .g122-winner-amount { color: var(--g122-gold); font-weight: 700; }
/* ===== Footer ===== */
.g122-footer { background: var(--g122-bg-2); padding: 18px 14px 22px; border-top: 1px solid rgba(135, 206, 250, 0.15); }
.g122-footer-brand { color: var(--g122-text); font-size: 1.25rem; margin-bottom: 12px; line-height: 1.5; }
.g122-footer-links { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.g122-footer-links .g122-btn { background: var(--g122-bg-3); color: var(--g122-accent); padding: 6px 12px; font-size: 1.15rem; border-radius: 14px; }
.g122-footer-copy { color: var(--g122-muted); font-size: 1.1rem; text-align: center; border-top: 1px dashed rgba(135, 206, 250, 0.1); padding-top: 10px; }
/* ===== Mobile bottom nav ===== */
.g122-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: 60px;
  background: linear-gradient(180deg, #111936 0%, #0a0e27 100%);
  border-top: 1px solid rgba(135, 206, 250, 0.2);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.4);
}
.g122-navbtn {
  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(--g122-muted);
  cursor: pointer;
  transition: color .15s ease, transform .15s ease;
  position: relative;
}
.g122-navbtn:active { transform: scale(0.92); }
.g122-navbtn i, .g122-navbtn .material-icons-outlined { font-size: 22px; }
.g122-navbtn span { font-size: 10px; }
.g122-navbtn-active { color: var(--g122-gold); }
.g122-navbtn-active::after { content: ""; position: absolute; top: 0; width: 30px; height: 3px; background: var(--g122-gold); border-radius: 0 0 4px 4px; }
/* Desktop: hide bottom nav */
@media (min-width: 769px) {
  .g122-bottom-nav { display: none; }
  .g122-wrapper { max-width: 430px; }
  .g122-header, .g122-mobile-menu { max-width: 430px; }
}
/* Mobile bottom padding for content clearance */
@media (max-width: 768px) { .g122-main { padding-bottom: 80px; } }
/* Utility */
.g122-text-center { text-align: center; }
.g122-mt-10 { margin-top: 10px; }
.g122-mb-10 { margin-bottom: 10px; }
.g122-highlight { color: var(--g122-gold); font-weight: 700; }
