.page-not-found-section {
  position: relative;

  min-height: 100vh;

  background: linear-gradient(135deg, #02161b 0%, #01262d 100%);

  overflow: hidden;

  display: flex;
  align-items: center;
  margin: 10px 10px 10px;
  border-radius: 16px;
}

.page-not-found-container {
  width: min(1500px, 90%);
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;

  align-items: center;

  position: relative;
  z-index: 2;
}

/* Glow */

.page-not-found-glow {
  position: absolute;

  width: 800px;
  height: 800px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(14, 138, 138, 0.18),
    transparent 70%
  );

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}

/* LEFT */

.page-not-found-tag {
  display: inline-block;

  color: #0e8a8a;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 4px;

  margin-bottom: 20px;
}

.page-not-found-code {
  font-size: clamp(180px, 22vw, 420px);

  line-height: 0.8;

  font-weight: 700;

  color: rgba(255, 255, 255, 0.08);

  letter-spacing: -12px;
}

/* RIGHT */

.page-not-found-title {
  color: #fff;

  font-size: clamp(48px, 4vw, 90px);

  line-height: 1;

  letter-spacing: -3px;

  margin-bottom: 30px;
}

.page-not-found-description {
  color: rgba(255, 255, 255, 0.7);

  font-size: 22px;

  line-height: 1.9;

  max-width: 600px;

  margin-bottom: 50px;
}

/* BUTTON */

.page-not-found-btn {
  display: inline-flex;
  align-items: center;

  gap: 16px;

  text-decoration: none;

  background: #0e8a8a;

  padding: 4px 4px 4px 32px;

  border-radius: 60px;

  transition: all 0.3s ease;
}

.page-not-found-btn span {
  color: #fff;

  font-weight: 600;
}

.page-not-found-btn-icon {
  width: 50px;
  height: 50px;

  background: #042f33;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
}

.page-not-found-btn-icon svg {
  width: 20px;
  height: 20px;

  transition: 0.4s;
}

.page-not-found-btn:hover .page-not-found-btn-icon svg {
  transform: rotate(45deg);
}

/* Decorative Lines */

.page-not-found-section::before {
  content: "";

  position: absolute;

  top: 0;
  left: 120px;

  width: 1px;
  height: 100%;

  background: rgba(255, 255, 255, 0.05);
}

.page-not-found-section::after {
  content: "";

  position: absolute;

  top: 0;
  right: 120px;

  width: 1px;
  height: 100%;

  background: rgba(255, 255, 255, 0.05);
}

/* Responsive */

@media (max-width: 992px) {
  .page-not-found-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-not-found-code {
    font-size: 160px;
  }

  .page-not-found-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-not-found-section {
    padding: 100px 0;
  }

  .page-not-found-code {
    font-size: 120px;
  }

  .page-not-found-title {
    font-size: 40px;
  }

  .page-not-found-description {
    font-size: 16px;
    line-height: 1.8;
  }

  .page-not-found-btn {
    font-size: 14px;
  }

  .page-not-found-btn-icon {
    width: 40px;
    height: 40px;
  }

  .page-not-found-section::before,
  .page-not-found-section::after {
    display: none;
  }
}
