body {
  font-family: 'Poppins',sans-serif;
  background: #070b14;
  color: white;
}

.bg-effects {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at top left,#2b6bff55,transparent 30%), radial-gradient(circle at bottom right,#9b4dff55,transparent 30%), linear-gradient(#070b14,#0f172a);
}

.navbar {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
  font-weight: 800;
  font-size: 28px;
  background: linear-gradient(90deg,#4aa3ff,#b45dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
}

.hero p {
  font-size: 20px;
  color: #d6d6d6;
  max-width: 900px;
  margin: auto;
}

.btn-main {
  background: linear-gradient(90deg,#3d8dff,#7f5cff);
  border: none;
  color: white;
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 600;
}

.btn-main:hover {
  transform: translateY(-3px);
}

.app-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 25px;
  padding: 30px;
  height: 100%;
}

.tag {
  display: inline-block;
  background: #1a2444;
  color: #8fb4ff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 15px;
}

.screenshots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.screenshots img {
  width: 140px;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

.highlight {
  background: linear-gradient(135deg,#18234a,#2a1450);
  padding: 18px;
  border-radius: 15px;
  margin: 20px 0;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7da0ff;
}

.stats {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
}

footer {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 80px;
}

.navbar, .navbar * {
  pointer-events: auto;
}

.img-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  cursor: pointer;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.img-modal img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0,0,0,0.7);
  transform: scale(0.9);
  transition: 0.25s;
}

#imgModal {
}

.img-modal.show {
  opacity: 1;
  visibility: visible;
}

.img-modal.show img {
  transform: scale(1);
}

.screenshots img {
  cursor: zoom-in;
}

