:root {
  --oxford: #0b0f0c;
  --oxford-2: #121814;
  --oxford-3: #1a231c;
  --bg: var(--oxford);
  --card: rgba(18, 24, 20, 0.88);
  --line: rgba(200, 245, 66, 0.12);
  --text: #f3f7ec;
  --muted: #8d9884;
  --lime: #c8f542;
  --lime-2: #b6e030;
  --ok: #c8f542;
  --warn: #fbbf24;
  --danger: #fb7185;
  --ig: var(--lime);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--oxford);
  color: var(--text);
  letter-spacing: -0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 480px at 8% -8%, rgba(200, 245, 66, 0.16), transparent 55%),
    radial-gradient(640px 420px at 100% 0%, rgba(200, 245, 66, 0.08), transparent 50%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
img { max-width: 100%; }

.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.brand-icon {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-icon svg { width: 100%; height: 100%; display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; filter: none; }
.btn-ig, .btn-lime {
  background: var(--lime);
  color: var(--oxford);
}
.btn-solid { background: #fff; color: var(--oxford); }
.btn-ghost {
  background: rgba(200, 245, 66, 0.06);
  border: 1px solid var(--line);
}
.btn-ok { background: var(--lime); color: var(--oxford); }
.btn-danger { background: rgba(251, 113, 133, 0.15); color: var(--danger); }
.btn-sm { padding: 8px 12px; font-size: 13px; }

.topbar {
  background: transparent;
}
.social-bar {
  display: flex;
  justify-content: center;
  padding: 12px 0 10px;
}
.nav-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.nav-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 0 16px;
  white-space: nowrap;
  line-height: 1;
}
.nav-social a + a {
  border-left: 1px solid rgba(243, 247, 236, 0.38);
}
.nav-social a:hover {
  color: var(--lime);
}
.lime-icon { color: var(--lime); }
.nav-glow {
  height: 1px;
  margin: 0 0 12px;
  background: var(--lime);
  box-shadow:
    0 0 10px 1px rgba(200, 245, 66, 0.7),
    0 0 24px 4px rgba(200, 245, 66, 0.28);
}
.island-wrap {
  position: sticky;
  top: 12px;
  z-index: 50;
}
.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 16px;
  border-radius: 999px;
  background: rgba(11, 15, 12, 0.9);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(200, 245, 66, 0.18);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.3);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 20px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--lime);
  color: var(--oxford);
  display: grid;
  place-items: center;
  font-size: 15px;
}
.nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.nav-pill .btn-ghost {
  border: 1px solid var(--lime);
  background: transparent;
  color: #fff;
  padding: 10px 20px;
}

.hero { padding: 42px 0 28px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 245, 66, 0.1);
  border: 1px solid rgba(200, 245, 66, 0.28);
  color: var(--lime);
  font-size: 13px;
  font-weight: 600;
}
h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin: 16px 0 14px;
  max-width: 16ch;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 46ch;
  line-height: 1.5;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.ig-card {
  position: relative;
  display: block;
  border-radius: 28px;
  padding: 1px;
  background: var(--lime);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.ig-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  color: inherit;
}
.ig-card-inner {
  border-radius: 27px;
  background: var(--oxford-2);
  padding: 22px;
}
.ig-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--oxford);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.ig-meta { font-size: 13px; color: var(--muted); }
.ig-photo {
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(200, 245, 66, 0.25), transparent 42%),
    linear-gradient(20deg, #1a231c, #0b0f0c);
  display: grid;
  place-items: center;
}
.ig-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 16px;
}
.social-row a {
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid var(--line);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-preview {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  margin: 8px 0 14px;
}
.hero-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ig-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  padding: 4px 5px 4px 4px;
  border-radius: 999px;
  background: #0b0f0c;
  border: 1px solid var(--lime);
  box-shadow: 0 0 14px rgba(200, 245, 66, 0.22);
}
.ig-act-group {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
}
.ig-act {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 8px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  min-width: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}
.ig-act:hover,
.ig-act:focus-visible {
  background: rgba(200, 245, 66, 0.1);
  outline: none;
}
.ig-act .lime-icon {
  flex-shrink: 0;
  color: var(--lime);
}
.ig-act + .ig-act {
  border-left: 1px solid rgba(200, 245, 66, 0.45);
  border-radius: 0;
}
.ig-act + .ig-act:hover,
.ig-act + .ig-act:focus-visible {
  border-radius: 999px;
}
.ig-pts {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  text-shadow: none;
  -webkit-text-stroke: 0;
  background: transparent;
}
.pts {
  color: var(--lime);
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 36px 0 8px;
}
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.stat b { display: block; font-size: 26px; letter-spacing: -0.04em; }
.stat span { color: var(--muted); font-size: 13px; }

.section { padding: 28px 0 10px; }
.section h2 {
  font-size: 28px;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
}
.muted { color: var(--muted); }

.networks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.net {
  border: 1px solid var(--line);
  background: var(--oxford-2);
  border-radius: 16px;
  padding: 14px 12px;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.net.featured {
  grid-column: span 2;
  background: linear-gradient(180deg, rgba(200, 245, 66, 0.12), var(--oxford-2));
  border-color: rgba(200, 245, 66, 0.45);
}
.net strong { display: block; }
.net .net-desc { color: var(--muted); font-size: 12px; }

.picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.picker-card {
  background: var(--oxford-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 14px 18px;
  text-align: center;
  cursor: pointer;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 132px;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.picker-card:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 245, 66, 0.08);
}
.picker-card strong { font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.num {
  width: 28px; height: 28px; border-radius: 9px;
  background: var(--lime); color: var(--oxford);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800; margin-bottom: 10px;
}

.footer {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px; padding: 40px 0 28px;
  border-top: 1px solid var(--line); margin-top: 40px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.footer-links a { color: var(--muted); }
.footer-copy { width: 100%; margin: 0; color: var(--muted); }

.signup-page { min-height: calc(100vh - 20px); }
.activate-card {
  max-width: 720px;
  margin: 28px auto 48px;
  padding: 32px 28px;
  border: 1px solid var(--lime);
  border-radius: 18px;
  background: rgba(11, 15, 12, 0.72);
  box-shadow: 0 0 18px rgba(200, 245, 66, 0.12);
}
.activate-card h1 {
  font-size: clamp(32px, 5vw, 48px);
  max-width: none;
  margin: 0 0 14px;
  letter-spacing: -0.04em;
  text-transform: none;
}
.activate-card h1 span { color: var(--lime); }
.activate-card p { color: var(--text); line-height: 1.5; }
.activate-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 10px;
}
.activate-row label { font-weight: 700; }
.activate-row input {
  width: 160px;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.activate-btn { width: 100%; margin-top: 8px; border-color: var(--lime); }
.or-split {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 14px;
  color: var(--muted);
  font-weight: 700;
}
.or-split::before,
.or-split::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.change-email { margin: 12px 0 18px; text-align: left; }
.signup-card {
  width: min(420px, calc(100% - 32px));
  margin: 72px auto 0;
  background: var(--oxford-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 28px 28px;
  text-align: center;
}
.signup-card h1,
.landing-signup h1 {
  font-size: 22px;
  text-align: center;
  margin: 0 0 20px;
  max-width: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.landing-signup {
  margin: 26px 0 0;
  width: 100%;
  max-width: 400px;
}
.signup-more {
  margin-top: 8px;
  animation: drop 0.22s ease;
  text-align: left;
}
@keyframes drop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.field-err { color: var(--danger); font-size: 13px; min-height: 16px; margin: 0 0 8px; }
.input-bad { border-color: var(--danger) !important; }
.pass-wrap { position: relative; }
.pass-wrap input { padding-right: 44px; }
.eye {
  position: absolute;
  right: 8px;
  top: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 16px;
}
.captcha-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  background: var(--oxford);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  margin: 8px 0 12px;
}
.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
}
.captcha-row input { width: auto; }
.captcha-brand {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--lime);
}
.signup-more[hidden],
.captcha-q[hidden] { display: none !important; }
.captcha-q:not([hidden]) {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
}
.captcha-q label { margin: 0; color: var(--text); }
.one-account { font-size: 13px; color: var(--muted); margin: 4px 0 8px; }
.terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 8px;
}
.terms input { width: auto; margin-top: 2px; }
.terms a { color: var(--lime); }
.signup-card input {
  text-align: left;
  margin-bottom: 8px;
  border-radius: 8px;
}
.signup-card input::placeholder { color: #7d8878; }
.signup-continue {
  width: 100%;
  margin-top: 10px;
  border-radius: 10px !important;
  padding: 14px 18px !important;
  font-size: 16px;
}
.signup-back {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}
.auth-box h1 { font-size: 32px; max-width: none; }
label { display: block; font-size: 13px; color: var(--muted); margin: 12px 0 6px; }
input, select, textarea {
  width: 100%;
  background: var(--oxford);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--lime); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-error { color: var(--danger); font-size: 13px; min-height: 18px; margin: 8px 0; }
.hint { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.hint a { color: var(--lime); font-weight: 600; }

.app-layout {
  min-height: 100vh;
  background: var(--oxford);
}
.app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 9, 0.98);
}
.app-brand { font-size: 24px; letter-spacing: -0.04em; }
.app-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: auto;
}
.app-username {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.app-pts-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(200, 245, 66, 0.5);
  background: rgba(200, 245, 66, 0.12);
  color: var(--lime);
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 0 18px rgba(200, 245, 66, 0.12);
}
.app-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 9, 0.98);
  overflow-x: auto;
}
.nav-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-width: 108px;
  padding: 14px 10px 12px;
  border-radius: 0;
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  flex: 0 0 auto;
  border-bottom: 2px solid transparent;
  opacity: 0.82;
  transition: opacity 0.15s, border-color 0.15s, background 0.15s;
}
.nav-tile:hover { opacity: 1; background: rgba(200, 245, 66, 0.05); }
.nav-tile.active {
  opacity: 1;
  background: rgba(200, 245, 66, 0.07);
  border-bottom-color: var(--lime);
  box-shadow: none;
}
.nav-tile-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}
.nav-tile-icon svg { width: 26px; height: 26px; }
.app-main {
  padding: 22px 24px 48px;
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
}

.dash-home { display: flex; flex-direction: column; gap: 16px; }
.dash-surge {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(200, 245, 66, 0.42);
  background:
    radial-gradient(ellipse 55% 120% at 88% 50%, rgba(200, 245, 66, 0.14), transparent 60%),
    linear-gradient(135deg, rgba(200, 245, 66, 0.1), rgba(11, 15, 12, 0.98) 52%);
  box-shadow: 0 0 32px rgba(200, 245, 66, 0.07), inset 0 1px 0 rgba(200, 245, 66, 0.08);
}
.dash-surge-bolts {
  position: absolute;
  right: 22%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  gap: 8px;
}
.dash-surge-bolts span {
  font-size: 72px;
  line-height: 1;
  color: var(--lime);
  opacity: 0.07;
}
.dash-surge-bolts span:last-child { font-size: 96px; opacity: 0.05; margin-top: -12px; }
.dash-surge-copy { position: relative; z-index: 1; }
.dash-surge-copy strong {
  display: block;
  font-size: 26px;
  color: #fff;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.dash-surge-copy strong span { color: var(--lime); }
.dash-surge-timer-wrap {
  position: relative;
  z-index: 1;
  text-align: right;
  min-width: 200px;
}
.dash-surge-timer-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(200, 245, 66, 0.28);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.dash-surge-timer-icon { font-size: 18px; color: var(--lime); }
.dash-surge-timer-box b {
  font-size: 20px;
  color: var(--lime);
  letter-spacing: -0.02em;
  font-weight: 800;
}
.dash-grid-top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 16px;
  align-items: stretch;
}
.dash-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.dash-card {
  background: linear-gradient(180deg, rgba(22, 28, 24, 0.96), rgba(14, 18, 15, 0.98));
  border: 1px solid rgba(200, 245, 66, 0.14);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  min-height: 220px;
}
.dash-card h3 {
  margin: 0 0 14px;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.dash-card h3 span { color: var(--lime); }
.dash-big-wrap {
  display: grid;
  place-items: center;
  min-height: 88px;
  margin-bottom: 16px;
}
.dash-big {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #fff;
}
.dash-points {
  border-color: rgba(200, 245, 66, 0.38);
  box-shadow: 0 0 28px rgba(200, 245, 66, 0.1), 0 12px 40px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
}
.dash-points h3 { color: var(--lime); }
.dash-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  margin-top: 8px;
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
}
.dash-action:first-of-type { margin-top: 0; }
.dash-action:hover { transform: translateY(-1px); }
.dash-action-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
}
.dash-action-icon svg { width: 18px; height: 18px; }
.dash-action-buy {
  background: var(--lime);
  color: var(--oxford);
  box-shadow: 0 8px 24px rgba(200, 245, 66, 0.28);
}
.dash-action-buy:hover { background: var(--lime-2); }
.dash-action-earn {
  background: transparent;
  color: var(--lime);
  border: 1.5px solid rgba(200, 245, 66, 0.55);
}
.dash-action-earn:hover { background: rgba(200, 245, 66, 0.08); }
.dash-hits { display: flex; flex-direction: column; }
.dash-bonus-block {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(200, 245, 66, 0.1);
}
.dash-bonus-label {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dash-hits-goal {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}
.dash-hits-goal b { color: var(--lime); font-weight: 800; }
.dash-hits-meta {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
}
.dash-progress {
  height: 6px;
  margin: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
}
.dash-progress > div {
  background: linear-gradient(90deg, var(--lime-2), var(--lime));
  border-radius: 99px;
  box-shadow: 0 0 12px rgba(200, 245, 66, 0.45);
}
.dash-ref { min-height: 300px; }
.ref-note-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px dashed rgba(200, 245, 66, 0.35);
  border-radius: 16px;
  margin-bottom: 12px;
  background: rgba(200, 245, 66, 0.03);
}
.ref-note-icon { flex: 0 0 auto; opacity: 0.95; }
.ref-note-box p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
  font-size: 14px;
}
.ref-note-box b { color: var(--lime); font-weight: 800; }
.ref-help-gold { color: #e8c547 !important; }
.ref-copy-fancy {
  border: 1px solid rgba(200, 245, 66, 0.22);
  border-radius: 14px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.35);
}
.ref-copy-fancy input {
  border: 0;
  background: transparent;
  margin: 0;
  font-size: 13px;
}
.ref-copy-btn {
  border-radius: 10px !important;
  border-color: rgba(200, 245, 66, 0.45) !important;
  font-weight: 800;
  white-space: nowrap;
}
.share-grid-rich {
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.share-brand {
  display: grid;
  place-items: center;
  height: 44px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.12s, filter 0.12s;
}
.share-brand:hover { transform: translateY(-2px); filter: brightness(1.08); }
.share-brand.wa { background: #25d366; }
.share-brand.x { background: #111; }
.share-brand.fb { background: #1877f2; }
.share-brand.in { background: #0a66c2; }
.share-brand.tg { background: #229ed9; }
.share-brand.rd { background: #ff4500; }
.share-brand.mail { background: #c8f542; color: var(--oxford); }
.dash-community { display: flex; flex-direction: column; gap: 10px; min-height: 300px; }
.comm-live {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.comm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.9);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.75; }
}
.comm-live b {
  font-size: 48px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.05em;
  line-height: 1;
}
.comm-live-label { color: var(--muted); font-size: 14px; }
.comm-regions-label {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.comm-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.comm-regions span {
  padding: 4px 9px;
  border-radius: 8px;
  border: 1px solid rgba(200, 245, 66, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #d5dcc8;
  font-size: 11px;
  font-weight: 800;
}
.comm-more {
  border: 0 !important;
  background: transparent !important;
  color: var(--muted) !important;
  font-weight: 600 !important;
  padding-left: 2px !important;
}
.comm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}
.comm-stat {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(200, 245, 66, 0.14);
  background: rgba(200, 245, 66, 0.04);
}
.comm-stat b {
  display: block;
  font-size: 24px;
  color: var(--lime);
  margin-bottom: 6px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.comm-stat small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.app-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.side {
  border-right: 1px solid var(--line);
  padding: 18px 14px;
  background: rgba(11, 15, 12, 0.92);
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.side nav { display: flex; flex-direction: column; gap: 4px; margin-top: 22px; }
.side a, .side button.link {
  background: transparent;
  border: 0;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  cursor: pointer;
}
.side a.active, .side a:hover { background: rgba(200, 245, 66, 0.1); color: var(--lime); }
.side a.ig-link.active {
  background: rgba(200, 245, 66, 0.14);
  color: var(--lime);
}
.points-box {
  margin-top: auto;
  background: var(--oxford-3);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
}
.points-box b { font-size: 22px; color: var(--lime); }
.main { padding: 22px 26px 80px; }
.top-user { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }

.grid-4, .grid-3 { display: grid; gap: 12px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.card h3 { margin: 0 0 6px; font-size: 15px; color: var(--muted); font-weight: 500; }
.big { font-size: 30px; font-weight: 800; letter-spacing: -0.04em; }

.shop-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shop-card .price { color: var(--lime); font-weight: 700; }

.shop-surge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(200, 245, 66, 0.35);
  background: linear-gradient(135deg, rgba(200, 245, 66, 0.14), rgba(11, 15, 12, 0.92) 55%);
  box-shadow: 0 0 24px rgba(200, 245, 66, 0.1);
}
.shop-surge-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oxford);
  background: var(--lime);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.shop-surge-copy strong {
  display: block;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.03em;
}
.shop-surge-copy p { margin: 4px 0 0; color: #d7e2c8; }
.shop-surge-copy b { color: var(--lime); }
.shop-surge-timer {
  text-align: right;
  min-width: 180px;
}
.shop-surge-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.shop-surge-timer b {
  font-size: 22px;
  color: var(--lime);
  letter-spacing: -0.02em;
}

.shop-hero {
  text-align: center;
  margin-bottom: 22px;
  padding: 8px 6px 0;
}
.shop-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 42px);
  color: var(--lime);
  letter-spacing: -0.04em;
}
.shop-hero > p {
  max-width: 720px;
  margin: 0 auto 18px;
  color: #c5d0b8;
  line-height: 1.55;
}
.shop-balance { margin: 0; color: var(--muted); }
.shop-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.shop-trust > div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
}
.shop-trust span { display: block; font-size: 20px; margin-bottom: 4px; }
.shop-trust b { display: block; font-size: 13px; color: #fff; margin-bottom: 2px; }
.shop-trust small { color: var(--muted); font-size: 11px; line-height: 1.35; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
.shop-pack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px 16px;
  text-align: center;
}
.shop-pack.is-popular,
.shop-pack.is-best {
  border-color: rgba(200, 245, 66, 0.55);
  box-shadow: 0 0 20px rgba(200, 245, 66, 0.12);
}
.shop-pack-badge {
  align-self: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oxford);
  background: var(--lime);
  padding: 4px 10px;
  border-radius: 999px;
}
.shop-pack-badge.best { background: #fbbf24; }
.shop-pack-badge.ghost {
  visibility: hidden;
  height: 22px;
  padding: 0;
}
.shop-pack-total {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.05;
}
.shop-pack-total span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.shop-pack-rate {
  align-self: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  background: rgba(200, 245, 66, 0.1);
  border: 1px solid rgba(200, 245, 66, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
}
.shop-pack-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: #c5d0b8;
}
.shop-pack-lines li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-pack-lines .bonus {
  color: var(--lime);
  font-weight: 700;
}
.shop-pack-lines .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}
.shop-pack-price {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  margin-top: 4px;
}
.shop-pack-btn {
  width: 100%;
  margin-top: auto;
  font-size: 13px;
  padding: 12px 14px;
  white-space: normal;
  line-height: 1.25;
}
.shop-ticket,
.shop-history { margin-top: 14px; }

.task {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--oxford-2);
}
.task-thumb {
  width: 64px; height: 64px; border-radius: 14px;
  background: var(--oxford-3);
  overflow: hidden;
  display: grid; place-items: center;
}
.task-thumb img { width: 100%; height: 100%; object-fit: cover; }
.task b { display: block; }
.task small { color: var(--muted); }
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0 16px; }
.filter {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 7px 12px;
  cursor: pointer;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.filter.on { background: var(--lime); color: var(--oxford); font-weight: 700; }
.filter.ig.on { background: var(--lime); color: var(--oxford); }

.list { display: flex; flex-direction: column; gap: 10px; }
.empty {
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  color: var(--muted);
}

.modal-bg {
  position: fixed; inset: 0;
  background: rgba(6, 10, 7, 0.78);
  display: grid; place-items: center;
  z-index: 40;
  padding: 16px;
}
.modal {
  width: min(420px, 100%);
  background: var(--oxford-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}
.timer {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-align: center;
  margin: 8px 0 16px;
  color: var(--lime);
}
.progress {
  height: 8px; background: var(--oxford-3); border-radius: 99px; overflow: hidden; margin-bottom: 16px;
}
.progress > div { height: 100%; background: var(--lime); width: 0; }

.dash-row {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 12px;
  align-items: stretch;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.points-hero {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--lime);
  box-shadow: 0 0 18px rgba(200, 245, 66, 0.12);
}
.points-hero h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.points-hero h3 span { color: var(--lime); }
.points-hero .big { font-size: 52px; line-height: 1; }
.points-hero .btn { width: 100%; }

.hits-hero {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hits-hero h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 4px;
}
.hits-hero h3 span { color: var(--lime); }
.hits-hero .big { font-size: 52px; line-height: 1; margin: 4px 0 8px; }
.hits-goal-label {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.hits-goal {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}
.hits-goal b { color: var(--lime); }
.hits-meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}
.hits-hero .progress { margin: 0; }

.ref-hero { margin-top: 12px; }
.ref-hero h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.ref-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px dashed rgba(200, 245, 66, 0.35);
  border-radius: 14px;
  margin-bottom: 10px;
}
.ref-note p { margin: 0; color: var(--text); line-height: 1.45; font-size: 14px; }
.ref-note b { color: var(--lime); }
.ref-help {
  display: inline-block;
  color: var(--lime);
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 16px;
}
.ref-share-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}
.ref-copy-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.ref-copy-row input {
  flex: 1;
  margin: 0;
}
.share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.share-btn {
  display: grid;
  place-items: center;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(200, 245, 66, 0.28);
  color: var(--lime);
  font-weight: 800;
  font-size: 13px;
  background: rgba(200, 245, 66, 0.06);
}
.share-btn:hover { background: rgba(200, 245, 66, 0.14); }

.tour-root {
  position: fixed;
  inset: 0;
  z-index: 200;
}
.tour-spot {
  position: absolute;
  border-radius: 18px;
  border: 2px solid var(--lime);
  box-shadow:
    0 0 0 3px rgba(200, 245, 66, 0.28),
    0 0 32px rgba(200, 245, 66, 0.45),
    0 0 0 999vmax rgba(0, 0, 0, 0.78);
  pointer-events: none;
  transition: top 0.28s ease, left 0.28s ease, width 0.28s ease, height 0.28s ease;
}
.tour-tip {
  position: absolute;
  width: min(380px, calc(100vw - 24px));
  background: #121814;
  color: var(--text);
  border: 1px solid rgba(200, 245, 66, 0.22);
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  pointer-events: auto;
  z-index: 1;
}
.tour-tip::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.tour-tip.arrow-right::after {
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 9px solid transparent;
  border-left-color: #121814;
  border-right-width: 0;
}
.tour-tip.arrow-left::after {
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 9px solid transparent;
  border-right-color: #121814;
  border-left-width: 0;
}
.tour-tip.arrow-top::after {
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 9px solid transparent;
  border-bottom-color: #121814;
  border-top-width: 0;
}
.tour-tip.arrow-bottom::after {
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 9px solid transparent;
  border-top-color: #121814;
  border-bottom-width: 0;
}
.tour-tip-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.tour-tip-head span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
}
.tour-x {
  background: none;
  border: 0;
  color: var(--lime);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
}
.tour-tip h2 {
  margin: 10px 0 8px;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.03em;
}
.tour-tip p {
  margin: 0 0 16px;
  color: #c5d0b8;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
}
.tour-tip p b { color: var(--lime); font-weight: 800; }
.tour-tip-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tour-tip-actions { display: flex; align-items: center; gap: 8px; }
.tour-skip {
  background: none;
  border: 0;
  color: var(--lime);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-weight: 600;
  font-size: 13px;
}
.tour-back {
  background: transparent;
  border: 1px solid var(--lime);
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}
.tour-next {
  background: var(--lime);
  color: var(--oxford);
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}
.toasts {
  position: fixed; right: 16px; bottom: 16px; z-index: 210;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--oxford-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 220px;
}
.toast.ok { border-color: rgba(200, 245, 66, 0.45); }
.toast.err { border-color: rgba(251, 113, 133, 0.45); }

.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th, .table td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); }
.table th { color: var(--muted); font-weight: 500; }
.badge {
  display: inline-flex; padding: 3px 8px; border-radius: 999px; font-size: 12px;
  background: rgba(255,255,255,0.06);
}
.badge.on { background: rgba(200, 245, 66, 0.16); color: var(--lime); }
.badge.off { background: rgba(251, 113, 133, 0.12); color: var(--danger); }

.cell-net { display: inline-flex; align-items: center; gap: 8px; }

.logout { margin-top: 0; width: auto; }

.search-row { display: flex; gap: 8px; margin: 12px 0; }
.search-row input { flex: 1; }

@media (max-width: 960px) {
  .hero-grid, .networks, .steps, .grid-4, .grid-3, .app-shell, .picker { grid-template-columns: 1fr 1fr; }
  .dash-row, .dash-stats, .dash-grid-top, .dash-grid-bottom { grid-template-columns: 1fr; }
  .comm-stats { grid-template-columns: 1fr; }
  .share-grid-rich { grid-template-columns: repeat(4, 1fr); }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .shop-trust { grid-template-columns: 1fr 1fr; }
  .app-shell { grid-template-columns: 1fr; }
  .net.featured { grid-column: auto; }
  .side { display: none; }
  .app-topbar { padding: 12px 14px; }
  .app-main, .main { padding: 16px 14px 28px; }
  .app-topbar-right .btn-ghost { display: none; }
  .nav-tile { min-width: 78px; font-size: 10px; padding: 8px 8px 6px; }
  .task { grid-template-columns: 52px 1fr; }
  .task .task-cta { grid-column: 1 / -1; display: flex; gap: 8px; }
  .stats { grid-template-columns: 1fr; }
  .picker { grid-template-columns: 1fr 1fr; }
  .nav-pill {
    border-radius: 22px;
    padding: 10px 10px 10px 12px;
  }
  .nav-social a { padding: 4px 10px; font-size: 12px; }
}

@media (max-width: 560px) {
  .networks { grid-template-columns: 1fr 1fr; }
  .shop-grid, .shop-trust { grid-template-columns: 1fr; }
  .shop-surge, .dash-surge { flex-direction: column; align-items: flex-start; }
  .dash-surge-timer-wrap { text-align: left; min-width: 0; width: 100%; }
  .app-username { display: none; }
  .dash-big { font-size: 44px; }
  .comm-live b { font-size: 34px; }
  .nav-social a span { display: none; }
  .nav-social a { padding: 4px 12px; }
  .nav-pill .btn { font-size: 12px; padding: 9px 12px; }
  .brand { font-size: 16px; }
}

.hidden { display: none !important; }
.page-head h1 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.page-head .muted { margin: 0 0 18px; max-width: 720px; line-height: 1.5; }

.earn-cat-grid,
.sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.earn-cat-card,
.sites-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(200, 245, 66, 0.14);
  background: linear-gradient(180deg, rgba(22, 28, 24, 0.96), rgba(14, 18, 15, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.15s, transform 0.12s;
}
.sites-card {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 18px 14px;
}
.earn-cat-card:hover,
.sites-card:hover {
  border-color: color-mix(in srgb, var(--accent, var(--lime)) 45%, transparent);
  transform: translateY(-1px);
}
.earn-cat-copy strong,
.sites-card strong { display: block; color: #fff; font-size: 14px; }
.earn-cat-copy span,
.sites-type { color: var(--muted); font-size: 13px; }
.earn-cat-copy small,
.sites-setup { color: var(--lime); font-size: 12px; font-weight: 700; }
.earn-cat-arrow { color: var(--muted); font-size: 22px; }
.earn-note { margin-bottom: 14px; }
.earn-note p { margin: 0; line-height: 1.45; }

.earn-task-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.earn-task-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
}
.earn-task-card.featured {
  border-color: rgba(200, 245, 66, 0.45);
  box-shadow: 0 0 24px rgba(200, 245, 66, 0.12);
}
.earn-task-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  border: 2px solid rgba(200, 245, 66, 0.25);
}
.earn-task-avatar img { width: 100%; height: 100%; object-fit: cover; }
.earn-task-user { font-weight: 800; margin-bottom: 6px; }
.earn-task-pts {
  color: var(--lime);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.earn-task-card .btn { width: 100%; }
.earn-task-sub {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  font-size: 12px;
}
.linkish {
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  font: inherit;
}
.linkish:hover { color: var(--lime); }

.connect-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 24px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--card);
}
.connect-icon { margin-bottom: 12px; }
.connect-card h2 { margin: 0 0 10px; }
.connect-card p { color: var(--muted); line-height: 1.5; }
.connect-card .btn { margin-top: 10px; width: 100%; max-width: 320px; }

.site-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 14px;
  align-items: start;
}
.site-preview {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(200, 245, 66, 0.2);
  background: rgba(200, 245, 66, 0.04);
}
.site-preview.found {
  border-color: rgba(200, 245, 66, 0.45);
  box-shadow: 0 0 18px rgba(200, 245, 66, 0.08);
}
.site-preview > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.site-preview small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-found-badge {
  display: inline-block;
  width: fit-content;
  margin-top: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.site-found-badge.ok {
  background: rgba(200, 245, 66, 0.16);
  color: var(--lime);
}
.site-found-badge.warn {
  background: rgba(251, 191, 36, 0.14);
  color: #fbbf24;
}
.site-lookup-preview .btn { margin-top: 10px; width: 100%; }
.site-linked {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(200, 245, 66, 0.2);
  background: rgba(200, 245, 66, 0.04);
}
.site-avatar,
.site-preview img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
}
.site-lookup-preview { margin-top: 12px; }
.site-lookup-preview .btn { margin-top: 12px; width: 100%; }
.geo-block { margin-bottom: 14px; }
.geo-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.geo-panel {
  border: 1px solid rgba(200, 245, 66, 0.18);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.geo-panel-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 10px;
  border-bottom: 1px solid var(--line);
  background: rgba(200, 245, 66, 0.04);
}
.geo-search {
  flex: 1 1 200px;
  min-width: 160px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(11, 15, 12, 0.9);
  color: var(--text);
  font-size: 13px;
}
.geo-toolbar {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.geo-status {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--lime);
  white-space: nowrap;
}
.geo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-height: 280px;
  overflow: auto;
  padding: 12px;
}
.geo-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
  font-size: 12px;
  color: var(--muted);
  min-height: 40px;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.geo-chip:hover:not(:disabled) { border-color: rgba(200, 245, 66, 0.28); }
.geo-chip:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.geo-chip.is-on {
  border-color: rgba(200, 245, 66, 0.55);
  background: rgba(200, 245, 66, 0.12);
  color: var(--text);
}
.geo-chip input[name="geo"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.geo-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid rgba(160, 170, 150, 0.55);
  background: rgba(80, 90, 80, 0.35);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  transition: background 0.12s, border-color 0.12s, box-shadow 0.12s;
}
.geo-chip.is-on .geo-check {
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: 0 0 8px rgba(200, 245, 66, 0.35);
}
.geo-chip.is-on .geo-check::after {
  content: "";
  width: 4px;
  height: 8px;
  border: solid #0b0f0c;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}
.geo-flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.geo-code {
  font-weight: 800;
  color: #fff;
  font-size: 11px;
  min-width: 22px;
  letter-spacing: 0.04em;
}
.geo-name {
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-rank { font-size: 13px; margin: 8px 0 12px; }

@media (max-width: 960px) {
  .earn-cat-grid, .sites-grid, .earn-task-grid { grid-template-columns: 1fr 1fr; }
  .site-layout { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .earn-cat-grid, .sites-grid, .earn-task-grid { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .geo-status { width: 100%; margin-left: 0; }
}
