* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.background {
  position: relative;
  width: 550px;
  height: 100%;
  background-color: red;
  margin: auto;
}

.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 100%;
  max-width: 250px;
  height: 100%;
  object-fit: contain;
}

.title {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title img {
  width: 100%;
  max-width: 400px;
  height: 100%;
  object-fit: contain;
}

.downloads {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.downloads img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: zoomin 2s ease-in-out infinite;
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.finger {
  position: absolute;
  top: 25%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.finger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pointer {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.pointer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pointer img:nth-child(1) {
  width: 200px;
  height: 200px;
}

.pointer img:nth-child(2) {
  width: 200px;
  height: 200px;
}

.models {
  position: absolute;
  top: 58%;
  /* move lower if needed */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  z-index: 2;
}

.models img {
  /* tweak size */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.baby {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.baby img {
  width: 100%;
  max-width: 550px;
  height: 100%;
  object-fit: cover;
}

.light-effect {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  z-index: 2;
}

.light-effect img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.promotions {
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  overflow: hidden;
}

.promotions::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -150%;
  }

  20% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

.promotions img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prize {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.prize img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bank {
  position: absolute;
  top: 92%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.bank img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.behide {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.behide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= Base (Desktop) ================= */
/* keep your existing code above */

/* ================= Tablet & Small Screens ================= */
@media (max-width: 768px) {

  /* Add/Update these: */
  .background {
    width: 100%;
    height: 100%;
  }

  .logo {
    top: 6%;
    width: 100%;
  }

  .logo img {
    max-width: 250px;
  }

  .behide {
    top: 64%;
    width: 70%;
    /* ensure z-index is correct relative to others */
  }

  .downloads {
    top: 20%;
    width: 70%;
  }

  .baby {
    top: 55%;
    width: 100%;
    max-width: 500px;
    flex-direction: row;
    gap: 10px;
  }

  .baby img {
    max-width: 450px;
  }

  .models {
    top: 53%;
    width: 75%;
    z-index: 2;
  }

  .light-effect {
    position: absolute;
    top: 55%;
    width: 200px;
    z-index: 80;
  }

  /* Text overlays */
  .promotions {
    top: 68%;
    /* Adjust to sit on chest */
    width: 50%;
  }

  .prize {
    top: 80%;
    /* Adjust to sit below text */
    width: 50%;
  }

  /* Bank & Footer needed */
  .bank {
    top: 88%;
    width: 60%;
  }

  .footer {
    /* Probably bottom mascots */
    top: 90%;
    /* or similar */
    width: 100%;
  }
}

/* ================= Phones ================= */
@media (max-width: 480px) {
  /* ... existing styles ... */

  /* Add/Update these: */
  .logo {
    top: 6%;
    width: 100%;
  }

  .logo img {
    max-width: 250px;
  }

  .behide {
    top: 64%;
    width: 70%;
    /* ensure z-index is correct relative to others */
  }

  .downloads {
    top: 20%;
    width: 70%;
  }

  .baby {
    top: 55%;
    width: 100%;
    max-width: 500px;
    flex-direction: row;
    gap: 10px;
  }

  .baby img {
    max-width: 450px;
  }

  .models {
    top: 53%;
    width: 75%;
    z-index: 2;
  }

  .light-effect {
    position: absolute;
    top: 55%;
    width: 200px;
    z-index: 80;
  }

  /* Text overlays */
  .promotions {
    top: 68%;
    /* Adjust to sit on chest */
    width: 50%;
  }

  .prize {
    top: 80%;
    /* Adjust to sit below text */
    width: 50%;
  }

  /* Bank & Footer needed */
  .bank {
    top: 88%;
    width: 60%;
  }

  .footer {
    /* Probably bottom mascots */
    top: 90%;
    /* or similar */
    width: 100%;
  }
}

/* ================= Phones ================= */
@media (max-width: 360px) {

  /* Add/Update these: */
  .logo {
    top: 6%;
    width: 100%;
  }

  .logo img {
    max-width: 250px;
  }

  .behide {
    top: 64%;
    width: 70%;
    /* ensure z-index is correct relative to others */
  }

  .downloads {
    top: 20%;
    width: 70%;
  }

  .baby {
    top: 55%;
    width: 100%;
    max-width: 500px;
    flex-direction: row;
    gap: 10px;
  }

  .baby img {
    max-width: 450px;
  }

  .models {
    top: 53%;
    width: 75%;
    z-index: 2;
  }

  .light-effect {
    position: absolute;
    top: 55%;
    width: 200px;
    z-index: 80;
  }

  /* Text overlays */
  .promotions {
    top: 68%;
    /* Adjust to sit on chest */
    width: 50%;
  }

  .prize {
    top: 80%;
    /* Adjust to sit below text */
    width: 50%;
  }

  /* Bank & Footer needed */
  .bank {
    top: 88%;
    width: 60%;
  }

  .footer {
    /* Probably bottom mascots */
    top: 90%;
    /* or similar */
    width: 100%;
  }
}