/*!
 * jl-2.homes theme
 * File: css/theme-5c95.css
 * All custom classes use the g95a- prefix.
 * Palette: #9AFF9A | #0E1621 | #FFCC02 | #ADFF2F | #006400
 */

:root {
  --g95a-bg: #0E1621;
  --g95a-bg-2: #0b121b;
  --g95a-bg-3: #142235;
  --g95a-mint: #9AFF9A;
  --g95a-lime: #ADFF2F;
  --g95a-gold: #FFCC02;
  --g95a-green: #006400;
  --g95a-text: #e8f5e8;
  --g95a-muted: #93a8b0;
  --g95a-border: rgba(154, 255, 154, 0.16);
  --g95a-radius: 14px;
  --g95a-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  --g95a-header-h: 58px;
  --g95a-bottom-h: 64px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

html { font-size: 62.5%; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(173, 255, 47, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(154, 255, 154, 0.08), transparent 60%),
    var(--g95a-bg);
  color: var(--g95a-text);
  font-family: "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--g95a-mint); text-decoration: none; }
a:hover { color: var(--g95a-lime); }

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

/* ===== Header ===== */
.g95a-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14, 22, 33, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--g95a-border);
}
.g95a-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--g95a-header-h);
}
.g95a-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--g95a-text);
  letter-spacing: 0.5px;
}
.g95a-logo .g95a-logo-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--g95a-lime), var(--g95a-mint));
  color: var(--g95a-bg);
  display: grid; place-items: center;
  font-weight: 900; font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(173, 255, 47, 0.35);
}
.g95a-logo b { color: var(--g95a-gold); }
.g95a-header-actions { display: flex; align-items: center; gap: 8px; }

.g95a-menu-btn {
  background: transparent;
  border: 1px solid var(--g95a-border);
  color: var(--g95a-text);
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  cursor: pointer;
}

.g95a-btn {
  border: none;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.g95a-btn:active { transform: scale(0.96); }
.g95a-btn-login {
  background: transparent;
  color: var(--g95a-mint);
  border: 1.5px solid var(--g95a-mint);
}
.g95a-btn-login:hover { background: rgba(154, 255, 154, 0.10); }
.g95a-btn-register {
  background: linear-gradient(135deg, var(--g95a-gold), #ff9d00);
  color: #1a1200;
  box-shadow: 0 6px 16px rgba(255, 204, 2, 0.35);
}
.g95a-btn-register:hover { box-shadow: 0 8px 22px rgba(255, 204, 2, 0.5); }

/* ===== Mobile menu ===== */
#g95a-menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  z-index: 9998;
}
#g95a-menu-backdrop.g95a-visible { opacity: 1; pointer-events: auto; }

#g95a-mobile-menu {
  position: fixed;
  top: 0; right: -86%;
  width: 86%; max-width: 340px;
  height: 100%;
  background: var(--g95a-bg-2);
  z-index: 9999;
  padding: 18px 16px 30px;
  overflow-y: auto;
  transform: translateX(0);
  transition: right .28s ease;
  border-left: 1px solid var(--g95a-border);
}
#g95a-mobile-menu.g95a-open { right: 0; }
.g95a-menu-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.g95a-menu-head h3 { margin: 0; font-size: 1.7rem; color: var(--g95a-mint); }
.g95a-menu-close {
  background: transparent; border: none; color: var(--g95a-text);
  font-size: 2.2rem; line-height: 1; cursor: pointer;
}
.g95a-menu-list { list-style: none; padding: 0; margin: 0; }
.g95a-menu-list li { border-bottom: 1px solid var(--g95a-border); }
.g95a-menu-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 6px;
  color: var(--g95a-text); font-weight: 600;
}
.g95a-menu-list a i { color: var(--g95a-lime); width: 22px; text-align: center; }
.g95a-menu-cta {
  margin-top: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.g95a-no-scroll { overflow: hidden; }

/* ===== Hero ===== */
.g95a-hero {
  position: relative;
  padding: 18px 0 10px;
  overflow: hidden;
}
.g95a-slides { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--g95a-shadow); }
.g95a-slide {
  display: none;
  position: relative;
  min-height: 210px;
  background: linear-gradient(135deg, #0c2536, #163d28);
  padding: 22px 18px;
}
.g95a-slide.g95a-slide-active { display: block; animation: g95a-fade .5s ease; }
@keyframes g95a-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.g95a-slide-tag {
  display: inline-block;
  background: rgba(255, 204, 2, 0.18);
  color: var(--g95a-gold);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.g95a-slide h1, .g95a-slide h2 {
  margin: 0 0 8px;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #fff;
}
.g95a-slide p { margin: 0 0 14px; color: var(--g95a-text); font-size: 1.4rem; }
.g95a-slide .g95a-btn { font-size: 1.4rem; padding: 11px 22px; }

.g95a-dots {
  display: flex; justify-content: center; gap: 7px;
  margin-top: 12px;
}
.g95a-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(154, 255, 154, 0.3); cursor: pointer;
  border: none; padding: 0;
}
.g95a-dot.g95a-dot-active { background: var(--g95a-lime); width: 22px; border-radius: 5px; }

/* ===== Section common ===== */
.g95a-section {
  padding: 22px 0 6px;
}
.g95a-section-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.85rem;
  margin: 0 0 4px;
  color: #fff;
}
.g95a-section-title i { color: var(--g95a-gold); }
.g95a-section-sub { color: var(--g95a-muted); font-size: 1.3rem; margin: 0 0 14px; }
.g95a-title-accent { color: var(--g95a-lime); }

/* ===== Stats ===== */
.g95a-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 6px 0 4px;
}
.g95a-stat {
  background: var(--g95a-bg-3);
  border: 1px solid var(--g95a-border);
  border-radius: 12px;
  padding: 12px 6px;
  text-align: center;
}
.g95a-stat b { display: block; font-size: 1.9rem; color: var(--g95a-mint); }
.g95a-stat span { font-size: 1.15rem; color: var(--g95a-muted); }

/* ===== Promo CTA banner ===== */
.g95a-cta-banner {
  background: linear-gradient(135deg, var(--g95a-green), #0b3d0b);
  border: 1px solid var(--g95a-border);
  border-radius: var(--g95a-radius);
  padding: 16px;
  margin: 10px 0;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--g95a-shadow);
}
.g95a-cta-banner .g95a-cta-ico {
  font-size: 2.6rem; color: var(--g95a-gold);
}
.g95a-cta-banner .g95a-cta-text { flex: 1; }
.g95a-cta-banner h3 { margin: 0 0 4px; font-size: 1.55rem; color: #fff; }
.g95a-cta-banner p { margin: 0; font-size: 1.25rem; color: var(--g95a-text); }
.g95a-link-text {
  color: var(--g95a-gold);
  font-weight: 700;
  border-bottom: 1px dashed rgba(255, 204, 2, 0.4);
}

/* ===== Game filters & grid ===== */
.g95a-pills {
  display: flex; gap: 8px;
  overflow-x: auto;
  padding: 4px 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.g95a-pills::-webkit-scrollbar { display: none; }
.g95a-pill {
  background: var(--g95a-bg-3);
  border: 1px solid var(--g95a-border);
  color: var(--g95a-text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}
.g95a-pill.g95a-pill-active,
.g95a-pill:hover {
  background: linear-gradient(135deg, var(--g95a-lime), var(--g95a-mint));
  color: var(--g95a-bg);
  border-color: transparent;
}

.g95a-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.g95a-card {
  background: var(--g95a-bg-3);
  border: 1px solid var(--g95a-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .2s ease;
  position: relative;
}
.g95a-card:hover { transform: translateY(-3px); box-shadow: var(--g95a-shadow); }
.g95a-card-thumb {
  position: relative;
  aspect-ratio: 1/1;
  background: #08131c;
  overflow: hidden;
}
.g95a-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.g95a-card-play {
  position: absolute; inset: 0;
  background: rgba(0, 100, 0, 0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s ease;
}
.g95a-card:hover .g95a-card-play { opacity: 1; }
.g95a-card-play span {
  background: var(--g95a-gold); color: #1a1200;
  padding: 5px 12px; border-radius: 999px; font-size: 1.15rem; font-weight: 800;
}
.g95a-card-name {
  padding: 6px 8px 8px;
  font-size: 1.15rem;
  color: var(--g95a-text);
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Features ===== */
.g95a-features { display: grid; gap: 10px; }
.g95a-feature {
  background: var(--g95a-bg-3);
  border: 1px solid var(--g95a-border);
  border-radius: var(--g95a-radius);
  padding: 14px;
  display: flex; gap: 12px; align-items: flex-start;
}
.g95a-feature-ico {
  font-size: 2.2rem; color: var(--g95a-lime);
  width: 44px; height: 44px; flex: 0 0 44px;
  background: rgba(173, 255, 47, 0.10);
  border-radius: 12px; display: grid; place-items: center;
}
.g95a-feature h3 { margin: 0 0 4px; font-size: 1.5rem; color: #fff; }
.g95a-feature p { margin: 0; font-size: 1.25rem; color: var(--g95a-muted); }

/* ===== Content prose ===== */
.g95a-content {
  background: var(--g95a-bg-3);
  border: 1px solid var(--g95a-border);
  border-radius: var(--g95a-radius);
  padding: 16px;
}
.g95a-content h2 {
  font-size: 1.75rem; margin: 14px 0 6px; color: var(--g95a-lime);
}
.g95a-content h2:first-child { margin-top: 0; }
.g95a-content h3 { font-size: 1.4rem; margin: 12px 0 4px; color: var(--g95a-gold); }
.g95a-content p { margin: 0 0 10px; color: var(--g95a-text); }
.g95a-content ul { margin: 0 0 10px; padding-left: 18px; }
.g95a-content li { margin-bottom: 5px; }

/* ===== FAQ ===== */
.g95a-faq-item {
  background: var(--g95a-bg-3);
  border: 1px solid var(--g95a-border);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
}
.g95a-faq-item summary {
  cursor: pointer; font-weight: 700; color: #fff;
  font-size: 1.35rem; list-style: none;
  display: flex; align-items: center; gap: 8px;
}
.g95a-faq-item summary::-webkit-details-marker { display: none; }
.g95a-faq-item summary::before {
  content: "+"; color: var(--g95a-gold); font-size: 1.6rem; width: 16px;
}
.g95a-faq-item[open] summary::before { content: "-"; }
.g95a-faq-item p { margin: 8px 0 0; color: var(--g95a-muted); font-size: 1.25rem; }

/* ===== Footer ===== */
.g95a-footer {
  margin-top: 22px;
  border-top: 1px solid var(--g95a-border);
  background: var(--g95a-bg-2);
  padding: 20px 0 96px;
}
.g95a-footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.g95a-footer-col h4 {
  margin: 0 0 8px;
  font-size: 1.3rem; color: var(--g95a-gold);
}
.g95a-footer-col ul { list-style: none; margin: 0; padding: 0; }
.g95a-footer-col li { margin-bottom: 5px; }
.g95a-footer-col a { color: var(--g95a-text); font-size: 1.2rem; }
.g95a-footer-col a:hover { color: var(--g95a-lime); }
.g95a-footer-bottom {
  margin-top: 16px;
  text-align: center;
  color: var(--g95a-muted);
  font-size: 1.15rem;
  border-top: 1px solid var(--g95a-border);
  padding-top: 12px;
}
.g95a-responsible {
  background: rgba(154, 255, 154, 0.06);
  border: 1px solid var(--g95a-border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1.15rem;
  color: var(--g95a-muted);
  margin-top: 14px;
}

/* ===== Bottom nav ===== */
.g95a-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--g95a-bottom-h);
  background: rgba(11, 18, 27, 0.98);
  border-top: 1px solid var(--g95a-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
}
.g95a-nav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--g95a-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  position: relative;
  transition: color .2s ease;
}
.g95a-nav-btn .material-symbols-outlined,
.g95a-nav-btn i,
.g95a-nav-btn ion-icon { font-size: 22px; }
.g95a-nav-btn:hover, .g95a-nav-btn.g95a-nav-active { color: var(--g95a-lime); }
.g95a-nav-btn.g95a-nav-active::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 3px;
  background: var(--g95a-lime);
  border-radius: 0 0 4px 4px;
}
.g95a-nav-btn.g95a-nav-promo {
  color: var(--g95a-gold);
}
.g95a-nav-btn.g95a-nav-promo::after {
  content: "";
  position: absolute;
  top: 6px; right: 16px;
  width: 7px; height: 7px;
  background: #ff5a5a;
  border-radius: 50%;
  box-shadow: 0 0 6px #ff5a5a;
}

/* ===== Reveal animation ===== */
.g95a-reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.g95a-reveal.g95a-revealed { opacity: 1; transform: none; }

/* ===== Desktop ===== */
@media (min-width: 769px) {
  body { background: var(--g95a-bg); }
  .g95a-container { max-width: 960px; padding: 0 20px; }
  .g95a-grid { grid-template-columns: repeat(6, 1fr); }
  .g95a-stats { grid-template-columns: repeat(3, 1fr); }
  .g95a-bottom-nav { display: none; }
  .g95a-footer { padding-bottom: 30px; }
  .g95a-menu-btn { display: none; }
  .g95a-header-actions .g95a-desktop-links {
    display: flex; gap: 14px; align-items: center; margin-right: 10px;
  }
}
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
  .g95a-desktop-links { display: none !important; }
}
