.not-found-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  min-height: 70vh;
  background-color: #fafafa;
}

.not-found-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.not-found-code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--weatherliteh);
  margin-bottom: 10px;
}

.not-found-title {
  font-size: 1.75rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.not-found-text {
  color: #666;
  font-size: 1rem;
  margin-bottom: 30px;
}

.not-found-button {
  display: inline-block;
  padding: 12px 24px;
  background: var(--weatherliteh);
  color: var(--weatherlitep);
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s ease;
}
.not-found-button:hover {
  background: #c2185b;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .not-found-code {
    font-size: 4rem;
  }
  .not-found-title {
    font-size: 1.5rem;
  }
}
