/* ═══════════════════════════════════════════════════════
   UNIVERSAL CROWD — DASHBOARD STYLES
   Font: Poppins | Theme: Dark Web3 / Crypto Glassmorphism
═══════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --bg-deep: #05071b;
  --bg-mid: #080c2b;
  --bg-card: #0b1035;
  --bg-card-alpha: rgba(11, 16, 53, 0.95);
  --bg-card-hover: rgba(15, 20, 65, 0.98);

  --purple-1: #8a2eff;
  --purple-2: #a855f7;
  --purple-3: #c084fc;
  --blue-1: #0ea5ff;
  --blue-2: #2563eb;
  --blue-3: #38bdf8;
  --green: #22c55e;
  --orange: #f59e0b;
  --red: #ef4444;

  --border-purple: rgba(138, 46, 255, 0.25);
  --border-blue: rgba(14, 165, 255, 0.2);

  --glow-purple: rgba(168, 85, 247, 0.4);
  --glow-blue: rgba(14, 165, 255, 0.4);
  --glow-green: rgba(34, 197, 94, 0.4);

  --text-primary: #f0f4ff;
  --text-secondary: #cbcaca;
  --text-muted: #4a5680;

  --radius-card: 20px;
  --radius-sm: 12px;
  --radius-btn: 10px;

  --nav-height: 70px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(
      ellipse 80% 50% at 20% 10%,
      rgba(138, 46, 255, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 80%,
      rgba(14, 165, 255, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 100% 60% at 50% 50%,
      rgba(8, 12, 43, 1) 0%,
      var(--bg-deep) 100%
    );
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}
svg {
  display: block;
}

/* ── Utility: Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--purple-2), var(--purple-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-blue {
  background: linear-gradient(135deg, var(--blue-1), var(--blue-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glass Card Base ── */
.glass-card {
  background: var(--bg-card-alpha);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   TOP NAVIGATION
═══════════════════════════════════════════════════════ */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(8, 12, 43, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-purple);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(138, 46, 255, 0.05);
  transition: var(--transition);
}

.topnav.scrolled {
  background: rgba(5, 7, 27, 0.95);
  box-shadow:
    0 4px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(138, 46, 255, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.mission-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-img {
  width: 300px; /* apni requirement ke hisab se */
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.mission-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.3) 0%,
    rgba(14, 165, 255, 0.1) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(30px);
  z-index: 1;
}
.logo-icon {
  width: 160px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
  transition: var(--transition);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-logo:hover .logo-icon {
  filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.8));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
}
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--purple-2);
}

/* Center Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-btn);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-item::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-2), var(--blue-1));
  border-radius: 2px;
  transition: var(--transition);
}
.nav-item:hover,
.nav-item.active {
  color: var(--text-primary);
  background: rgba(138, 46, 255, 0.12);
}
.nav-item.active::after,
.nav-item:hover::after {
  width: 70%;
}

/* Right Controls */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.nav-lang:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}
.nav-lang svg {
  width: 10px;
  height: 10px;
}

.nav-icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-icon-btn svg {
  width: 18px;
  height: 18px;
}
.nav-icon-btn:hover {
  background: rgba(138, 46, 255, 0.15);
  border-color: var(--border-purple);
  color: var(--text-primary);
}

.notif-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  background: var(--purple-2);
  border-radius: 50%;
  border: 1.5px solid var(--bg-mid);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0);
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════
   MAIN CONTENT LAYOUT
═══════════════════════════════════════════════════════ */
.main-content {
  padding-top: calc(var(--nav-height) + 24px);
  padding-bottom: 40px;
  min-height: 100vh;
}

.dashboard-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Card Title ── */
.card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.card-header-row .card-title {
  margin-bottom: 0;
}
.view-all {
  font-size: 12px;
  color: var(--purple-2);
  font-weight: 500;
  transition: var(--transition);
}
.view-all:hover {
  color: var(--purple-3);
}

/* ═══════════════════════════════════════════════════════
   ROW 1: WELCOME + HERO BANNER
═══════════════════════════════════════════════════════ */
.row-welcome-hero {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  align-items: start;
}

/* ── Welcome Card ── */
.welcome-card {
  padding: 28px;
}

.welcome-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.user-avatar {
  position: relative;
  flex-shrink: 0;
}
.user-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--purple-2);
  object-fit: cover;
  box-shadow: 0 0 20px var(--glow-purple);
}
.avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(168, 85, 247, 0.4);
  animation: spin-slow 10s linear infinite;
}
@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.welcome-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}
.user-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
}
.badge.elite {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--purple-3);
}

.welcome-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}
.welcome-brand {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Stat Grid */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-2px);
}
.stat-blue {
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(30,58,138,0.25));
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 4px 20px rgba(37,99,235,0.2);
}
.stat-blue .stat-icon { background: rgba(59,130,246,0.25); color: #93c5fd; }

.stat-purple {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(109,40,217,0.25));
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 4px 20px rgba(124,58,237,0.2);
}
.stat-purple .stat-icon { background: rgba(139,92,246,0.25); color: #c4b5fd; }

.stat-orange {
  background: linear-gradient(135deg, rgba(217,119,6,0.15), rgba(120,53,15,0.25));
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 4px 20px rgba(217,119,6,0.2);
}
.stat-orange .stat-icon { background: rgba(245,158,11,0.25); color: #fcd34d; }

.stat-green {
  background: linear-gradient(135deg, rgba(219,39,119,0.15), rgba(131,24,67,0.25));
  border-color: rgba(236, 72, 153, 0.6);
  box-shadow: 0 4px 20px rgba(219,39,119,0.2);
}
.stat-green .stat-icon { background: rgba(236,72,153,0.25); color: #fbcfe8; }

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg {
  width: 18px;
  height: 18px;
}

.stat-blue .stat-icon {
  background: rgba(14, 165, 255, 0.2);
  color: var(--blue-1);
}
.stat-green .stat-icon {
  background: rgba(34, 197, 94, 0.2);
  color: var(--green);
}
.stat-orange.stat-icon {
  background: rgba(245, 158, 11, 0.2);
  color: var(--orange);
}
.stat-purple.stat-icon {
  background: rgba(168, 85, 247, 0.2);
  color: var(--purple-2);
}
.stat-orange .stat-icon {
  background: rgba(245, 158, 11, 0.2);
  color: var(--orange);
}
.stat-purple .stat-icon {
  background: rgba(168, 85, 247, 0.2);
  color: var(--purple-2);
}

.stat-label {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
}
.stat-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
}
.stat-value span {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Level Card */
.level-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-sm);
}
.badge-shield {
  width: 48px;
  height: 52px;
  filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.5));
  flex-shrink: 0;
}
.badge-shield svg {
  width: 100%;
  height: 100%;
}
.level-sub {
  font-size: 11px;
  color: var(--text-secondary);
}
.level-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1px;
}
.level-motto {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.level-next {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.silver-text {
  color: #a8c0d0;
  font-weight: 600;
}
.level-pct {
  margin-left: auto;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 12px;
}

.progress-bar-wrap {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--purple-1),
    var(--purple-2),
    var(--blue-1)
  );
  border-radius: 10px;
  box-shadow: 0 0 8px var(--glow-purple);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Hero Banner ── */
.hero-banner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  background:
    radial-gradient(
      ellipse 70% 80% at 80% 30%,
      rgba(14, 165, 255, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 60% at 20% 80%,
      rgba(138, 46, 255, 0.12) 0%,
      transparent 60%
    ),
    var(--bg-card-alpha);
  border-color: var(--border-blue);
}

.hero-content {
  flex: 1;
}
.hero-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.hero-title {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    #fff 30%,
    var(--blue-1) 70%,
    var(--purple-2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

.hero-globe {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-60%);
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.globe-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse,
    rgba(14, 165, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: globe-pulse 4s ease-in-out infinite;
}
@keyframes globe-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes globe-rotate {
  to {
    transform: rotate(5deg) scale(1.02);
  }
}

/* Action Buttons */
.action-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: auto;
  padding-top: 140px;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border: 1px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.2px;
}
.action-btn svg {
  width: 22px;
  height: 22px;
}
.action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 4px 20px rgba(138, 46, 255, 0.3);
}
.btn-teal {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}
.btn-orange {
  background: linear-gradient(135deg, #d97706, var(--orange));
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}
.btn-green {
  background: linear-gradient(135deg, #16a34a, var(--green));
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}
.btn-pink {
  background: linear-gradient(135deg, #831843, #db2777);
  border-color: rgba(236, 72, 153, 0.6);
  box-shadow: 0 4px 20px rgba(219, 39, 119, 0.35);
}
.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(219, 39, 119, 0.55);
}
.btn-blue {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════
   ROW 2: SCANNER CARDS
═══════════════════════════════════════════════════════ */
.row-scanners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.scanner-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.scanner-header {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
}

.scanner-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.scanner-logo svg {
  width: 100%;
  height: 100%;
}

.scanner-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.scanner-title-2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.scanner-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 3px;
}

.wa-title {
  color: #25d366;
}
.tg-title {
  color: #229ed9;
}

.scanner-whatsapp {
  border-color: rgba(37, 211, 102, 0.3);
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.05) 0%,
    var(--bg-card-alpha) 50%
  );
}
.scanner-telegram {
  border-color: rgba(34, 158, 217, 0.3);
  background: linear-gradient(
    135deg,
    rgba(34, 158, 217, 0.05) 0%,
    var(--bg-card-alpha) 50%
  );
}

/* Phone Mock */
.phone-mock {
  width: 140px;
  height: 90px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 7, 27, 0.8);
  border-radius: 12px;
}

/* QR Box */
.qr-box {
  width: 60px;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: #25d366;
  border-style: solid;
}
.scanner-telegram .qr-corner {
  border-color: #229ed9;
}
.qr-corner.tl {
  top: 0;
  left: 0;
  border-width: 3px 0 0 3px;
  border-radius: 3px 0 0 0;
}
.qr-corner.tr {
  top: 0;
  right: 0;
  border-width: 3px 3px 0 0;
  border-radius: 0 3px 0 0;
}
.qr-corner.bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 3px;
}
.qr-corner.br {
  bottom: 0;
  right: 0;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 3px 0;
}

.qr-grid {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-inner {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 3px;
}
.scanner-telegram .qr-inner {
  background: linear-gradient(135deg, #229ed9, #1c7fa8);
}

.scan-line {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #25d366, transparent);
  animation: scan-anim 2s ease-in-out infinite;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
}
.scan-line-blue {
  background: linear-gradient(90deg, transparent, #229ed9, transparent);
  box-shadow: 0 0 8px rgba(34, 158, 217, 0.6);
}
@keyframes scan-anim {
  0% {
    top: 5%;
  }
  100% {
    top: 85%;
  }
}

.scan-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-wa {
  background: linear-gradient(135deg, #128c7e, #25d366);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.btn-tg {
  background: linear-gradient(135deg, #1c7fa8, #229ed9);
  box-shadow: 0 4px 16px rgba(34, 158, 217, 0.3);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.btn-tg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 158, 217, 0.4);
}

/* ═══════════════════════════════════════════════════════
   ROW 3: PACKAGE + TEAM + ACTIVITIES
═══════════════════════════════════════════════════════ */
.row-three-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}

/* ── Package Progress ── */
.package-card {
  padding: 24px;
}

.package-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.pkg-label {
  font-size: 11px;
  color: var(--text-secondary);
}
.pkg-label-right {
  text-align: right;
}
.pkg-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}
.pkg-value span {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.badge-active {
  padding: 4px 12px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}

.pkg-progress-wrap {
  height: 8px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}
.pkg-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-1), var(--blue-1));
  border-radius: 10px;
  box-shadow: 0 0 10px var(--glow-purple);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pkg-progress-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: right;
  margin-bottom: 6px;
}
.pkg-progress-label span {
  color: var(--purple-2);
  font-weight: 600;
}

.pkg-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.upgrade-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(
    135deg,
    var(--purple-1),
    var(--purple-2),
    var(--blue-1)
  );
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(138, 46, 255, 0.3);
}
.upgrade-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(138, 46, 255, 0.5);
}

/* ── Team Overview ── */
.team-card {
  padding: 24px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.team-stat {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition);
}
.team-stat:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-purple);
  transform: translateY(-2px);
}

.team-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-icon svg {
  width: 18px;
  height: 18px;
}

.t-purple {
  background: rgba(168, 85, 247, 0.15);
  color: var(--purple-2);
}
.t-blue {
  background: rgba(14, 165, 255, 0.15);
  color: var(--blue-1);
}
.t-orange {
  background: rgba(245, 158, 11, 0.15);
  color: var(--orange);
}
.t-green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}

.team-num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}
.team-lbl {
  font-size: 20px;
  color: var(--text-secondary);
}

/* ── Recent Activities ── */
.activities-card {
  padding: 24px;
}

.activities-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.activity-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.act-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.act-icon svg {
  width: 16px;
  height: 16px;
}

.act-teal {
  background: rgba(20, 184, 166, 0.15);
  color: #14b8a6;
}
.act-blue {
  background: rgba(14, 165, 255, 0.15);
  color: var(--blue-1);
}
.act-green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}
.act-orange {
  background: rgba(245, 158, 11, 0.15);
  color: var(--orange);
}

.act-info {
  flex: 1;
}
.act-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}
.act-date {
  font-size: 11px;
  color: var(--text-muted);
}

.act-amount {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.gain {
  color: var(--green);
}
.loss {
  color: var(--red);
}

/* ═══════════════════════════════════════════════════════
   ROW 4: SYSTEM HIGHLIGHTS + MISSION + TOP EARNERS
═══════════════════════════════════════════════════════ */
.row-bottom-cards {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}

/* ── System Highlights ── */
.highlights-card {
  padding: 24px;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.highlight-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-icon svg {
  width: 18px;
  height: 18px;
}

.h-purple {
  background: rgba(168, 85, 247, 0.15);
  color: var(--purple-2);
}
.h-blue {
  background: rgba(14, 165, 255, 0.15);
  color: var(--blue-1);
}
.h-green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}
.h-orange {
  background: rgba(245, 158, 11, 0.15);
  color: var(--orange);
}

.highlight-text {
  flex: 1;
}
.h-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.h-sub {
  font-size: 15px;
  color: var(--text-secondary);
}
.h-arrow {
  color: var(--text-muted);
  font-size: 18px;
}

/* ── Mission Card ── */
.mission-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  background:
    radial-gradient(
      ellipse 100% 100% at 80% 100%,
      rgba(138, 46, 255, 0.15) 0%,
      transparent 60%
    ),
    var(--bg-card-alpha);
  position: relative;
  overflow: hidden;
}

.mission-content {
  flex: 1;
}
.mission-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.learn-btn {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(138, 46, 255, 0.3);
}
.learn-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138, 46, 255, 0.5);
}

.mission-visual {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 120px;
  height: 120px;
  opacity: 0.7;
}
.mission-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse,
    rgba(168, 85, 247, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: mission-pulse 3s ease-in-out infinite;
}
@keyframes mission-pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.mission-svg {
  width: 100%;
  height: 100%;
}

/* ── Top Earners ── */
.earners-card {
  padding: 24px;
}

.earners-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.earner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.earner-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.earner-rank {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.rank-1 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}
.rank-2 {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
}
.rank-3 {
  background: linear-gradient(135deg, #0ea5ff, #2563eb);
  color: #fff;
  box-shadow: 0 0 8px rgba(14, 165, 255, 0.5);
}
.rank-n {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.earner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.earner-name {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}
.earner-amount {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.top-1 {
  color: #f59e0b;
}
.top-2 {
  color: var(--purple-2);
}
.top-3 {
  color: var(--blue-1);
}
.top-n {
  color: var(--green);
}

/* ═══════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════ */
.cta-banner {
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background:
    radial-gradient(
      ellipse 60% 100% at 0% 50%,
      rgba(138, 46, 255, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 100% at 100% 50%,
      rgba(14, 165, 255, 0.1) 0%,
      transparent 60%
    ),
    var(--bg-card-alpha);
  border-color: rgba(138, 46, 255, 0.3);
}

.cta-left {
  flex-shrink: 0;
}
.cta-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.cta-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.explore-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(138, 46, 255, 0.4);
}
.explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(138, 46, 255, 0.6);
}

.cta-icons {
  display: flex;
  gap: 32px;
  align-items: center;
}
.cta-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.cta-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-2);
  transition: var(--transition);
}
.cta-icon-wrap svg {
  width: 22px;
  height: 22px;
}
.cta-icon-item:hover .cta-icon-wrap {
  background: rgba(138, 46, 255, 0.15);
  border-color: var(--border-purple);
}
.cta-icon-item p {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: rgba(5, 7, 27, 0.95);
  border-top: 1px solid var(--border-purple);
  padding: 20px 0;
}
.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--purple-2);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-icon svg {
  width: 14px;
  height: 14px;
}
.social-icon:hover {
  background: rgba(138, 46, 255, 0.15);
  border-color: var(--border-purple);
  color: var(--purple-2);
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS & GLOW EFFECTS
═══════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glass-card {
  animation: fadeInUp 0.5s ease both;
}
.row-welcome-hero > *:nth-child(2) {
  animation-delay: 0.1s;
}
.row-scanners > *:nth-child(1) {
  animation-delay: 0.15s;
}
.row-scanners > *:nth-child(2) {
  animation-delay: 0.2s;
}
.row-three-cols > *:nth-child(2) {
  animation-delay: 0.1s;
}
.row-three-cols > *:nth-child(3) {
  animation-delay: 0.2s;
}
.row-bottom-cards > *:nth-child(2) {
  animation-delay: 0.1s;
}
.row-bottom-cards > *:nth-child(3) {
  animation-delay: 0.2s;
}

/* Neon border glow on hover */
.glass-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow:
    0 8px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 30px rgba(138, 46, 255, 0.08);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET 1024px
═══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .row-welcome-hero {
    grid-template-columns: 1fr 1fr;
  }
  .row-three-cols {
    grid-template-columns: 1fr 1fr;
  }
  .row-three-cols > .activities-card {
    grid-column: 1 / -1;
  }
  .row-bottom-cards {
    grid-template-columns: 1fr 1fr;
  }
  .row-bottom-cards > .earners-card {
    grid-column: 1 / -1;
  }
  .action-buttons {
    padding-top: 100px;
  }
}
.hero-globe-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(14, 165, 255, 0.4));
}
@media (max-width: 1024px) {
  .nav-menu {
    gap: 2px;
  }
  .nav-item {
    padding: 8px 10px;
    font-size: 12px;
  }
  .hero-globe {
    width: 260px;
    height: 260px;
  }
  .action-buttons {
    padding-top: 90px;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET 768px
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8, 12, 43, 0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-purple);
    padding: 16px;
    gap: 4px;
    transform: translateY(-100%) translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-item {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  .hamburger {
    display: flex;
  }

  .row-welcome-hero {
    grid-template-columns: 1fr;
  }
  .row-scanners {
    grid-template-columns: 1fr 1fr;
  }
  .row-three-cols {
    grid-template-columns: 1fr 1fr;
  }
  .row-three-cols > .activities-card {
    grid-column: 1 / -1;
  }
  .row-bottom-cards {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    min-height: auto;
  }
  .hero-globe {
    width: 130px;
    height: 130px;
  }
  .action-buttons {
    padding-top: 70px;
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .cta-icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE 480px
═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .dashboard-container {
    padding: 0 16px;
  }

  .row-scanners {
    grid-template-columns: 1fr;
  }
  .row-three-cols {
    grid-template-columns: 1fr;
  }
  .row-bottom-cards {
    grid-template-columns: 1fr;
  }

  .stat-grid {
  grid-template-columns: 1fr;    
}

  .action-buttons {
    grid-template-columns: 1fr !important;
    padding-top: 0;
  }
  .hero-globe {
    display: none;
  }
  .hero-banner {
    padding: 20px;
  }
  .hero-title {
    font-size: 28px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-banner {
    padding: 20px 16px;
  }
  .cta-icons {
    gap: 16px;
  }

  .nav-lang {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE 375px / 320px
═══════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .logo-text {
    display: none;
  }
   .stat-grid {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }
  .stat-value {
    font-size: 14px;
  }
  .user-name {
    font-size: 18px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Scrollbar Styling ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(138, 46, 255, 0.4);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 85, 247, 0.6);
}
.hero-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-globe {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* Image right side */
  align-items: center;
}

.hero-globe img {
  max-width: 550px;
  width: 100%;
  height: auto;
}
/* ── Floating Buttons ── */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, width 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  max-width: 160px;
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.float-btn:active {
  transform: translateY(-1px);
}

/* Telegram — brand blue */
.telegram-btn {
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  color: #fff;
}

.telegram-btn:hover {
  background: linear-gradient(135deg, #3bbcff, #2AABEE);
}

/* History — dark/neutral */
.history-btn {
  background: linear-gradient(135deg, #2323f0,  #2323f0);
  color: #e0e0ff;
}

.history-btn:hover {
  background: linear-gradient(135deg, #252545, #1a1a2e);
}

/* Mobile: show icon only */
@media (max-width: 480px) {
  .float-btn span {
    display: none;
  }
  .float-btn {
    padding: 14px;
    border-radius: 50%;
    max-width: unset;
  }
}
/* ── STOP BLINKING / FLICKERING ── */
* {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

body {
  -webkit-overflow-scrolling: touch;  /* fix scroll in BitWallet */
  overflow-scrolling: touch;
  overflow-y: scroll !important;
  overscroll-behavior: none;
}

/* Fix slider blink */
#slider-track {
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* Fix glass card blink */
.glass-card {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: auto;
}

/* Fix main content scroll */
.main-content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: auto !important;
  min-height: 100vh;
}

.dashboard-container {
  overflow: visible !important;
  height: auto !important;
}