@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    color: #fff;
    background: rgb(0,133,76);
    background: radial-gradient(circle, rgba(0,133,76,1) 0%, rgba(10,43,29,1) 80%);
    line-height: 1.6;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: #122e2c;
  }
  
  .navbar {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
    position: sticky; 
    top: 0; 
    z-index: 1000; /* Ensure it stays above other content */
}

.logo img {
    height: 50px; /* Adjust as needed */
    padding-left: 30px;
}

/* Make the burger menu visible on all devices */
.burger-menu {
    font-size: 30px;
    color: white;
    cursor: pointer;
    display: block; /* Always display the burger menu */
    padding-right: 30px;
}

/* Style for the navigation links container */
.nav-links {
    list-style: none;
    display: none; /* Hide the menu by default */
    flex-direction: column;
    position: absolute;
    background-color: #99cc33;
    width: 150px; /* Set a fixed width for the small container */
    top: 60px; /* Adjust based on your navbar height */
    right: 20px; /* Adjust for positioning on the right */
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Add a shadow for a popup effect */
    transition: all 0.3s ease;
}

/* Show the menu when the "active" class is added */
.nav-links.active {
    display: flex; /* Show the menu */
}

/* Style the nav links */
.nav-links li {
    margin: 10px 0; /* Add space between menu items */
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}


@media (max-width: 768px) {
    .burger-menu {
        display: block; /* Show on smaller screens */
    }
    
    .nav-links {
        display: none; /* Hide menu by default */
        flex-direction: column;
        position: absolute;
        background-color: #99cc33;
        width: 100%;
        top: 60px; /* Adjust based on your navbar height */
        left: 0;
    }
    
    .nav-links.active {
        display: flex; /* Show when active */
    }
}
  
  .main-content {
    padding: 2rem;
    text-align: center;
    background: rgb(0,133,76);
    background: radial-gradient(circle, rgba(0,133,76,1) 0%, rgba(10,43,29,1) 80%);
  }
  
  .hero-section {
    margin-bottom: 2rem;
    text-align: left; 
    padding: 20px;
    width: 40rem;
    

  }

  .banner {
    position: absolute;
    top: 4.6rem;
    left: 40rem;
  }

  .banner img{
    width: 48rem;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .hero-section p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-section .highlight {
    color: #99cc33;
    font-size: 8rem;
    font-weight: bold;
  }
  
  .play-btn {
    background: rgb(231,255,184);
    background: linear-gradient(180deg, rgba(231,255,184,1) 0%, rgba(255,255,255,1) 80%);
    color: #122e2c;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1.5rem;
    margin-top: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 10px;
  }
  
  .subscribe-section {
    padding: 50px 0 50px 0;
    background: url('background.jpg') no-repeat center center;
    background-size: cover;
    color: white; /* Adjust text color for better visibility */
    text-align: center;
    display: flex;
    justify-content: space-around;
    /* margin: 2rem 0; */
  }
  
  .card {
    background-color: #99cc33;
    width: 1.5rem;
    height: 15.5rem;
    border-radius: 10px;
    width: 20%;
    color: #000;
    padding: 20px;
    
  }

  .card img {
    padding: 5px;
    width: 60px;
  }
  
  .prizes-section {
    background: rgb(0,133,76);
    background: radial-gradient(circle, rgba(0,133,76,1) 0%, rgba(10,43,29,1) 80%);
    text-align: center;
    padding: 2rem;
    /* margin-top: 2rem; */
    
  }
  
  .prizes-section p {
    color: #ccff66;
    font-size: 14px;
    
    
  }

  .prizes-section h1 {
    font-size: 45px;
    text-transform: uppercase;

  }

  .prizes {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
  }
  
  .prize-card {
    background-color: #000;
    /* padding: 1rem; */
    border-radius: 10px;
    width: 20%;
    text-align: center;
  }
  
  .prize-card img {
    width: 200px;
    padding: 20px;
    height: auto;
    background:
    /* margin-bottom: 1rem; */
  }
  
  .prize-card .durations{
    background: rgb(204,255,102);
    background: linear-gradient(157deg, rgba(204,255,102,1) 0%, rgba(100,150,0,1) 80%);
    width: 100%;
    color: #000;
  }

  .prize-card .num-wins img{
    width: 60px;
  }

  .prize-card .num-wins{
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #fff;
  }

  .dur{
    padding: 10px;
  }

  .dur1{
    padding: 10px;
    border-left-style: solid;
    border-top-color: #fff;
  }

  .footer {
    background-color: #000;
    text-align: center;
    padding: 1rem;
    /* margin-top: 2rem; */
  }

  /* Media Query for the Smallest Mobile Screens (up to 320px) */
@media (max-width: 320px) {
  .logo img {
      height: 25px;
  }

  .navbar {
      padding: 5px;
  }

  .burger-menu {
      font-size: 22px;
  }

  .hero-section {
      padding: 5px;
      width: 100%;
      text-align: center;
  }

  .hero-section .highlight {
    font-size: 2.5rem; /* Adjust highlight font size */
}

.banner {
  display: none;
}

.hero-section h1 {
      font-size: 2rem;
  }

  .hero-section p {
      font-size: 0.5rem;
  }

  .play-btn {
      font-size: 0.9rem;
      padding: 0.4rem 0.8rem;
  }

  .subscribe-section {
      flex-direction: column;
      align-items: center;
  }

  .card {
      width: 95%;
      margin: 10px 0;
  }

  .prizes {
      flex-direction: column;
  }

  .prize-card {
      width: 95%;
      margin: 10px 0;
  }

  .hero-section {
    padding: 5px;
    width: 100%;
    text-align: center;
}

/* Same adjustments for smaller screens */
.banner {
    display: block;
    margin-top: 10px; /* Adjust spacing as needed */
    position: relative;
    left: 0;
    width: 100%;
}

.banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

}

/* Media Query for Other Mobile Devices (up to 768px) */
@media (max-width: 768px) {
  .logo img {
      height: 35px;
  }

  .burger-menu {
      font-size: 26px;
  }

  .hero-section {
      padding: 10px;
      width: 100%;
      text-align: center;
  }

  .hero-section .highlight {
    font-size: 2.5rem; /* Adjust highlight font size */
}

.banner{
  display: none;
}

  .hero-section h1 {
      font-size: 1.5rem;
  }

  .hero-section p {
      font-size: 1rem;
  }

  .play-btn {
      font-size: 1rem;
      padding: 0.6rem 1.2rem;
  }

  .subscribe-section {
      flex-direction: column;
      align-items: center;
  }

  .card {
      width: 90%;
      margin: 10px auto;
  }

  .prizes {
      flex-direction: column;
  }

  .prize-card {
      width: 90%;
      margin: 10px auto;
  }

  .hero-section {
    padding: 10px;
    width: 100%;
    text-align: center;
}

/* Make the banner visible and position it below the hero section */
.banner {
    display: block;
    margin-top: 20px; /* Add some space above the banner */
    position: relative; /* Reset position to default */
    left: 0; /* Align it properly */
    width: 100%; /* Make it responsive */
}

.banner img {
    width: 100%; /* Make the image responsive */
    max-width: 100%; /* Prevent overflow */
    height: auto; /* Maintain aspect ratio */
}
}

  @media (max-width: 430px) {
    .navbar {
        width: 100%; /* Full width for smaller screens */
    }

    .logo{
        width: 20px;
    }

    .nav-links li {
        margin: 8px 0; /* Reduce space between items */
    }

    .burger-menu {
        font-size: 26px; /* Slightly smaller for better fit */
    }
    .hero-section {
      padding: 10px;
      width: 100%;
      text-align: center;
  }

  .banner{
    display: none;
  }

  .hero-section h1 {
      font-size: 2rem; /* Medium font size */
  }

  .hero-section p {
      font-size: 1rem; /* Medium font size */
  }

  .hero-section .highlight {
      font-size: 4rem; /* Adjust highlight font size */
  }

  .play-btn {
      font-size: 1rem;
      padding: 0.6rem 1.2rem;
  }

    .card {
        
        width: 80%;
        
      }

      .subscribe-section {
        
        text-align: center;
        display: flex;
        flex-direction: column;
        /* margin: 2rem 0; */
      }

      .main-content {
        width: 100%;
        padding: 2rem;
        text-align: center;
        background: rgb(0,133,76);
        background: radial-gradient(circle, rgba(0,133,76,1) 0%, rgba(10,43,29,1) 80%);
      }
      
}

@media (max-width: 820px) {
  .logo img {
      height: 30px; /* Adjust logo size for smaller screens */
  }

  .navbar {
      padding: 8px; /* Reduce navbar padding */
  }

  .burger-menu {
      font-size: 28px; /* Adjust burger menu size */
  }

  .hero-section {
      padding: 10px;
      width: 100%; /* Full width for hero section */
      text-align: center; /* Center text on smaller screens */
  }

  .hero-section h1 {
      font-size: 2.5rem; /* Adjust hero section heading size */
  }

  .hero-section p {
      font-size: 1.2rem; /* Adjust paragraph font size */
  }

  .play-btn {
      font-size: 1.2rem; /* Adjust play button font size */
      padding: 0.8rem 1.6rem; /* Adjust button padding */
  }

  .subscribe-section {
      flex-direction: column;
      align-items: center; /* Center align items */
  }

  .card {
      width: 90%; /* Card width for smaller screens */
      margin: 10px auto; /* Center card */
  }

  .prizes {
      flex-direction: column; /* Stack prizes vertically */
  }

  .prize-card {
      width: 90%; /* Prize card width for smaller screens */
      margin: 10px auto; /* Center prize card */
  }
}


@media (max-width: 853px) {
  .logo img {
      height: 30px; /* Adjust logo size for smaller screens */
  }

  .navbar {
      padding: 8px; /* Reduce navbar padding */
  }

  .burger-menu {
      font-size: 28px; /* Adjust burger menu size */
  }

  .hero-section {
      padding: 10px;
      width: 100%; /* Full width for hero section */
      text-align: center; /* Center text on smaller screens */
  }

  .hero-section h1 {
      font-size: 2.5rem; /* Adjust hero section heading size */
  }

  .hero-section p {
      font-size: 1.2rem; /* Adjust paragraph font size */
  }

  .play-btn {
      font-size: 1.2rem; /* Adjust play button font size */
      padding: 0.8rem 1.6rem; /* Adjust button padding */
  }

  .subscribe-section {
      flex-direction: column;
      align-items: center; /* Center align items */
  }

  .card {
      width: 90%; /* Card width for smaller screens */
      margin: 10px auto; /* Center card */
  }

  .card{
    width: 90%; /* Card width for smaller screens */
    margin: 10px auto; /* Center card */
}

  .prizes {
      flex-direction: column; /* Stack prizes vertically */
  }

  .prize-card img {
      width: 90%; /* Prize card width for smaller screens */
      margin: 10px auto; /* Center prize card */
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  z-index: 1001;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

#savePhoneNumber {
  background: rgb(231,255,184);
  background: linear-gradient(180deg, rgba(231,255,184,1) 0%, rgba(255,255,255,1) 80%);
  color: #122e2c;
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  font-size: 1.5rem;
  margin-top: 1rem;
  text-transform: uppercase;
  font-weight: 800;
  border-radius: 10px;
}

#phoneNumber::placeholder {
  color: #888; /* Placeholder text color */
  font-style: italic; /* Make the placeholder text italic */
  opacity: 0.8; /* Adjust the opacity */
}


/* Show Modal */
.modal.show {
  display: block;
}

.overlay.show {
  display: block;
}


