html, body {
  margin: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}
.background-image {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('BG.jpg') center center / cover no-repeat;
  z-index: -1;
  animation: zoomBg 10s ease-in-out infinite alternate;
}
@keyframes zoomBg {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}
.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}
.logo {
  position: absolute;
  top: 10vh;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  max-width: 80%;
  z-index: 3;
  animation: float 4s ease-in-out infinite alternate;
}
.speech-bubble {
  position: absolute;
  top: 30vh;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.60), rgba(255, 232, 181, 0.60));
  padding: 20px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  width: 75%;
  text-align: center;
  z-index: 2;
  box-shadow: 0 0 10px #f4d03f, 0 0 20px #f4d03f;
}
.speech-bubble .countdown {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #d00000;
}
.cta-button {
  position: absolute;
  top: 65vh;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #b30000;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 2;
  box-shadow: 0 0 12px #ff4d4d, 0 0 25px #ff4d4d;
}
.cta-button:hover {
  background: #f1f1f1;
}
.character {
  position: absolute;
  bottom: 0;
  width: 200px;
  z-index: 4;
  opacity: 0;
}
.character img {
  width: 100%;
  animation: bop 1s ease-in-out infinite alternate;
}
.character1 { right: -250px; }
.character2 { left: -250px; }

@keyframes float {
  0% { transform: translate(-50%, 0); }
  100% { transform: translate(-50%, -25px); }
}
@keyframes bop {
  0% { transform: translateY(0) rotate(-5deg); }
  100% { transform: translateY(-30px) rotate(5deg); }
}
.blink {
  animation: blinkAnim 1.5s step-start infinite;
  color: #d00000;
  font-weight: bold;
}
@keyframes blinkAnim {
  50% { opacity: 0; }
}
@media (max-width: 480px) {
  .container { max-width: 100vw; padding: 0; }
  .speech-bubble { font-size: 0.9rem; padding: 15px 30px; }
  .cta-button { font-size: 1rem; padding: 12px 24px; }
  .character { width: 150px; }
}
