/* ==========================================================================
   BetPro Pakistan - 404
   ========================================================================== */

.notfound {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(222 24% 5%);
  padding: 1.5rem;
  overflow: hidden;
}

.notfound .l-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.notfound .l-gridfade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 35%, hsl(222 24% 5%) 100%);
}

.notfound .l-bloom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.06);
  filter: blur(160px);
  pointer-events: none;
}

.notfound .card {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 30rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: hsl(222 22% 8%);
  overflow: hidden;
}

.notfound .card .shimmer {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.notfound .card .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--glow), 0.06), transparent);
  pointer-events: none;
}

.notfound .card-content {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
}

.notfound .badge {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-xl);
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.notfound .badge .icon {
  width: 1.75rem;
  height: 1.75rem;
  color: hsl(var(--primary));
}

.notfound .code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 12vw, 84px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: hsl(var(--foreground));
  text-shadow: 0 0 60px rgba(var(--glow), 0.25);
}

.notfound h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  font-family: var(--font-display);
  margin-top: 0.75rem;
}

.notfound p {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

.notfound .actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
