@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

html, body {
  height: 100%;
  margin: 0;
}

body {
  background-color: #f8f9fa;
  font-family: 'Inter', sans-serif;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  max-width: 600px;
  width: 90%;
  text-align: center;
  margin: 1rem;
}

.error-icon {
  color: #399999;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h1 {
  color: #399999;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.error-message {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.error-code {
  display: inline-block;
  background: rgba(57, 153, 153, 0.1);
  color: #399999;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: monospace;
  margin: 1rem 0;
}

.steps-container {
  text-align: left;
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
}

.step {
  color: #555;
  font-size: 1rem;
  margin: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.step::before {
  content: "•";
  color: #399999;
  position: absolute;
  left: 0.5rem;
}

.support-text {
  color: #666;
  font-size: 1rem;
  margin: 1.5rem 0;
}

.support-link {
  color: #399999;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.support-link:hover {
  color: #2d7373;
}

.return-button {
  background: #399999;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 1rem;
}

.return-button:hover {
  background: #2d7373;
}

@media (max-width: 480px) {
  .error-container {
    padding: 1.5rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  .error-message {
    font-size: 1rem;
  }
}
