<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}
.error-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(240, 138, 93, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 138, 93, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: -1;
}
.error-code-container {
  position: relative;
  margin-bottom: 2rem;
}
.error-code {
  font-size: 12rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  text-shadow: 3px 3px 0 rgba(240, 138, 93, 0.2);
  letter-spacing: -5px;
}
.error-code::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: -10%;
  width: 120%;
  height: 0.5rem;
  background-color: rgba(240, 138, 93, 0.2);
  z-index: -1;
  border-radius: 2px;
}
.error-icon {
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 4rem;
  color: var(--primary);
  transform: rotate(15deg);
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
}
.error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
}
.error-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  border-radius: 3px;
}
.error-message {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
}
.error-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}
.error-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(240, 138, 93, 0.3);
  border: none;
  cursor: pointer;
}
.error-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(240, 138, 93, 0.4);
}
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: -1;
}
.wave {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
}
.wave path {
  fill: rgba(240, 138, 93, 0.05);
}
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240, 138, 93, 0.2), rgba(249, 179, 132, 0.1));
  z-index: -1;
  animation: float-slow 10s ease-in-out infinite;
}
.shape-1 {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}
.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 10%;
  animation-delay: 1s;
}
.shape-3 {
  width: 70px;
  height: 70px;
  top: 30%;
  right: 20%;
  animation-delay: 2s;
}
.shape-4 {
  width: 120px;
  height: 120px;
  bottom: 30%;
  left: 20%;
  animation-delay: 1.5s;
}
.geometric-shape {
  position: absolute;
  z-index: -1;
  opacity: 0.6;
  animation: float-slow 8s ease-in-out infinite;
}
.triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid rgba(240, 138, 93, 0.1);
  top: 20%;
  left: 25%;
  transform: rotate(15deg);
  animation-delay: 0.5s;
}
.square {
  width: 40px;
  height: 40px;
  background-color: rgba(240, 138, 93, 0.1);
  top: 25%;
  right: 25%;
  transform: rotate(45deg);
  animation-delay: 1.2s;
}
.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(240, 138, 93, 0.1);
  bottom: 25%;
  right: 30%;
  animation-delay: 0.8s;
}
.contact-info {
  display: none;
}
@keyframes float {
  0% {
    transform: translateY(0) rotate(15deg);
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(15deg);
  }
}
@keyframes float-slow {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@media (max-width: 768px) {
  .error-code {
    font-size: 8rem;
  }
  .error-icon {
    font-size: 3rem;
    top: -20px;
    right: -20px;
  }
  .error-title {
    font-size: 2rem;
  }
  .error-message {
    font-size: 1.1rem;
  }
  .floating-shape,
  .geometric-shape {
    transform: scale(0.8);
  }
  .wave {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .error-code {
    font-size: 6rem;
  }
  .error-icon {
    font-size: 2.5rem;
    top: -15px;
    right: -15px;
  }
  .error-title {
    font-size: 1.8rem;
  }
  .error-message {
    font-size: 1rem;
  }
  .error-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  .contact-info {
    padding: 1.2rem;
  }
  .contact-title {
    font-size: 1.1rem;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .contact-icon {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  .floating-shape,
  .geometric-shape {
    transform: scale(0.6);
  }
  .wave {
    height: 40px;
  }
}
.help-options {
  margin-top: 2rem;
  padding: 2rem;
  background-color: white;
  border-radius: 16px;
  max-width: 700px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.help-options::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary);
  border-radius: 0 2px 2px 0;
}
.help-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.help-description {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.help-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(240, 138, 93, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(240, 138, 93, 0.1);
}
.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(240, 138, 93, 0.1);
  background-color: rgba(240, 138, 93, 0.1);
}
.help-icon {
  font-size: 1.8rem;
  color: var(--primary);
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(240, 138, 93, 0.1);
  flex-shrink: 0;
}
.help-content {
  flex: 1;
}
.help-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.3rem 0;
}
.help-content p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}
@media (max-width: 768px) {
  .help-options {
    padding: 1.5rem;
  }
}
@media (max-width: 576px) {
  .help-grid {
    grid-template-columns: 1fr;
  }
  .help-options {
    padding: 1.2rem;
  }
  .help-title {
    font-size: 1.3rem;
  }
  .help-description {
    font-size: 0.9rem;
  }
}
</pre></body></html>