/* 1xbet app - style-7f08.css
   All custom class names use the g08a- prefix.
   Palette: #32CD32 | #999999 | #2C2C2C | #006400 | #FFB3FF
   Dark colours as backgrounds, light colours as text. */

:root {
  --g08a-primary: #32CD32;
  --g08a-primary-dark: #006400;
  --g08a-bg: #2C2C2C;
  --g08a-bg-2: #1c1c1c;
  --g08a-bg-3: #3a3a3a;
  --g08a-text: #ffffff;
  --g08a-text-muted: #999999;
  --g08a-accent: #FFB3FF;
  --g08a-radius: 12px;
}

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

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

body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", Arial, sans-serif;
  background: var(--g08a-bg);
  color: var(--g08a-text);
  line-height: 1.5;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

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

a { color: var(--g08a-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.g08a-wrapper { width: 100%; padding: 0 14px; }

/* ===== Header ===== */
.g08a-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--g08a-primary-dark), var(--g08a-bg));
  border-bottom: 2px solid var(--g08a-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
}

.g08a-logo { display: flex; align-items: center; gap: 8px; color: #fff; }
.g08a-logo img { width: 28px; height: 28px; border-radius: 6px; }
.g08a-logo strong { font-size: 1.7rem; font-weight: 800; letter-spacing: 0.3px; }
.g08a-logo span { color: var(--g08a-primary); }

.g08a-header-actions { display: flex; align-items: center; gap: 8px; }

.g08a-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  min-height: 36px;
}
.g08a-btn:hover { transform: translateY(-1px); }
.g08a-btn-login { background: #fff; color: var(--g08a-primary-dark); }
.g08a-btn-register { background: var(--g08a-primary); color: #0a2a0a; box-shadow: 0 2px 8px rgba(50,205,50,.4); }

.g08a-menu-toggle {
  background: transparent;
  border: 1px solid var(--g08a-primary);
  color: var(--g08a-primary);
  border-radius: 8px;
  width: 38px; height: 38px;
  font-size: 1.8rem;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}

/* ===== Mobile expandable menu ===== */
.g08a-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--g08a-bg-2);
  padding: 70px 18px 20px;
  z-index: 9999;
  transition: right .3s ease;
  overflow-y: auto;
  border-left: 2px solid var(--g08a-primary);
}
.g08a-mobile-menu.g08a-menu-open { right: 0; }
.g08a-mobile-menu a {
  display: block;
  padding: 12px 10px;
  border-bottom: 1px solid #444;
  color: #fff;
  font-size: 1.5rem;
}
.g08a-mobile-menu a:hover { color: var(--g08a-primary); }
.g08a-menu-close {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--g08a-primary);
  color: #0a2a0a;
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1.8rem; cursor: pointer;
}

.g08a-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9998;
}
.g08a-overlay.g08a-menu-open { display: block; }

/* ===== Hero carousel ===== */
.g08a-hero {
  margin: 12px 0;
  border-radius: var(--g08a-radius);
  overflow: hidden;
  position: relative;
}
.g08a-hero-track { position: relative; }
.g08a-hero-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.g08a-hero-slide.g08a-active { display: block; }
.g08a-hero-slide img { width: 100%; height: 170px; object-fit: cover; border-radius: var(--g08a-radius); }
.g08a-hero-cap {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(0,0,0,.55);
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
}
.g08a-hero-cap b { font-size: 1.7rem; color: var(--g08a-accent); display: block; }
.g08a-hero-cap span { font-size: 1.3rem; }

.g08a-hero-dots {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 8px;
}
.g08a-hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #666;
  border: none; cursor: pointer;
}
.g08a-hero-dot.g08a-active { background: var(--g08a-primary); }

/* ===== Section / Title ===== */
.g08a-section { margin: 22px 0; }
.g08a-section-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.9rem; font-weight: 800;
  color: var(--g08a-primary);
  border-left: 4px solid var(--g08a-accent);
  padding-left: 10px;
  margin-bottom: 12px;
}
.g08a-section-title small { color: var(--g08a-text-muted); font-size: 1.3rem; font-weight: 500; }

.g08a-h1 {
  font-size: 2.2rem; font-weight: 900;
  margin: 18px 0 6px;
  background: linear-gradient(90deg, var(--g08a-primary), var(--g08a-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.g08a-lead { color: var(--g08a-text-muted); font-size: 1.4rem; margin-bottom: 12px; }

/* ===== Game grid ===== */
.g08a-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.g08a-game-card {
  background: var(--g08a-bg-3);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  text-align: center;
  padding-bottom: 6px;
  border: 1px solid #444;
}
.g08a-game-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(50,205,50,.25); border-color: var(--g08a-primary); }
.g08a-game-card img { width: 100%; height: 88px; object-fit: cover; }
.g08a-game-card span {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  padding: 4px 4px 2px;
  line-height: 1.2;
  min-height: 30px;
}

.g08a-cat-tag {
  display: inline-block;
  background: var(--g08a-primary-dark);
  color: #fff;
  font-size: 1.2rem;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  font-weight: 700;
}

/* ===== Info blocks ===== */
.g08a-card {
  background: var(--g08a-bg-3);
  border-radius: var(--g08a-radius);
  padding: 14px;
  margin: 10px 0;
  border-left: 4px solid var(--g08a-primary);
}
.g08a-card h3 { font-size: 1.6rem; color: var(--g08a-accent); margin-bottom: 6px; }
.g08a-card p { font-size: 1.4rem; color: #ddd; }
.g08a-card ul { margin: 8px 0 0 18px; font-size: 1.35rem; color: #ddd; }
.g08a-card li { margin: 4px 0; }

.g08a-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.g08a-feature {
  background: var(--g08a-bg-3);
  padding: 12px; border-radius: 10px;
  text-align: center;
  border: 1px solid #444;
}
.g08a-feature i { font-size: 2.4rem; color: var(--g08a-primary); }
.g08a-feature b { display: block; font-size: 1.4rem; margin-top: 6px; }
.g08a-feature span { font-size: 1.2rem; color: var(--g08a-text-muted); }

/* ===== Testimonial / winners ===== */
.g08a-list { list-style: none; }
.g08a-list li {
  background: var(--g08a-bg-3);
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 1.35rem;
  display: flex; justify-content: space-between; align-items: center;
}
.g08a-list li b { color: var(--g08a-accent); }

/* ===== CTA strip ===== */
.g08a-cta {
  background: linear-gradient(135deg, var(--g08a-primary-dark), var(--g08a-primary));
  padding: 16px;
  border-radius: var(--g08a-radius);
  text-align: center;
  margin: 18px 0;
  color: #fff;
}
.g08a-cta h3 { font-size: 1.9rem; margin-bottom: 6px; }
.g08a-cta p { font-size: 1.35rem; margin-bottom: 12px; }
.g08a-cta .g08a-btn { background: #fff; color: var(--g08a-primary-dark); font-size: 1.5rem; padding: 10px 22px; }

.g08a-text-link { color: var(--g08a-accent); font-weight: 700; }

/* ===== Footer ===== */
.g08a-footer {
  background: var(--g08a-bg-2);
  padding: 22px 14px 16px;
  margin-top: 24px;
  border-top: 2px solid var(--g08a-primary);
  font-size: 1.3rem;
  color: var(--g08a-text-muted);
}
.g08a-footer h4 { color: var(--g08a-primary); font-size: 1.5rem; margin-bottom: 8px; }
.g08a-footer p { margin-bottom: 8px; }
.g08a-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin: 10px 0;
}
.g08a-footer-links a { color: #ddd; font-size: 1.3rem; padding: 4px 0; }
.g08a-footer-promos {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 12px 0;
}
.g08a-footer-promos .g08a-btn {
  background: var(--g08a-primary);
  color: #0a2a0a;
  font-size: 1.3rem;
  padding: 8px 14px;
}
.g08a-copy { text-align: center; padding-top: 12px; border-top: 1px solid #444; }

/* ===== Bottom navigation ===== */
.g08a-bottom-nav {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 62px;
  background: linear-gradient(180deg, #1a1a1a, #000);
  border-top: 2px solid var(--g08a-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding: 4px 0;
}
.g08a-nav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 58px;
  background: transparent;
  border: none;
  color: var(--g08a-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color .15s ease, transform .15s ease;
}
.g08a-nav-btn i { font-size: 22px; }
.g08a-nav-btn .material-icons-outlined { font-size: 24px; }
.g08a-nav-btn:hover { color: var(--g08a-primary); transform: translateY(-1px); }
.g08a-nav-btn.g08a-active { color: var(--g08a-primary); }
.g08a-nav-btn.g08a-active i { transform: scale(1.1); }

.g08a-nav-promo { color: var(--g08a-accent); }

/* Back to top FAB */
.g08a-fab {
  position: fixed;
  bottom: 74px; right: 14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--g08a-primary);
  color: #0a2a0a;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,.4);
}

/* ===== Responsive ===== */
@media (min-width: 769px) {
  .g08a-bottom-nav { display: none; }
  .g08a-fab { display: none; }
}

@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}

.g08a-hidden { display: none; }
