body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
  color: #f8fafc;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 40px; /* Ekran daralınca içerik sıkışmasın */
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 800px; /* Genişlik artırıldı */
  padding: 40px;
  border-radius: 16px;
}

h1 {
  font-size: 3.2em;
  margin: 20px 0;
  color: #38bdf8;
}

.desc {
  font-size: 1.2em;
  color: #cbd5e1;
  margin-bottom: 40px;
}

.footer {
  font-size: 1em;
  color: #94a3b8;
}

.wrench-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  animation: rotate 6s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
