body {
  background-color: #080B10;
  color: #E2E8F0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(0, 229, 255, 0.12) 0%, transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.14) 0%, transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent);
}

.glass-panel {
  background: rgba(13, 17, 23, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.text-gradient {
  background: linear-gradient(to right, #00E5FF, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-panel::before,
.hero-panel::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}

.hero-panel::before {
  width: 220px;
  height: 220px;
  background: rgba(0, 229, 255, 0.2);
  top: -50px;
  right: -40px;
}

.hero-panel::after {
  width: 180px;
  height: 180px;
  background: rgba(37, 99, 235, 0.22);
  bottom: -50px;
  left: -40px;
}

.stat-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.4);
}

.filter-pill {
  transition: all 0.25s ease;
  border: 1px solid rgba(255,255,255,0.08);
  color: #94A3B8;
}

.filter-pill.active,
.filter-pill:hover {
  border-color: rgba(0, 229, 255, 0.35);
  color: white;
  background: rgba(0, 229, 255, 0.12);
}

.app-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.35);
}

.app-card .download-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-card .download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.28);
}

.empty-state {
  border: 1px dashed rgba(255,255,255,0.18);
}
