:root {
  --gold: #F5C518;
  --gold2: #E8B000;
  --bg: #06060e;
  --bg2: #0c0c1a;
  --bg3: #121228;
  --text: #e4e4ef;
  --dim: #8b8ba8;
  --card: rgba(255,255,255,.04);
  --border: rgba(255,255,255,.06);
  --green: #00d474;
  --red: #ff3860;
}

[hidden] { display: none !important; }
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { background: var(--bg); }
body {
  font-family: Inter, "Segoe UI", Roboto, Arial, "Noto Sans Devanagari", "Noto Sans SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { max-width: 480px; margin: 0 auto; padding: 0 16px; }

.announce {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(245,197,24,.96);
  color: #050505;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 12px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(6,6,14,.9);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.announce:not([hidden]) + .nav { top: 30px; }
.nav-logo { display: flex; align-items: center; gap: 8px; min-width: 0; }
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; }
.nav-logo span { font-weight: 900; font-size: 16px; color: #fff; letter-spacing: 0; white-space: nowrap; }
.nav-logo span b { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 8px; min-width: 0; }
.lang-sw { display: flex; gap: 3px; background: rgba(255,255,255,.05); border-radius: 8px; padding: 2px; }
.lang-sw button {
  background: transparent;
  border: none;
  color: var(--dim);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  cursor: pointer;
  font-weight: 700;
  transition: all .2s;
  min-width: 34px;
}
.lang-sw button.on { background: var(--gold); color: #000; }
.nav-dl {
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.hero { position: relative; padding: 0; overflow: hidden; background: var(--bg); }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(6,6,14,.4) 40%, var(--bg) 100%),
    linear-gradient(135deg, rgba(245,197,24,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(100,50,200,.15) 0%, transparent 60%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; padding: 36px 20px 30px; text-align: center; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,212,116,.1);
  border: 1px solid rgba(0,212,116,.25);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
}
.hero-chip .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero h1 { font-size: 28px; font-weight: 950; color: #fff; line-height: 1.2; margin-bottom: 10px; letter-spacing: 0; }
.hero h1 .gold { color: var(--gold); }
.hero-sub { font-size: 14px; color: var(--dim); margin-bottom: 20px; line-height: 1.6; }
.hero-cta { display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; }
.btn-dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-weight: 900;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(245,197,24,.3);
  transition: all .15s;
  letter-spacing: 0;
  min-height: 50px;
}
.btn-dl:active { transform: scale(.96); }
.btn-dl:disabled { opacity: .62; cursor: wait; }
.btn-dl svg, .float-cta button svg { width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }
.backup-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.mini-btn {
  border: 1px solid rgba(245,197,24,.22);
  background: rgba(245,197,24,.08);
  color: var(--gold);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.hero-info { display: flex; justify-content: center; gap: 20px; margin-top: 18px; }
.hero-info-item { text-align: center; min-width: 58px; }
.hero-info-item .val { font-size: 18px; font-weight: 900; color: #fff; }
.hero-info-item .lbl { font-size: 10px; color: var(--dim); margin-top: 1px; text-transform: uppercase; letter-spacing: .5px; }

.cat-section { padding: 28px 0 8px; }
.cat-header { display: flex; justify-content: space-between; align-items: center; padding: 0 16px; margin-bottom: 14px; gap: 12px; }
.cat-header h2 { font-size: 17px; font-weight: 900; color: #fff; display: flex; align-items: center; gap: 8px; }
.head-icon { display: inline-flex; align-items: center; justify-content: center; min-width: 24px; font-size: 20px; line-height: 1; }
.cat-header .see-all { font-size: 12px; color: var(--gold); font-weight: 800; white-space: nowrap; }
.section-desc { padding: 0 16px 12px; color: var(--dim); font-size: 12px; line-height: 1.5; }
.cat-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 16px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-scroll::-webkit-scrollbar { display: none; }
.content-card { flex-shrink: 0; width: 140px; scroll-snap-align: start; cursor: pointer; transition: transform .2s; }
.content-card:active, .wide-card:active { transform: scale(.95); }
.content-card .thumb { width: 140px; height: 200px; border-radius: 12px; overflow: hidden; position: relative; background: var(--bg3); }
.content-card .thumb img, .wide-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.content-card .thumb .badge, .content-card .thumb .badge2 {
  position: absolute;
  top: 8px;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}
.content-card .thumb .badge { left: 8px; background: var(--red); }
.content-card .thumb .badge2 { right: 8px; background: var(--green); color: #000; }
.content-card .thumb .badge.hd { background: var(--gold); color: #000; }
.content-card .title { font-size: 12px; font-weight: 700; color: #fff; margin-top: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.content-card .meta { font-size: 10px; color: var(--dim); margin-top: 2px; }
.wide-card { flex-shrink: 0; width: 260px; scroll-snap-align: start; cursor: pointer; transition: transform .2s; }
.wide-card .thumb { width: 260px; height: 146px; border-radius: 14px; overflow: hidden; position: relative; background: var(--bg3); }
.wide-card .thumb .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}
.wide-card .thumb .overlay .tag { font-size: 9px; font-weight: 900; color: var(--red); text-transform: uppercase; margin-bottom: 4px; display: flex; align-items: center; gap: 4px; }
.wide-card .thumb .overlay .tag .livedot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: blink 1s infinite; }
.wide-card .thumb .overlay h3 { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.3; }
.wide-card .thumb .overlay p { font-size: 10px; color: rgba(255,255,255,.66); margin-top: 2px; }

.highlights { padding: 28px 16px; }
.hl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hl-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px 14px; text-align: center; transition: all .2s; }
.hl-card .icon { font-size: 28px; margin-bottom: 8px; }
.hl-card h3 { font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.hl-card p { font-size: 11px; color: var(--dim); line-height: 1.4; }

.compare { padding: 28px 16px; }
.compare h2, .faq-section h2 { font-size: 17px; font-weight: 900; color: #fff; margin-bottom: 14px; text-align: center; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.compare-table th { background: var(--bg3); padding: 10px; text-align: left; font-weight: 800; color: var(--dim); font-size: 11px; text-transform: uppercase; }
.compare-table th:nth-child(2), .compare-table th:nth-child(3), .compare-table td:nth-child(2), .compare-table td:nth-child(3) { text-align: center; }
.compare-table th.nbtv-col { color: var(--gold); }
.compare-table td { padding: 10px; border-bottom: 1px solid var(--border); }
.compare-table td:nth-child(2), .compare-table td:nth-child(3) { font-weight: 700; }
.check { color: var(--green); }
.cross { color: var(--red); }
.compare-table td.other-bad { color: var(--red); }
.compare-table td.other-neutral { color: var(--text); }

.cta-banner { margin: 28px 16px; background: linear-gradient(135deg, var(--bg3), rgba(245,197,24,.08)); border: 1px solid rgba(245,197,24,.15); border-radius: 18px; padding: 28px 20px; text-align: center; }
.cta-banner h2 { font-size: 20px; font-weight: 950; color: #fff; margin-bottom: 6px; }
.cta-banner p { font-size: 13px; color: var(--dim); margin-bottom: 18px; }
.cta-banner .stats { display: flex; justify-content: center; gap: 20px; margin-bottom: 18px; }
.cta-banner .stat { text-align: center; min-width: 70px; }
.cta-banner .stat .v { font-size: 20px; font-weight: 950; color: var(--gold); }
.cta-banner .stat .l { font-size: 10px; color: var(--dim); text-transform: uppercase; }

.install-section { padding: 28px 16px; }
.install-section h2 { font-size: 17px; font-weight: 900; color: #fff; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.step-cards { display: grid; gap: 12px; }
.step-card { display: flex; gap: 14px; align-items: flex-start; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.step-card .snum { width: 32px; height: 32px; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #000; font-weight: 950; font-size: 14px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-card .stxt h3 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.step-card .stxt p { font-size: 12px; color: var(--dim); line-height: 1.5; }

.app-info { padding: 0 16px 20px; }
.app-info table { width: 100%; border-collapse: collapse; font-size: 12px; background: var(--card); border-radius: 12px; overflow: hidden; }
.app-info td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.app-info tr:last-child td { border-bottom: none; }
.app-info td:first-child { color: var(--dim); font-weight: 600; width: 40%; }
.app-info td:last-child { color: #fff; font-weight: 800; }

.faq-section { padding: 28px 16px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 8px; overflow: hidden; background: var(--card); }
.faq-q { font-size: 13px; font-weight: 800; color: #fff; padding: 14px 16px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q::after { content: '+'; font-size: 18px; color: var(--dim); transition: transform .2s, color .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--gold); }
.faq-a { font-size: 12px; color: var(--dim); max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; padding: 0 16px; line-height: 1.6; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 16px 14px; }

.share-section { padding: 28px 16px; }
.share-card { background: linear-gradient(135deg, rgba(251,191,36,.06), rgba(251,146,60,.04)); border: 1px solid rgba(251,191,36,.15); border-radius: 18px; padding: 24px 20px; text-align: center; }
.share-card h2 { font-size: 18px; font-weight: 900; color: #fbbf24; margin-bottom: 6px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.share-card > p { font-size: 13px; color: #94a3b8; margin-bottom: 16px; line-height: 1.5; }
.share-progress { background: rgba(0,0,0,.3); border-radius: 10px; padding: 12px; margin-bottom: 16px; }
.share-progress .sp-label { font-size: 11px; color: #94a3b8; margin-bottom: 6px; }
.sp-bar { height: 8px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; }
.sp-bar-fill { height: 100%; background: linear-gradient(90deg,#fbbf24,#f59e0b); border-radius: 4px; transition: width .5s; width: 0; }
.share-progress .sp-text { font-size: 12px; color: #fbbf24; font-weight: 800; margin-top: 6px; }
.share-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.share-btn { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 11px; border-radius: 10px; border: none; font-size: 13px; font-weight: 800; cursor: pointer; transition: all .15s; }
.share-btn:active { transform: scale(.95); }
.share-btn.wa { background: #25d366; color: #fff; }
.share-btn.fb { background: #1877f2; color: #fff; }
.share-btn.tg { background: #0088cc; color: #fff; }
.share-btn.cp { background: rgba(255,255,255,.08); color: #e2e8f0; border: 1px solid rgba(255,255,255,.1); }
.share-link { background: rgba(0,0,0,.3); border-radius: 8px; padding: 10px; font-size: 11px; color: #64748b; word-break: break-all; margin-top: 10px; }
.share-link span { color: #fbbf24; }

.footer { text-align: center; padding: 24px 16px calc(90px + env(safe-area-inset-bottom,0px)); font-size: 11px; color: rgba(255,255,255,.22); border-top: 1px solid var(--border); }
.footer p { margin-top: 6px; }

.float-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px calc(12px + env(safe-area-inset-bottom,0px));
  background: rgba(6,6,14,.95);
  backdrop-filter: blur(16px);
  z-index: 90;
  border-top: 1px solid rgba(245,197,24,.12);
}
.float-cta button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
  font-weight: 900;
  font-size: 15px;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  letter-spacing: 0;
  min-height: 58px;
}
.float-cta button:disabled { opacity: .62; cursor: wait; }
.float-cta .sub { text-align: center; font-size: 10px; color: var(--dim); margin-top: 4px; }

.wv-overlay, .ig-overlay, .access-block, .maintenance-mask {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6,6,14,.96);
  backdrop-filter: blur(8px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.wv-overlay.show, .ig-overlay.show, .access-block.show, .maintenance-mask.show { display: flex; }
.wv-overlay h2, .ig-overlay h2, .access-block h2, .maintenance-mask h2 { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.wv-overlay p, .ig-overlay p, .access-block p, .maintenance-mask p { font-size: 14px; color: #94a3b8; margin-bottom: 20px; line-height: 1.6; }
.wv-methods { width: 100%; max-width: 340px; }
.wv-method { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 14px; margin-bottom: 10px; cursor: pointer; transition: all .15s; }
.wv-method:active { transform: scale(.97); opacity: .8; }
.wv-method .wm-title { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.wv-method .wm-desc { font-size: 11px; color: #64748b; }
.wv-arrow { position: fixed; top: 12px; right: 28px; z-index: 10000; font-size: 32px; animation: wvBounce 1s infinite; }
@keyframes wvBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.wv-close, .ig-close-inline {
  margin-top: 14px;
  background: none;
  border: 1px solid rgba(255,255,255,.15);
  color: #94a3b8;
  font-size: 12px;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
}
.wv-copied { color: #4ade80; font-size: 12px; font-weight: 800; margin-top: 6px; display: none; }
.ig-overlay { z-index: 200; align-items: stretch; justify-content: flex-start; }
.ig-overlay.show { display: flex; }
.ig-inner { flex: 1; overflow-y: auto; padding: 58px 16px calc(80px + env(safe-area-inset-bottom,0px)); max-width: 420px; margin: 0 auto; width: 100%; }
.ig-overlay h2 { font-size: 18px; display: flex; align-items: center; gap: 8px; justify-content: center; }
.ig-step { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); text-align: left; }
.ig-step:last-child { border-bottom: none; }
.ig-num { width: 28px; height: 28px; background: linear-gradient(135deg,var(--gold),var(--gold2)); color: #000; font-weight: 900; font-size: 12px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ig-step p { font-size: 13px; color: #94a3b8; line-height: 1.5; margin: 0; }
.ig-close { position: absolute; top: 14px; right: 16px; background: rgba(255,255,255,.08); border: none; color: #94a3b8; width: 32px; height: 32px; border-radius: 50%; font-size: 16px; cursor: pointer; z-index: 10; }
.ig-link { text-align: center; margin-top: 12px; }
.ig-link a { color: var(--gold); font-size: 13px; font-weight: 800; text-decoration: underline; }

.contact-btn {
  position: fixed;
  right: 14px;
  bottom: 88px;
  z-index: 95;
  background: rgba(0,212,116,.94);
  color: #00130a;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0,0,0,.36);
}

.install-page { min-height: 100vh; padding-bottom: 40px; }
.install-hero { padding: 28px 16px 14px; text-align: center; }
.install-hero h1 { font-size: 24px; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.install-hero p { color: var(--dim); font-size: 13px; max-width: 430px; margin: 0 auto; }
.install-note { margin: 16px; padding: 14px; border: 1px solid rgba(245,197,24,.18); background: rgba(245,197,24,.06); border-radius: 14px; color: #f8d76a; font-size: 12px; line-height: 1.6; }

@media (min-width: 640px) {
  body { background: radial-gradient(circle at 50% 0%, rgba(245,197,24,.05), transparent 500px), var(--bg); }
  .nav, .float-cta { left: 50%; transform: translateX(-50%); max-width: 520px; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
}

@media (max-width: 390px) {
  .nav { padding-left: 10px; padding-right: 10px; }
  .nav-right { gap: 5px; }
  .lang-sw button { padding: 4px 6px; min-width: 30px; }
  .nav-dl { padding: 6px 8px; font-size: 11px; }
  .hero h1 { font-size: 25px; }
  .btn-dl { width: 100%; padding-left: 18px; padding-right: 18px; }
}
