@charset "UTF-8";
.error-404-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08121C;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 20px;
}

/* Radial glow — matches site background glows */
.error-404-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 153, 255, 0.18) 0%, rgba(0, 153, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.error-404-section .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.error-404-number {
  font-size: clamp(100px, 18vw, 200px);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #00A3F3, #0063C2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -4px;
}

.error-404-section h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.2;
}

.error-404-section p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0 auto 40px;
  max-width: 520px;
}

.error-404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-404-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(0, 163, 243, 0.15), rgba(0, 99, 194, 0.2));
  border: 1px solid rgba(0, 163, 243, 0.5);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.5px;
}

.error-404-actions .btn-primary:hover {
  background: linear-gradient(135deg, rgba(0, 163, 243, 0.3), rgba(0, 99, 194, 0.35));
  border-color: rgba(0, 163, 243, 0.9);
  box-shadow: 0 0 20px rgba(0, 163, 243, 0.25);
  color: #fff;
}

.error-404-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.error-404-actions .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* Decorative grid lines — matches site aesthetic */
.error-404-section .grid-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.error-404-section .grid-line-h {
  width: 100%;
  height: 1px;
  left: 0;
}

.error-404-section .grid-line-v {
  width: 1px;
  height: 100%;
  top: 0;
}

.error-404-section .line-top {
  top: 30%;
}

.error-404-section .line-bottom {
  top: 70%;
}

.error-404-section .line-left {
  left: 20%;
}

.error-404-section .line-right {
  left: 80%;
}

@media (max-width: 600px) {
  .error-404-actions {
    flex-direction: column;
    align-items: center;
  }
  .error-404-actions .btn-primary,
  .error-404-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/*# sourceMappingURL=404.css.map */
