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

:root {
  --bg:         rgb(9, 30, 32);
  --card-bg:    rgb(12, 40, 43);
  --primary:    #00C853;
  --primary2:   #00963D;
  --text:       #FFFFFF;
  --text-muted: #A8C8B0;
  --border:     rgba(0, 200, 83, 0.22);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HEADER ─── */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 30, 32, 0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
}

/* ── DESKTOP NAV ── */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 16px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 7px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(0, 200, 83, 0.08);
}

/* ── HAMBURGER BUTTON ── */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(9, 30, 32, 0.85);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.hamburger-btn:hover {
  border-color: var(--primary);
  background: rgba(0, 200, 83, 0.08);
}

.hamburger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── SIDEBAR OVERLAY ── */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.sidebar-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── SIDEBAR ── */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 260px;
  background: var(--card-bg);
  border-left: 1px solid var(--border);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  padding: 20px 0 32px;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--border);
}

.sidebar-logo {
  height: 32px;
  width: auto;
  opacity: 0.85;
}

.sidebar-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.sidebar-close:hover { color: var(--text); }

.sidebar-nav {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-left: 3px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.sidebar-link:hover {
  color: var(--primary);
  background: rgba(0, 200, 83, 0.07);
  border-left-color: var(--primary);
}

.sidebar-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.75;
}

/* ── HERO ── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 65px 32px 90px;
}

/* layered background glows */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 70% at 18% 60%, rgba(0, 150, 61, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 65% 65% at 26% 48%, rgba(0, 200, 83, 0.12) 0%, transparent 68%),
    radial-gradient(ellipse 45% 55% at 82% 32%, rgba(0, 160, 55, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 70% 80%, rgba(0, 110, 35, 0.10) 0%, transparent 55%),
    var(--bg);
}

/* subtle grid */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 83, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 83, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
}

/* angular slash lines */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 45%, rgba(0,200,83,0.07) 46%, rgba(0,200,83,0.07) 47%, transparent 48%),
    linear-gradient(145deg, transparent 55%, rgba(0,140,50,0.05) 56%, rgba(0,140,50,0.05) 57%, transparent 58%),
    linear-gradient(145deg, transparent 62%, rgba(0,200,83,0.04) 63%, rgba(0,200,83,0.04) 63.5%, transparent 64.5%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* ── Hero logo image ── */
.hero-logo {
  margin-bottom: 20px;
  user-select: none;
}

.hero-logo img {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 24px rgba(0, 200, 83, 0.55))
    drop-shadow(0 0 55px rgba(0, 150, 61, 0.30));
}

/* H1 */
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 16px;
  line-height: 1.0;
}

.hero h1 .accent {
  color: var(--primary);
  text-shadow:
    0 0 18px rgba(0, 200, 83, 0.65),
    0 0 45px rgba(0, 200, 83, 0.30);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 34px;
  max-width: 380px;
  line-height: 1.75;
}

/* ── Hero Rating ── */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.rating-stars {
  display: flex;
  gap: 1px;
}

.star {
  font-size: 19px;
  color: #FFD700;
  line-height: 1;
}

.star.partial {
  background: linear-gradient(90deg, #FFD700 70%, rgba(255,255,255,0.25) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-score {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.5px;
}

.rating-count {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Button wave animations ── */
@keyframes btn-shine {
  0%        { transform: skewX(-22deg) translateX(-320%); }
  72%, 100% { transform: skewX(-22deg) translateX(460%); }
}

@keyframes btn-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 28px rgba(0, 200, 83, 0.50),
      0 4px 18px rgba(0, 0, 0, 0.55);
  }
  50% {
    box-shadow:
      0 0 58px rgba(0, 200, 83, 0.85),
      0 6px 24px rgba(0, 0, 0, 0.60);
  }
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg,
    #2AE06A 0%,
    #00C853 45%,
    #00963D 100%
  );
  color: #000;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 16px 34px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.20);
  transition: filter 0.2s, transform 0.15s;
  animation: btn-glow-pulse 2.5s ease-in-out infinite;
}

/* shimmer sweep */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 0;
  width: 38%;
  height: 120%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.60) 50%,
    transparent 100%
  );
  mix-blend-mode: overlay;
  transform: skewX(-22deg) translateX(-320%);
  animation: btn-shine 3s ease-in-out infinite;
  pointer-events: none;
}

.btn-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  animation-play-state: paused;
}

.btn-icon {
  font-size: 18px;
  line-height: 1;
}

/* ── Hero Visual — alternative links ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-links {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.links-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
  opacity: 0.85;
}

.links-label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--primary);
}

.alt-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s, transform 0.18s;
}

.alt-link:hover {
  border-color: var(--primary);
  background: rgba(0, 200, 83, 0.07);
  box-shadow:
    0 0 24px rgba(0, 200, 83, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.35);
  transform: translateX(4px);
}

.alt-link-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1;
  min-width: 28px;
  opacity: 0.85;
}

.alt-link-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.alt-link-body strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.alt-link-body small {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.alt-link-arrow {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.18s, transform 0.18s;
}

.alt-link:hover .alt-link-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ── APK SECTION ── */
.apk-section {
  padding: 80px 32px;
  position: relative;
  background: var(--bg);
}

.apk-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--primary) 40%,
    var(--primary2) 60%,
    transparent 100%
  );
  opacity: 0.40;
}

.apk-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

/* subtle corner glow */
.apk-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,200,83,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.apk-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background: rgba(0, 200, 83, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.apk-icon svg {
  width: 52px;
  height: 52px;
}

.apk-content { display: flex; flex-direction: column; }

.apk-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.80;
  margin-bottom: 24px;
  max-width: 520px;
}

.apk-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  margin-bottom: 28px;
}

.apk-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.apk-features li svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ── ABOUT + FEATURES ─────────────────────────────────── */

.about {
  padding: 80px 32px 70px;
  background: var(--card-bg);
  position: relative;
}

/* top glow border */
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--primary) 35%,
    var(--primary2) 65%,
    transparent 100%
  );
  opacity: 0.50;
}

.container {
  max-width: 880px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  text-align: center;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.section-title .accent { color: var(--primary); }

.title-bar {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary2), var(--primary));
  border-radius: 2px;
  margin: 0 auto 28px;
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.55);
}

.about-body {
  color: var(--text-muted);
  font-size: 15px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.85;
}

/* Feature cards grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: rgba(9, 30, 32, 0.55);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 20px 30px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.22s;
}

.feat-card:hover {
  border-color: rgba(0, 200, 83, 0.55);
  box-shadow:
    0 0 28px rgba(0, 200, 83, 0.14),
    0 8px 28px rgba(0, 0, 0, 0.45);
  transform: translateY(-5px);
}

.feat-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2.5px solid var(--primary);
  background: rgba(0, 200, 83, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow:
    0 0 18px rgba(0, 200, 83, 0.30),
    inset 0 0 16px rgba(0, 200, 83, 0.07);
  transition: box-shadow 0.25s;
}

.feat-card:hover .feat-icon {
  box-shadow:
    0 0 30px rgba(0, 200, 83, 0.50),
    inset 0 0 20px rgba(0, 200, 83, 0.12);
}

.feat-icon svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.feat-card h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.feat-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.75;
}

/* ── FINAL CTA ───────────────────────────────────────── */

.cta {
  padding: 80px 32px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, rgba(0, 200, 83, 0.07) 0%, transparent 65%),
    var(--bg);
}

/* top glow line */
.cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--primary2) 35%,
    var(--primary) 65%,
    transparent 100%
  );
  opacity: 0.45;
}

.cta .section-title { margin-bottom: 10px; }

.cta p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 14px 0 32px;
}

/* Outline Button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--primary);
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 15px 38px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s, border-color 0.2s;
}

.btn-outline:hover {
  background: rgba(0, 200, 83, 0.12);
  border-color: rgba(0, 200, 83, 0.90);
  box-shadow:
    0 0 32px rgba(0, 200, 83, 0.28),
    0 4px 14px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}

.btn-outline svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── FOOTER ──────────────────────────────────────────── */

footer {
  padding: 28px 32px 34px;
  text-align: center;
  border-top: 1px solid var(--border);
}

footer p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  opacity: 0.70;
}

/* ── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 800px) {
  .header-nav { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { order: 1; }
  .hero-visual  { order: 2; }

  .hero-links { max-width: 100%; }
  .alt-link   { text-align: left; }

  .hero-logo { text-align: center; }
  .hero-logo img { max-width: 240px; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-rating { justify-content: center; }
  .btn-primary { justify-content: center; }

  .features-grid { grid-template-columns: 1fr; max-width: 340px; }

  /* APK section stacks on mobile */
  .apk-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }

  .apk-icon { width: 72px; height: 72px; }
  .apk-icon svg { width: 38px; height: 38px; }

  .apk-features { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .header      { padding: 12px 16px; }
  .hero        { padding: 20px 16px 64px; }
  .about       { padding: 60px 16px 56px; }
  .apk-section { padding: 60px 16px; }
  .cta         { padding: 60px 16px; }
}

/* ── FAQ PAGE ─────────────────────────────────────── */

.faq-hero {
  padding: 80px 32px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(0, 200, 83, 0.10) 0%, transparent 65%),
    var(--bg);
}

.faq-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 83, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 83, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
}

.faq-hero-inner {
  position: relative;
  z-index: 1;
}

.faq-hero .section-title { margin-bottom: 10px; }

.faq-hero p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── FAQ LIST ── */
.faq-section {
  padding: 20px 32px 80px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.22s;
}

.faq-item.open {
  border-color: rgba(0, 200, 83, 0.45);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--primary); }

.faq-item.open .faq-question { color: var(--primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.22s, background 0.22s;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: color 0.22s, transform 0.25s;
}

.faq-item.open .faq-icon {
  border-color: var(--primary);
  background: rgba(0, 200, 83, 0.10);
}

.faq-item.open .faq-icon svg {
  color: var(--primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 16px 24px 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.80;
  border-top: 1px solid var(--border);
}

@media (max-width: 500px) {
  .faq-hero     { padding: 60px 16px 40px; }
  .faq-section  { padding: 10px 16px 60px; }
  .faq-question { padding: 16px 18px; font-size: 14px; }
  .faq-answer-inner { padding: 14px 18px 18px; }
}
