body,
  html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
  }

  .hero {
    position: relative;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: url(../images/bg.webp) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
  }

  .heading1 {
    font-family: 'Poppins', sans-serif; /* Modern and clean font */
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-top:-80px;
    margin-bottom: 0;
    text-transform: uppercase;
    text-align: center;
  }

  h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 40px;
  }

  .paragraph,
  .counter {
    font-family: 'Open Sans', sans-serif;
    font-size:1.2rem;
    color: rgb(196, 192, 192);
    margin-top: 20px;
    
   
   
  }

  #countdown,  #countdown2{
    font-family: 'Oswald', sans-serif;
    color:rgb(3, 3, 3);
    margin-top: -15px;
    margin-bottom: -15px;
  }

  #countdown{
   font-size: 2rem;
  }

  #countdown2{
   font-size: 1.5rem;
  }

  .points {
    color: #fff;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack vertically */
    padding: 20px;
    }
    

  .points .fa-solid {
    color:rgb(215, 234, 5);
  }

 .points ul {
    list-style-type: none;
    margin-top: 15px;
    padding: 0;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .points ul li {
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
  }

 

  .button1 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -80px;
  }

  .button1 a, .button2 a {
    font-family: 'Bebas Neue', sans-serif;
    padding: 15px 30px;
    background: #FFD700;
    color: #000;
    font-size: 40px;
    line-height: 48px;
    border: none;
    cursor: pointer;
    animation: buttonAnimation 4.5s infinite;
    text-decoration: none;
  }

  .button2 a {
    display: inline-block;
    border-radius: 5px;
  }

  .button1 a {
    padding: 15px 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .button1 a:hover,
  .button2 a:hover {
    animation-play-state: paused;
  }

  .button1 {
    margin-top: 0px;
    margin-bottom: 80px;
}

  @keyframes buttonAnimation {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.2);
    }

    100% {
      transform: scale(1);
    }
  }

  /*Mobile Responsive*/
  @media (max-width: 480px) {
    .heading1 {
      font-size: 1.8rem;
    }

    h4 {
      font-size: 1.5rem;
    }

    .paragraph {
      font-size: 20px;
    }

    .button2 a {
      font-size: 22px;
      padding: 10px 40px;
    }

    .button1 a {
      font-size: 20px;
      padding: 5px 0;
    }


    .counter {
      font-size: 1.4rem;
      margin-top: 15px;
    }
  
    
   
  }
  
  /* New styles for arranging elements */
  .content-wrapper {
    display: flex;
    align-items: center;
  }

  .counter {
   
    text-align: center;
  }

  .points {
    flex: 2;
  }

  .button4 {
    
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 10rem;
    color: white;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    margin-top: 3rem;
  }
  
  .mgtp{
    margin-top: -10px;
  }
.bttnmg{
  margin-top: -15px;
}



@media only screen and (max-width: 600px) {
  .glowing-btn{
    font-size: 1em;
  }
}
@-webkit-keyframes stripe-slide {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes stripe-slide {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.btn {
  font-size: 22px;
  overflow: visible;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: normal;
  cursor: pointer;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  padding: 16px 20px 16px;
  background-color: rgb(1, 0, 0);
  color: rgb(255, 255, 255);
  border: 2px solid rgb(255, 255, 255);
  border-radius: 6px;
  margin-bottom: 16px;
  transition: all 0.5s ease;
  animation: buttonAnimation 2s infinite;
}


@keyframes buttonAnimation {
  0% {
    transform: scale(1);
    background-color: rgb(238, 255, 0);
    color: black;
  }
  25% {
    transform: scale(1.05);
    background-color: rgb(0, 148, 168);
    color: white;
  }
  50% {
    transform: scale(1);
    background-color: rgb(0, 0, 0);
    color: white;
  }
  75% {
    transform: scale(1.05);
    background-color: rgb(165, 0, 130);
    color: white;
  }
  100% {
    transform: scale(1);
    background-color: rgb(238, 255, 0);
    color: black;
  }
}


.clr{
  color: rgb(47, 232, 245);
}

.h2{
 
  color:rgb(255, 217, 0);
  margin-bottom: -40px;
  font-size: 18px;
}

.timer {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 3px;
 
  border-radius: 1rem;
  animation: pulse 1s infinite alternate;
 
}


@keyframes pulse {
  from {
    transform: scale(1.9);
    background-color: rgb(255, 0, 0);
  }
  to {
    transform: scale(2.2);
    background-color: rgb(255, 238, 0);
  }
}

/* Disclaimer styles (mobile-first, responsive) */
.disclaimer {
  max-width: 920px;
  width: calc(100% - 32px);
  margin: 25px auto 0 auto;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1.45;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Slightly larger text and padding on tablet/desktop */
@media (min-width: 600px) {
  .disclaimer {
    font-size: 10px;
    padding: 12px 18px;
  }
}

@media (min-width: 992px) {
  .disclaimer {
    font-size: 10px;
    padding: 14px 20px;
  }
}
.border{
  border: solid white 1px;
  padding: 5px 2px 5px 2px;
  background-color: #ff0000;
}

/* ========================
   START: Footer Promotional Section
   ======================== */
.footer-promo {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000; /* Plain black background */
  color: #fff; /* White text */
  text-align: center;
  padding: 12px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-top: 2px solid #ffd900; /* Simple border */
  z-index: 1000;
}

/* Links inside footer */
.footer-promo a {
  color: #2fe8f5; /* Link color */
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
  padding: 4px 12px;
  border-radius: 20px;
  background: transparent;
  border: none;
}

/* Adjust body to account for fixed footer */
body {
  padding-bottom: 60px;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
  .footer-promo {
    font-size: 12px;
    padding: 10px 15px;
  }
  
  .footer-promo a {
    margin-left: 5px;
    padding: 3px 8px;
    font-size: 12px;
  }
}
/* ========================
   END: Footer Promotional Section
   ======================== */