* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Syne', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #171717;
  color: white;
}


.container {
  background: #252525;
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 700px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  animation: fadeScale 1.2s ease forwards;
}

@keyframes fadeScale {
  0% {opacity: 0; transform: scale(0.9);}
  100% {opacity: 1; transform: scale(1);}
}

.logo {
  width: 100px;
  margin-bottom: 20px;
  border-radius: 15px;
  animation: logoBounce 2s infinite;
}

@keyframes logoBounce {
  0%, 100% {transform: translateY(0);}
  50% {transform: translateY(-8px);}
}

h1 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

p {
  font-size: 1em;
  margin-bottom: 30px;
}


/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 1.5em;
  }
}
