/* =====================================================================
   jun1.click - style-a967.css
   Mobile-first styles. All custom classes use the g672- prefix.
   Palette: #4A4A4A | #AFEEEE | #20B2AA | #0F0F23 | #E5E5E5 | #4DB6AC
   Dark colors = backgrounds, light colors = text.
   ===================================================================== */

:root {
  --g672-bg: #0F0F23;
  --g672-bg-alt: #161635;
  --g672-bg-card: #1d1d44;
  --g672-text: #E5E5E5;
  --g672-text-soft: #AFEEEE;
  --g672-primary: #20B2AA;
  --g672-accent: #4DB6AC;
  --g672-muted: #4A4A4A;
  --g672-gold: #f5c542;
  --g672-border: rgba(175, 238, 238, 0.12);
  --g672-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  --g672-radius: 14px;
}

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

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: radial-gradient(circle at 30% 0%, #1b1b3f 0%, var(--g672-bg) 55%);
  color: var(--g672-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

a { color: var(--g672-text-soft); text-decoration: none; }
img { max-width: 100%; display: block; }

.g672-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px;
}

main.g672-main { padding-bottom: 88px; }

/* ===== Header ===== */
.g672-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(15,15,35,0.96), rgba(15,15,35,0.88));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--g672-border);
}
.g672-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.g672-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--g672-text);
  letter-spacing: 0.4px;
}
.g672-logo img { width: 30px; height: 30px; border-radius: 8px; }
.g672-logo span b { color: var(--g672-primary); }

.g672-header-actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.g672-btn {
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.g672-btn:active { transform: scale(0.96); }
.g672-btn-login {
  background: transparent;
  color: var(--g672-text-soft);
  border: 1px solid var(--g672-primary);
}
.g672-btn-register {
  background: linear-gradient(135deg, var(--g672-primary), var(--g672-accent));
  color: #06201f;
  box-shadow: 0 4px 14px rgba(32, 178, 170, 0.35);
}

.g672-menu-btn {
  background: transparent;
  border: 1px solid var(--g672-border);
  color: var(--g672-text-soft);
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
}

/* ===== Mobile menu ===== */
.g672-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  background: var(--g672-bg-alt);
  border-top: 1px solid var(--g672-border);
}
.g672-menu-open { max-height: 480px; }
.g672-mobile-menu ul { list-style: none; padding: 6px 12px 12px; }
.g672-mobile-menu li a {
  display: block;
  padding: 12px 8px;
  border-bottom: 1px solid var(--g672-border);
  color: var(--g672-text);
  font-size: 1.4rem;
}

/* ===== Hero / Carousel ===== */
.g672-hero { margin-top: 64px; padding-top: 12px; }
.g672-carousel {
  position: relative;
  border-radius: var(--g672-radius);
  overflow: hidden;
  box-shadow: var(--g672-shadow);
}
.g672-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.g672-slide-active { display: block; }
.g672-slide img { width: 100%; height: 190px; object-fit: cover; }
.g672-slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 14px 14px;
  background: linear-gradient(180deg, transparent, rgba(15,15,35,0.85));
  color: var(--g672-text);
}
.g672-slide-caption b { color: var(--g672-gold); }
.g672-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.g672-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(229,229,229,0.4);
  border: none; cursor: pointer;
}
.g672-dot-active { background: var(--g672-primary); }

/* ===== Section title ===== */
.g672-section { padding: 18px 0 8px; }
.g672-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--g672-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.g672-section-title::before {
  content: "";
  width: 5px; height: 22px;
  background: linear-gradient(180deg, var(--g672-primary), var(--g672-accent));
  border-radius: 3px;
}
.g672-section-title em { color: var(--g672-gold); font-style: normal; }

/* ===== Game grid ===== */
.g672-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.g672-game-card {
  background: var(--g672-bg-card);
  border: 1px solid var(--g672-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-align: center;
}
.g672-game-card:active { transform: scale(0.96); }
.g672-game-card img { width: 100%; height: 78px; object-fit: cover; }
.g672-game-card span {
  display: block;
  padding: 6px 4px;
  font-size: 1.15rem;
  color: var(--g672-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Info / feature blocks ===== */
.g672-card {
  background: var(--g672-bg-card);
  border: 1px solid var(--g672-border);
  border-radius: var(--g672-radius);
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: var(--g672-shadow);
}
.g672-card h2, .g672-card h3 { color: var(--g672-text-soft); margin-bottom: 8px; }
.g672-card h2 { font-size: 1.6rem; }
.g672-card h3 { font-size: 1.4rem; }
.g672-card p { font-size: 1.3rem; color: var(--g672-text); margin-bottom: 8px; }
.g672-card a.g672-text-link {
  color: var(--g672-primary);
  font-weight: 700;
  border-bottom: 1px dashed var(--g672-primary);
}

.g672-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.g672-feature {
  background: var(--g672-bg-card);
  border: 1px solid var(--g672-border);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.g672-feature .g672-ico {
  font-size: 2.2rem;
  color: var(--g672-primary);
  margin-bottom: 6px;
}
.g672-feature b { color: var(--g672-text-soft); display: block; font-size: 1.25rem; }
.g672-feature span { color: var(--g672-text); font-size: 1.15rem; }

/* ===== Testimonials ===== */
.g672-testimonials { display: grid; gap: 10px; }
.g672-testimonial {
  background: var(--g672-bg-card);
  border-left: 4px solid var(--g672-gold);
  border-radius: 10px;
  padding: 10px 12px;
}
.g672-testimonial b { color: var(--g672-text-soft); }
.g672-testimonial small { color: var(--g672-gold); }

/* ===== RTP / data table ===== */
.g672-rtp {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
}
.g672-rtp th, .g672-rtp td {
  padding: 8px;
  border-bottom: 1px solid var(--g672-border);
  text-align: left;
}
.g672-rtp th { color: var(--g672-text-soft); }
.g672-rtp td b { color: var(--g672-primary); }

/* ===== Payment / app CTA ===== */
.g672-pay { display: flex; flex-wrap: wrap; gap: 8px; }
.g672-pay span {
  background: var(--g672-bg-card);
  border: 1px solid var(--g672-border);
  color: var(--g672-text-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 1.2rem;
}
.g672-app-cta {
  background: linear-gradient(135deg, #143b3a, #1d1d44);
  border: 1px solid var(--g672-primary);
  border-radius: var(--g672-radius);
  padding: 16px;
  text-align: center;
}
.g672-app-cta h3 { color: var(--g672-text); margin-bottom: 6px; }
.g672-app-cta p { color: var(--g672-text-soft); margin-bottom: 10px; }
.g672-app-cta .g672-btn-register { display: inline-block; }

/* ===== Promo links (in text) ===== */
.g672-promo-link {
  display: inline-block;
  margin: 4px 4px 0 0;
  padding: 6px 12px;
  background: rgba(32, 178, 170, 0.18);
  color: var(--g672-text-soft);
  border: 1px solid var(--g672-primary);
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

/* ===== Footer ===== */
.g672-footer {
  margin-top: 16px;
  padding: 18px 0 20px;
  background: var(--g672-bg-alt);
  border-top: 1px solid var(--g672-border);
}
.g672-footer p { font-size: 1.2rem; color: var(--g672-text); margin-bottom: 10px; }
.g672-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.g672-footer-links a {
  font-size: 1.15rem;
  padding: 4px 8px;
  border: 1px solid var(--g672-border);
  border-radius: 8px;
  color: var(--g672-text-soft);
}
.g672-footer-copy { font-size: 1.1rem; color: var(--g672-muted); }

/* ===== Bottom mobile nav ===== */
.g672-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #14143a, #0c0c20);
  border-top: 1px solid var(--g672-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 62px;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.g672-bottom-nav a {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--g672-text);
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
}
.g672-bottom-nav a:active { transform: scale(0.92); }
.g672-bottom-nav a .g672-nav-ico { font-size: 2.2rem; line-height: 1; }
.g672-bottom-nav a.g672-nav-active { color: var(--g672-primary); }
.g672-bottom-nav a.g672-nav-promo .g672-nav-ico { color: var(--g672-gold); }

/* ===== Desktop ===== */
@media (min-width: 769px) {
  .g672-bottom-nav { display: none; }
  .g672-header-inner { max-width: 960px; }
  .g672-container { max-width: 960px; }
  .g672-game-grid { grid-template-columns: repeat(6, 1fr); }
  .g672-features { grid-template-columns: repeat(4, 1fr); }
  main.g672-main { padding-bottom: 24px; }
}
