/* 404-style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.content {
  text-align: center;
  max-width: 500px;
}

.error-code {
  font-size: 6rem;
  font-weight: 700;
  color: #dc3545;
  margin-bottom: 1rem;
  line-height: 1;
}

.title {
  font-size: 2rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 1rem;
}

.message {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.redirect-info {
  background-color: #e9ecef;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #007bff;
}

.redirect-info p {
  margin: 0;
  color: #495057;
}

#countdown {
  font-weight: 600;
  color: #007bff;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.btn:active {
  transform: translateY(1px);
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  .error-code {
    font-size: 4rem;
  }
  
  .title {
    font-size: 1.5rem;
  }
  
  .message {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .error-code {
    font-size: 3rem;
  }
  
  .title {
    font-size: 1.25rem;
  }
  
  .redirect-info {
    padding: 0.75rem;
  }
  
  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }
}