/* Import font eye-catching dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

/* Background */
body {
  margin: 0;
  font-family: 'Fredoka One', sans-serif;
  background: linear-gradient(135deg, #FFD54F, #FF8A65);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Container utama */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Logo lebih besar + animasi masuk stabil */
.logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.5);
  animation: logoEntrance 1s forwards;
}

/* Subjudul + animasi slide-up */
.subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: #2c2c2c;
  opacity: 0;
  transform: translateY(50px);
  animation: subtitleEntrance 1s forwards;
  animation-delay: 1s;
}

/* Footer */
footer {
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
}

/* Animasi logo stabil (fade + scale) */
@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.2);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animasi subjudul (slide-up) */
@keyframes subtitleEntrance {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}