/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #fff;
  overflow-x: hidden;

}

.landing-container {
  width: 100%;
  max-width: 480px;
  min-height: 100dvh;
  margin: 0 auto;
  background: url("./images/banner-bg1.png") no-repeat center top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 20px 10px;
  position: relative;
}

/* Logo */
.header {
  margin: 10px 0;
}

.logo img {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Offer */
.offer-section {
  margin: 10px 0 20px;
}

.offer-highlight {
  font-size: 80px;
  font-weight: 900;
  color: #ffd600;
  line-height: 1;
}

.offer-text {
  font-size: 70px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
}

.offer-text span {
  color: #ffd600;
}

/* Player */
.player-section {
  margin: 10px 0 20px;
}

.player-section img {
  width: 90%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
}

/* WhatsApp Button */
.action-section {
  margin: 25px 0;
}

.whatsapp-btn {
  background: #02b00f;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn img {
  width: 30px;
  height: 30px;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.footer p {
  font-size: 13px;
  background: #669b43;
  padding: 8px 5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 10px auto 0;
}

/* Small phones (up to 360px) */
@media (max-width: 360px) {
  .logo img {
    width: 180px;
  }

  .offer-highlight {
    font-size: 60px;
  }

  .offer-text {
    font-size: 28px;
  }

  .whatsapp-btn {
    font-size: 18px;
    padding: 10px 20px;
  }

  .whatsapp-btn img {
    width: 26px;
    height: 26px;
  }
}

/* Medium devices (tablets up to 768px) */
@media (min-width: 361px) and (max-width: 768px) {
  .logo img {
    width: 200px;
  }

  .offer-highlight {
    font-size: 68px;
  }

  .offer-text {
    font-size: 45px;
  }

  .whatsapp-btn {
    font-size: 20px;
    padding: 12px 24px;
  }
}

/* Large devices (desktop & above) */
@media (min-width: 769px) {
  .landing-container {
    max-width: 600px;
  }

  .offer-highlight {
    font-size: 120px;

  }

  .offer-text {
    font-size: 70px;
  }

  .whatsapp-btn {
    font-size: 22px;
    padding: 14px 28px;
  }
}

@media (min-width: 1024px) and (max-width: 1300px) {
  .landing-container {
    max-width: 360px;
  }

  .logo img {
    width: 200px;
  }

  .offer-highlight {
    font-size: 60px;
  }

  .offer-text {
    font-size: 30px;
  }

  .whatsapp-btn {
    font-size: 16px;
    padding: 10px 15px;
  }

  .player-section img {
    max-width: 500px;
  }

  .footer-logo img {
    max-width: 180px;
  }
}