
body {
  margin: 0;
  background: linear-gradient(to bottom, #0f1c2e, #1f2f46);
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  padding: 20px;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}


.logo {
  width: 480px;
  max-width: 90%;
  margin-bottom: 30px;
  animation: bounce 2s infinite;
  transition: transform 0.3s ease ;
}

.title {
  font-size: 2em;
  margin-bottom: 10px;
}

.highlight {
  color: #ff7300;
  font-weight: bold;
}

.subtitle {
  font-size: 1.2em;
  color: #ccc;
}

.hammer {
  margin: 40px auto 0;
  width: 80px;
  height: 80px;
  background: url('https://cdn-icons-png.flaticon.com/512/69/69881.png') no-repeat center;
  background-size: contain;
  animation: bounce 2s infinite;
}

@keyframes pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
