:root {
  --gold: #01411c;
  --gold2: #006400;
  --bg: #06060e;
  --bg2: #0c0c1a;
  --bg3: #121228;
  --text: #e4e4ef;
  --dim: #6b6b8d;
  --card: rgba(255, 255, 255, .04);
  --border: rgba(255, 255, 255, .06);
  --green: #00d474;
  --red: #f42a41;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  touch-action: manipulation;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(6, 6, 14, .9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-logo span {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.5px;
}

.nav-logo span b {
  color: #f42a41;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-sw {
  display: flex;
  gap: 3px;
  padding: 2px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.lang-sw button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--dim);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
}

.lang-sw button.on {
  background: var(--gold);
  color: #fff;
}

.nav-dl {
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
}

.pk-flags {
  height: 4px;
  background: linear-gradient(90deg, #da251d 0%, #da251d 100%);
  opacity: .9;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 0%, rgba(6, 6, 14, .4) 40%, var(--bg) 100%),
    linear-gradient(135deg, rgba(1, 65, 28, .15) 0%, rgba(0, 100, 0, .06) 50%, transparent 80%),
    radial-gradient(ellipse at 50% 0%, rgba(1, 65, 28, .2) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 36px 20px 30px;
  text-align: center;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 5px 14px;
  border: 1px solid rgba(0, 212, 116, .25);
  border-radius: 20px;
  background: rgba(0, 212, 116, .1);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.hero-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero h1 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
}

.hero h1 .gold {
  color: var(--green);
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 20px;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.6;
}

.hero-install-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  min-height: 56px;
  margin: 0 auto 16px;
  padding: 10px 22px;
  border: 1px solid rgba(0, 212, 116, .28);
  border-radius: 999px;
  background: rgba(0, 160, 70, .14);
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 4px 20px rgba(1, 65, 28, .3);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 32px;
  transition: transform .15s;
}

.btn-dl:active,
.nav-dl:active,
.priv-btn:active,
.share-btn:active {
  transform: scale(.96);
}

.btn-dl svg,
.float-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
}

.hero-info-item {
  min-width: 48px;
  text-align: center;
}

.hero-info-item .val {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-info-item .lbl {
  margin-top: 1px;
  color: var(--dim);
  font-size: 10px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.bd-divider {
  position: relative;
  height: 2px;
  margin: 4px 0;
  background: linear-gradient(90deg, transparent, rgba(1, 65, 28, .3) 20%, rgba(0, 100, 0, .2) 50%, rgba(1, 65, 28, .3) 80%, transparent);
}

.bd-divider::after {
  content: "◆";
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 6px;
  transform: translate(-50%, -50%);
  background: var(--bg);
  color: rgba(1, 65, 28, .45);
  font-size: 8px;
}

.cat-section {
  padding: 28px 0 8px;
}

.cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 16px;
}

.local-header {
  padding: 0;
  margin-bottom: 14px;
}

.cat-header h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.emoji-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.inline-icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  object-fit: contain;
  vertical-align: -.18em;
  margin-right: 4px;
}

.see-all {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  background: rgba(255, 255, 255, .05);
  color: var(--green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  white-space: nowrap;
}

.cat-sub {
  margin: -8px 16px 10px;
  color: var(--dim);
  font-size: 12px;
}

.cat-scroll {
  overflow: hidden;
  padding: 0 0 12px 16px;
  contain: layout paint;
  touch-action: pan-y;
}

.scroll-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.scroll-track > * {
  flex: 0 0 auto;
}

.content-card,
.wide-card {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  contain: layout paint;
  text-align: start;
  transition: transform .2s;
}

.content-card:active,
.wide-card:active {
  transform: scale(.95);
}

.content-card {
  width: 140px;
}

.content-card .thumb {
  position: relative;
  display: block;
  width: 140px;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  background: #101827;
}

.content-card .thumb img,
.wide-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card .thumb.is-contain {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 18%, rgba(0, 231, 118, .16), transparent 30%),
    linear-gradient(145deg, #101827, #060a14 62%, #111827);
}

.content-card .thumb.is-contain::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), transparent 45%, rgba(0, 0, 0, .22));
  pointer-events: none;
}

.content-card .thumb.is-contain img {
  box-sizing: border-box;
  object-fit: contain;
  padding: 20px 16px;
}

.content-card .thumb.is-contain.news-red {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .18), transparent 28%),
    linear-gradient(145deg, #3b0910, #940f1d 52%, #17070a);
}

.content-card .thumb.is-contain.news-blue {
  background:
    radial-gradient(circle at 20% 20%, rgba(73, 170, 255, .26), transparent 30%),
    linear-gradient(145deg, #071225, #0b2a56 55%, #030712);
}

.content-card .thumb.is-contain.news-green {
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 231, 118, .22), transparent 32%),
    linear-gradient(145deg, #061b13, #064b34 58%, #030712);
}

.content-card .thumb.is-contain.finance {
  background:
    radial-gradient(circle at 50% 18%, rgba(34, 197, 94, .20), transparent 32%),
    linear-gradient(145deg, #07130f, #123322 56%, #05070c);
}

.content-card .badge {
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
  padding: 2px 7px;
  text-transform: uppercase;
}

.content-card .badge.hit {
  background: #ff6b35;
}

.content-card .badge.new {
  background: #8b5cf6;
}

.content-card .badge.hd {
  background: var(--gold);
}

.content-card .badge.live {
  background: var(--red);
}

.content-card .badge.btc {
  background: #f59e0b;
  color: #000;
}

.content-card .badge2 {
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius: 4px;
  background: var(--green);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
  padding: 2px 7px;
  text-transform: uppercase;
}

.content-card .title {
  display: block;
  overflow: hidden;
  margin-top: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-card .meta {
  display: block;
  overflow: hidden;
  margin-top: 2px;
  color: var(--dim);
  font-size: 10px;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wide-card {
  width: 260px;
}

.wide-card .thumb {
  position: relative;
  display: block;
  width: 260px;
  height: 146px;
  overflow: hidden;
  border-radius: 14px;
  background: #101827;
}

.wide-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .7) 0%, transparent 60%);
}

.wide-card .tag {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.wide-card .livedot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1s infinite;
}

.wide-card h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: start;
}

.wide-card p {
  margin-top: 2px;
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
  text-align: start;
}

.install-video-section {
  padding: 22px 16px;
}

.install-video-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.install-video-title {
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.install-video-sub {
  margin-bottom: 12px;
  color: #94a3b8;
  font-size: 13px;
  text-align: center;
}

.install-video-box {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(0, 255, 120, .18);
  border-radius: 16px;
  background: #000;
}

.install-video-box video {
  width: 100%;
  max-height: 72vh;
  background: #000;
}

.install-video-tip {
  margin-top: 10px;
  color: #7ddc6f;
  font-size: 12px;
  text-align: center;
}

.priv-section {
  position: relative;
  padding: 28px 16px;
}

.priv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(167, 139, 250, .04) 30%, rgba(167, 139, 250, .04) 70%, transparent);
  pointer-events: none;
}

.priv-card {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  padding: 24px 20px;
  border: 1px solid rgba(167, 139, 250, .15);
  border-radius: 18px;
  background: rgba(167, 139, 250, .06);
  text-align: center;
}

.priv-card .lock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-bottom: 10px;
}

.priv-card .lock-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.priv-card h3 {
  margin-bottom: 6px;
  color: #c4b5fd;
  font-size: 17px;
  font-weight: 900;
}

.priv-card p {
  margin-bottom: 16px;
  color: #8b8bb0;
  font-size: 12px;
  line-height: 1.5;
}

.priv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  box-shadow: 0 4px 16px rgba(124, 58, 237, .3);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 28px;
}

.highlights,
.compare,
.install-section,
.faq-section,
.share-section {
  max-width: 420px;
  margin: 0 auto;
  padding: 28px 16px;
}

.hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hl-card {
  padding: 18px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  text-align: center;
}

.hl-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  margin-bottom: 8px;
}

.hl-card .icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.hl-card h3 {
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.hl-card p {
  color: var(--dim);
  font-size: 11px;
  line-height: 1.4;
}

.compare h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.compare-table th {
  padding: 10px;
  background: var(--bg3);
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
  text-align: start;
  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.mblive-col {
  color: #f5c518;
}

.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: 800;
}

.check {
  color: var(--green);
}

.cross {
  color: var(--red);
}

.cta-banner {
  max-width: 388px;
  margin: 28px auto;
  padding: 28px 20px;
  border: 1px solid rgba(1, 65, 28, .15);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bg3), rgba(1, 65, 28, .08));
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.cta-banner p {
  margin-bottom: 18px;
  color: var(--dim);
  font-size: 13px;
}

.cta-banner .stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
}

.cta-banner .stat .v {
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
}

.cta-banner .stat .l {
  color: var(--dim);
  font-size: 10px;
  text-transform: uppercase;
}

.install-section h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.step-cards {
  display: grid;
  gap: 12px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  color: inherit;
  cursor: pointer;
  text-align: start;
}

.step-card .snum {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.step-card .stxt {
  display: grid;
  gap: 3px;
}

.step-card strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.step-card small {
  color: var(--dim);
  font-size: 12px;
  line-height: 1.5;
}

.app-info {
  max-width: 420px;
  margin: 0 auto;
  padding: 0 16px 20px;
}

.app-info table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border-radius: 12px;
  background: var(--card);
  font-size: 12px;
}

.app-info td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  text-align: start;
}

.app-info tr:last-child td {
  border-bottom: 0;
}

.app-info td:first-child {
  width: 40%;
  color: var(--dim);
  font-weight: 600;
}

.app-info td:last-child {
  color: #fff;
  font-weight: 800;
}

.share-card {
  padding: 24px 20px;
  border: 1px solid rgba(251, 191, 36, .15);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(251, 191, 36, .06), rgba(251, 146, 60, .04));
  text-align: center;
}

.share-card h2 {
  margin-bottom: 6px;
  color: #fbbf24;
  font-size: 18px;
  font-weight: 900;
}

.share-card > p {
  margin-bottom: 16px;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.5;
}

.share-progress {
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .3);
}

.share-progress .sp-label {
  margin-bottom: 6px;
  color: #94a3b8;
  font-size: 11px;
}

.sp-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
}

.sp-bar-fill {
  width: 0;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  transition: width .5s;
}

.share-progress .sp-text {
  margin-top: 6px;
  color: #fbbf24;
  font-size: 12px;
  font-weight: 800;
}

.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;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  padding: 11px;
  transition: transform .15s;
}

.share-btn .btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}

.share-btn.wa {
  background: #25d366;
}

.share-btn.fb {
  background: #1877f2;
}

.share-btn.tg {
  background: #0088cc;
}

.share-btn.cp {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .08);
  color: #e2e8f0;
}

.share-link {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .3);
  color: #64748b;
  font-size: 11px;
  word-break: break-all;
}

.share-link span {
  color: #fbbf24;
}

.faq-section h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
}

.faq-q {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  padding: 14px 42px 14px 16px;
  text-align: start;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 16px;
  color: var(--dim);
  font-size: 18px;
  transition: transform .2s, color .2s;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
  color: var(--green);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.6;
  padding: 0 16px;
  transition: max-height .3s, padding .3s;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 16px 14px;
}

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

.footer-line {
  max-width: 420px;
  margin: 0 auto 12px;
  border-radius: 2px;
}

.float-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  padding: 10px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(1, 65, 28, .12);
  background: rgba(6, 6, 14, .95);
  backdrop-filter: blur(16px);
}

.float-cta button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  padding: 14px;
}

.float-cta .sub {
  margin-top: 4px;
  color: var(--dim);
  font-size: 10px;
  text-align: center;
}

.wv-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(8px);
  text-align: center;
}

.wv-overlay.show {
  display: flex;
}

.wv-arrow {
  position: fixed;
  top: 10px;
  right: 18px;
  color: #fff;
  font-size: 34px;
}

.wv-overlay h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.wv-overlay p {
  max-width: 340px;
  margin-bottom: 20px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

.wv-methods {
  width: 100%;
  max-width: 340px;
}

.wv-method {
  display: grid;
  width: 100%;
  margin-bottom: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  text-align: start;
}

.wm-title {
  margin-bottom: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.wm-desc {
  color: #64748b;
  font-size: 12px;
}

.wv-copied {
  display: none;
  margin-top: 4px;
  color: var(--green);
  font-size: 12px;
}

.wv-copied.show {
  display: block;
}

.wv-close {
  margin-top: 14px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: none;
  color: #64748b;
  cursor: pointer;
  font-size: 12px;
}

.ig-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  background: rgba(6, 6, 14, .96);
  backdrop-filter: blur(8px);
}

.ig-overlay.show {
  display: flex;
  flex-direction: column;
}

.ig-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #94a3b8;
  cursor: pointer;
  font-size: 18px;
}

.ig-inner {
  width: 100%;
  max-width: 420px;
  flex: 1;
  margin: 0 auto;
  overflow-y: auto;
  padding: 20px 16px calc(80px + env(safe-area-inset-bottom, 0px));
}

.ig-overlay h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.ig-sub {
  margin-bottom: 16px;
  color: #94a3b8;
  font-size: 13px;
}

.ig-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.ig-step:last-child {
  border-bottom: 0;
}

.ig-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.ig-step p {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.5;
}

.ig-step strong {
  color: #fff;
}

.ig-link {
  margin-top: 16px;
  text-align: center;
}

.ig-link button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  min-width: 220px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 12px 28px rgba(0, 114, 25, .35);
  color: var(--green);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  padding: 13px 18px;
}

.ig-link button:active {
  transform: translateY(1px);
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero-info {
    gap: 12px;
  }

  .nav-logo span {
    font-size: 15px;
  }

  .nav-right {
    gap: 6px;
  }
}

@media (min-width: 768px) {
  .hero-inner {
    padding-top: 48px;
  }
}
