/* 404 Page Styles */
.not-found-content {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.not-found-title {
  font-size: 8rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--header-accent, #8b5cf6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.not-found-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 1rem 0;
}

.not-found-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.not-found-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.button {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.button-primary {
  background: var(--header-accent, #8b5cf6);
  color: #ffffff;
}

.button-primary:hover {
  background: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.not-found-links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.not-found-links p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-weight: 500;
}

.not-found-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.not-found-links li {
  margin: 0;
}

.not-found-links a {
  color: var(--header-accent, #8b5cf6);
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 6px;
  transition: all 0.2s;
  display: inline-block;
}

.not-found-links a:hover {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
  text-decoration: none;
}

@media (max-width: 768px) {
  .not-found-content {
    padding: 2rem 1rem;
  }
  
  .not-found-title {
    font-size: 5rem;
  }
  
  .not-found-subtitle {
    font-size: 1.5rem;
  }
  
  .not-found-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .not-found-content {
    padding: 1.5rem 0.75rem;
  }
  
  .not-found-title {
    font-size: 4rem;
  }
  
  .not-found-subtitle {
    font-size: 1.25rem;
    margin: 0.75rem 0;
  }
  
  .not-found-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .not-found-actions {
    margin-bottom: 2rem;
    gap: 0.75rem;
  }
  
  .button {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    min-height: 44px;
  }
  
  .not-found-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  
  .not-found-links ul {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .not-found-links a {
    width: 100%;
    text-align: center;
    padding: 0.625rem 1rem;
  }
}

@media (max-width: 320px) {
  .not-found-content {
    padding: 1.25rem 0.5rem;
  }
  
  .not-found-title {
    font-size: 3rem;
  }
  
  .not-found-subtitle {
    font-size: 1.1rem;
  }
  
  .not-found-text {
    font-size: 0.9rem;
  }
  
  .button {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}
