/* Not Found Page Specific Styles */

.not-found-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
}

.not-found-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
}

.not-found-icon {
  font-size: 6rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.not-found-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.not-found-message {
  font-size: 1.25rem;
  color: #7f8c8d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.home-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.home-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
}

.error-code {
  font-size: 1rem;
  color: #95a5a6;
  margin-top: 2rem;
  font-family: monospace;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
  .not-found-card {
    padding: 2rem 1.5rem;
  }

  .not-found-icon {
    font-size: 4rem;
  }

  .not-found-title {
    font-size: 2rem;
  }

  .not-found-message {
    font-size: 1.1rem;
  }

  .home-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .not-found-container {
    padding: 1rem;
  }

  .not-found-card {
    padding: 1.5rem 1rem;
  }

  .not-found-icon {
    font-size: 3rem;
  }

  .not-found-title {
    font-size: 1.75rem;
  }

  .not-found-message {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .home-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
  }
}
