.error-404 {
  background-color: var(--color-primary);
  min-height: 100vh;
  padding: var(--spacing-8) 0 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.error-404__container {
  position: relative;
  z-index: 2;
}

.error-404__content {
  max-width: 800px;
  margin: 0 auto;
}

.error-404__title {
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 32px;
}

.error-404__title span {
  font-size: 48px;
}

.error-404__text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 0.9;
}

.error-404__actions {
  display: flex;
  gap: 24px;
}

.error-404__actions .btn {
  min-width: 280px;
  background: var(--color-accent);
  text-align: center;
  display: flex;
  justify-content: center;
}

.error-404__actions .btn--secondary {
  background: #fff;
  color: var(--color-primary);
}

.error-404__actions .btn--secondary:hover {
    background: black;
    color: var(--color-text-inverse);
  }

.error-404__actions .btn--secondary .btn__icon svg path {
  fill: var(--color-primary);
}

.ltb-watermark {
  position: absolute;
  z-index: 1;
  opacity: 0.5;
}

.error-404-watermark--right {
  position: absolute;
  top:0%;
  right: -60%;
  width: 100%;
  transform: rotate(-180deg);
}

.error-404-watermark--left {
  position: absolute;
  bottom: -30%;
  left: -40%;
}

@media (max-width: 768px) {
  .error-404__title {
    font-size: 48px;
  }

  .error-404__title span {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .error-404__actions {
    flex-direction: column;
  }
}
