body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a, #111111);
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.container {
  text-align: center;
  animation: fadeIn 1.4s ease;
}

.icon {
  font-size: 70px;
  animation: bounce 1.6s infinite;
}

h1 {
  font-size: 40px;
  margin-top: 10px;
  letter-spacing: 1px;
}

p {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 10px;
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}