    /* Global Styles */
    body {
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      padding: 0;
    }
    
    .nav.desktop{
        margin-left:109px;
    }

    .container{
      max-width:1336px;
    }
   

    /* Header Styles */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: background-color 0.3s ease; /* Smooth transition on scroll */
      /*padding: 32px 20px;*/
      height: auto;
      background:transparent;
    }

    header.scrolled {
      background: rgba(255, 255, 255, 0.96); /* Solid black when scrolled */
    }





    /* Top Header */

    .top-header{
      background: #E10600;
      color: #fff;
      padding: 12px 0;
      height: 42px;
      text-align: center;
      font-size: 14px;
    }

    /* Bottom Header */

    .bottom-header{
      /*background:#fff;*/
      width: 100%;
      z-index: 1000;
      transition: background-color 0.3s ease; /* Smooth transition on scroll */
      padding: 8px 20px;
      height: 73px;
      box-shadow: 1px 2px 8px #000000;
    }

    /* Remove underline and set white color for navigation links */


    .logo{
      margin:0;
    }

    .logo img{
      width:71px;
      height:34px;  
    }

    .banner .logo{
      margin-top: 110px;
      margin-bottom:15px;
    }

    .list-unstyled {
        margin: 14px 0 0 0;
    }




    /********************************************************************** Header ***********************/
      .header-inner{
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 16px 24px;
        background: transparent;
        position: relative;
        z-index: 1000;
        max-width: 1366px;
        width: 100%;
        margin: 0 auto;
      }
      .logo { font-weight: bold; font-size: 20px; }

      /* Desktop nav */
      .nav.desktop { display: flex; gap:20px; justify-self:center; }
      .nav.desktop a { text-decoration:none; color:#333; }

    header.scrolled .nav.desktop a{
      color:#000;
    }

    header.scrolled .nav.desktop a:hover{
      color:#E10600;
    }


    header.scrolled .btn-red.border-40{
      color: #E10600;
      border: 2px solid #E10600;
    }


    header.scrolled  .btn-free-enter:hover, header.scrolled .btn-red:hover {
        color: #fff;
        background-color: #E10600;
        color: #fff !important;
    }
  
    .nav.desktop a{
      color:#fff;
      font-size:13px;
    }

    .nav.desktop a:hover{
      color:#E10600;
    }

      .cta { border: none; background:transparent; color:white; }
      .burger { display:none; font-size:26px; background:none; border:none; cursor:pointer; }


      /***************************************************************** end of Header ***********************/


    header.scrolled nav a{
      color:#000;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      transition:all 0.3s ease-in-out;
      -moz-transition:all 0.3s ease-in-out;
      -webkit-transition:all 0.3s ease-in-out;


    }

    nav a:hover {
      color: #E10600;
      text-decoration: none;
    }

    nav ul.active {
      display: flex;
    }


    nav ul li.mx-3:last-child {
        margin: 30px 0 0 0;
    }



/* Hero Banner Video */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  /*margin-top: 42px;*/
  margin-top:18px;
}



/* ---------- CENTER CONTENT ---------- */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;

  /* animation default */
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.8s ease;
}

.hero-content.active {
  transform: translateY(0);
  opacity: 1;
}

.content-inner {
  max-width: 720px;
}

/* Logo */
.hero-logo img {
  max-width: 140px;
  margin-bottom: 20px;
}

/* Subtext */
.subtext {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Main Text */
.main-text {
  display: inline-block;
  background: #fff;
  color: #d40000;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 18px;
  margin-bottom: 20px;
}

/* Description */
.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Button */
.btn-member {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-member:hover {
  background: #d40000;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- OTHER CONTENT ---------- */
.section {
  height: 120vh;
  background: #111;
  padding: 60px 20px;
}


/* end of Hero Banner Video */



    /********************************************** Mega Rewards ************************************/





/* CARD */
.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 331px;
  cursor: pointer;
}

/* IMAGE */
.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* OVERLAY */
.feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px 14px;
  color: #fff;
}

/* GRADIENT LAYERS */
.overlay-dark,
.overlay-red {
  position: absolute;
  inset: 0;
  transition: opacity 0.35s ease;
}

.overlay-dark {
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.15));
  opacity: 1;
}

.overlay-red {
  background: linear-gradient(to top, rgba(200,0,0,0.95), rgba(200,0,0,0));
  opacity: 0;
}

/* CONTENT */
.feature-content {
  position: relative;
  z-index: 2;
  transform: translateY(28px);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

.feature-title {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 15px;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.9;
  font-family: 'Montserrat', sans-serif;
  height:36px;
}



.margin-top-l{
  margin-top:40px!important;
}
.margin-bottom-l{
  margin-bottom:40px!important;
}

/* HOVER / TAP */
.feature-card:hover img,
.feature-card.active img {
  transform: scale(1.1);
}

.feature-card:hover .overlay-red,
.feature-card.active .overlay-red {
  opacity: 1;
}

.feature-card:hover .overlay-dark,
.feature-card.active .overlay-dark {
  opacity: 0;
}

.feature-card:hover .feature-content,
.feature-card.active .feature-content {
  transform: translateY(-10px);
  /*transform: translateY(0);*/
}

.feature-card .feature-content{
  transform: translateY(-19px); 
  /*transform: translateY(0);*/
}
    

    /* Hero Section */
    .hero-section {
      position: relative;
      width: 100%;
      /*height: 914px;*/
      /*background-color: black;*/
      margin-top: 109px; /* Account for fixed header height */
    }

    /*.hero-section .slick-dots{
      display:none!important;
    }
*/

    .slick-dotted.slick-slider{
      margin-bottom:0;
    }

    .slick-slide {
      position: relative;
      height: 100%;
    }

    .slick-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slick-slide .slider-text {
      /*position: absolute;
      bottom: 14%;
      left:78px;
      transform: translateY(-50%);
      color: #E10600;
      z-index: 10;
      max-width: 100%;
      text-align: center;
      width: 42%;*/

      position: absolute;
          top: 50%;
          left: 25%;
          transform: translate(-50%, -50%);
          
          /*display: flex;*/
          flex-direction: column;
          align-items: center;
          gap: 15px;
          text-align: center;
          color: white;
    }

    .slider-text h2 {
      font-size: 43px;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
    }

    .slider-text.light h2{
      color:#fff;
    }

    .slider-text p {
      font-size: 14px;
      font-weight: 400;
      margin: 12px 0;
      display: block;
      position:relative;
      color:#fff;
      text-align:left;
    }

    .slider-text.light p{
      color:#fff;
    }





    img.slide-text-img {
        width: 520px!important;
    }

    /*.slider-text p:before{
      content: '';
      position: absolute;
      top: 0;
      left: -25px;
      width: 1px;
      height: 65px;
      background: #E10600;
      border: 2px solid #E10600;
    }*/

    /*.slick-dots{
      bottom: -45px!important;
    }

    .slick-dots li {
        width: 35px;
        height: 6px;
        margin: 0 5px;
    }

    .slick-dots li.slick-active button:before{
        opacity: 1;
        color: black;
        background: #E10600;
    }

    .slick-dots li button:before{
      background: #DBDBDB;
      width: 35px;
      height: 6px;
      border-radius: 19px;
      opacity:1;
      font-family:none;
      font-size:0;
    }*/


    .header-slider .slick-dots{
      display:none!important;
    }

    .header-slider .slick-prev,
    .header-slider .slick-next{
      display:none!important;
    }

    a.btn-free-enter,
    a.btn-free.current-comp,
    a.btn-free-enter.light {
      color: rgb(240 23 55);
      border: none;
      padding: 9px 18px;;
      border-radius: 9px;
      font-size: 15px;
      width: 175px;
      height: 41px;
      background: #fff;
      /*margin-left: -25px;
      margin-top: 34px;
      display: block;
      margin:0 auto;*/
      font-weight: 700;
      text-decoration: none;
      text-align:center;
      border-radius:40px;
      transition:all 0.2s ease-in-out;
      -moz-transition:all 0.2s ease-in-out;
      -webkit-transition:all 0.2s ease-in-out;
      /*display:inline-block;*/
      float:left;
      margin-top: 30px;
    }

    a.btn-free-enter.light{
      background-color:#fff;
      color:#E10600;
    }

    a.btn-free-enter.light:hover{
      color:#E10600;
      background:#FFDE31;
    }

    a.btn-free-enter a{
      color:#fff;
      text-decoration:none;
      display:block;
    }

    a.btn-free-enter:hover{
      background-color: #FFDE31;
      color: rgb(240 23 55);
    }

    a.btn-free-enter.red-btn.outline {
        border: 2px solid #ffff;
        background: none;
        color: #fff;
        margin-left: 19px;
    }

    a.btn-free-enter.red-btn.outline:hover{
      background-color: #FFDE31;
      color: rgb(240 23 55);
      /*border:none;*/
    }


    a.btn-free-enter.current-comp{
      color: rgb(240,23,55,1);
      background:#fff;
      margin:0;
      font-size: 15px;
      letter-spacing: 1px;
    }

    a.btn-free-enter.current-comp:hover{
      background:#FFDE31;
    }


    span.text-white.light-color {
        display: block;
        margin: 0 0 6px 0;
        font-size:26px;
        font-weight:700;
    }


    .about-us-new-content span.text-white.light-color{
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }


    .about-us-new-content .slick-dots{
      display:none;
    }

    .about-us-new-content .slider-text.current-comp p.paragraph{
      font-size:16px;
    }


    .about-us-new-content a.btn-free-enter.current-comp{
      font-size:15px;
      border-radius:10px;
    }

    .red{
      color:#E10600;
    }




    .btn-red.border-40 {
        /*color: #E10600;*/
        color:#fff;
        border: none;
        padding: 12px 18px;
        border-radius: 0;
        font-size: 1rem;
        width: 170px;
        height: 47px;
        background: transparent;
        margin-left: 0;
        margin-top: 0;
        font-weight: 400;
        text-decoration: none;
        display: block;
        /*border: 2px solid #E10600;*/
        border:2px solid #fff;
        /*text-transform: capitalize;*/
        border-radius: 40px;
        text-align: center;
        /*margin-top: -12px;*/
        font-size:13px;
        transition:all 0.3s ease-in-out;
        -moz-transition:all 0.3s ease-in-out;
        -webkit-transition:all 0.3s ease-in-out;
    }

    .btn-red {
        color: #E10600;
        padding: 15px 9px;
        font-size: 1rem;
        width: 316px;
        height: 59px;
        background: transparent;
        margin: 0 auto;
        font-weight: 500;
        text-decoration: none;
        display: block;
        /*text-transform:capitalize;*/
        border: 2px solid #E10600;
        border-radius:40px;
        border-radius: 40px;
        text-align: center;
        margin-top: 63px;
        font-size:18px;
        transition:all 0.3s ease-in-out;
        -moz-transition:all 0.3s ease-in-out;
        -webkit-transition:all 0.3s ease-in-out;
        font-family: 'Montserrat', sans-serif;
    }

    .btn-free-enter:hover,
    .btn-red:hover{
      color:#fff;
        background-color: #E10600;
      }



    /* Slider Navigation: Left Arrow, Slide Number, Right Arrow */
    .slider-nav {
      position: absolute;
      bottom: 21%;
      left: 15%;
      transform: translateX(-50%) translateY(-50%);
      color: white;
      font-size: 1.5rem;
      z-index: 10;
      display: flex;
      align-items: center;
    }

    .slider-nav span {
      color: white;
      padding: 5px 7px;
      border-radius: 5px;
      margin: 0 15px;
      cursor: pointer;
      font-size: 14px;
    }

    .slide-number {
      /*background-color: red;*/

    }

    .slider-nav .divider {
      margin: 0 2px;
      font-size: 1.5rem;
      color: white;
    }

    .slick-dots {
      position: absolute;
      bottom: 21px;
      width: 100%;
      text-align: center;
      z-index: 10;
    }

    .slick-dots li button:before {
      color: red;
    }


    .slide-count {
      background: #C70E1E;
      transform: skewX(-20deg);
      width: 35px;
      height: 30.5px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .slide-count span {
      transform: skewX(20deg); /* Opposite of the container skew */
      font-size: 14px;
      color: white;
      font-weight: 400;
    }



    /* Social Media Icons */
    .social-icons {
      position: fixed;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: #000000;
      padding: 9px 12px;
      display:none;
    }

    .social-icons a {
      display: block;
      margin-bottom: 15px;
      color: white;
      font-size: 20px;
      transition:all 0.3s ease-in-out;
      -moz-transition:all 0.3s ease-in-out;
      -webkit-transition:all 0.3s ease-in-out;
    }


    .social-icons a:hover {
        opacity: 0.8;
    }

    /* Latest Updates Section */
    .latest-updates {
      padding: 112px 0;
      text-align: center;
      /*margin-bottom:63px;*/
      /*background-color: #f9f9f9;*/
    }

    .latest-updates h2 {
      font-size: 20px;
      color: #000;
      text-transform: uppercase;
      position: relative;
      margin-bottom: 30px;
      font-weight:700;
    }

    .latest-updates h2::before, .latest-updates h2::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 39%;
      height: 2px;
      background-color: rgba(0, 0, 0,0.21);
    }

    .latest-updates h2::before {
      left: 0px;
    }

    .latest-updates h2::after {
      right: 0px;
    }

    .latest-updates .left-content {
      text-align: left;
      margin-top: 145px;
      margin-bottom: 30px;
      
    }


    .close-date{
      margin:28px 0 0 0;
    }

    /*.latest-updates .right-content {
      background-image: url('https://megarewards.au/wp-content/uploads/2025/05/Banner-Mega-Motor-Mania-Campaign.jpg');
      background-size: cover;
      padding: 30px;
      border-radius: 10px;
      color: white;
      height: 350px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
    }

    .latest-updates .countdown {
      font-size: 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .latest-updates .countdown span {
      margin: 0 10px;
    }

    .latest-updates .get-entries {
      background-color: #E10600;
      color: white;
      padding: 10px 30px;
      border-radius: 5px;
      font-size: 16px;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 20px;
    }*/

    .latest-updates h3{
      color:#000;
      font-size:37px;
    }

    h2.title-big.font-bold {
        text-align: center;
        /* text-transform: uppercase; */
        /* color: #E10600; */
         font-weight: 700; 
        margin-bottom: 47px;
        font-family: 'Montserrat', sans-serif;

    }

    .previous-winners {
        padding-bottom: 133px;
        margin-top:153px;
        padding-top: 81px;
    }


    /* About Partner Section */

    .about-partner-section{
      padding:128px 0;
      /*box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.05);*/
    }

    .about-content{
      text-align:center;
      
    }

    .about-content h3{
      margin:0 0 50px 0;
      font-size: 34px;
      font-family: 'Montserrat', sans-serif;
      font-weight:700;
    }

    .about-content img{
      width:100%;
    }

    .about-details{
      max-width:1045px;
      margin:63px auto 0 auto;
      text-align:center;
    }

    .about.container {
        padding: 0 0 138px 0;
        border-bottom: 1px solid #E10600;
    }


    .about-left img {
        width: 100%;
    }

    .about-right{
      text-align:left;
    }

    .about-right h3{
      font-size: 57px;
      color: #E10600;
      margin: 12px 0 16px 0;
    }

    .about-right{
      color:#fff;
      font-size:20px;
      padding: 0 70px;
    }


    .about-right p {
        font-size: 20px;
        font-weight: 400;
        line-height: 26px;
    }

    a.learn-more{
      color: #000;
      font-size: 17px;
      font-weight: 700;
      background: none;
      text-decoration: none;
      text-transform: uppercase;
      position: relative;
      margin-top: 30px;
      transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      display: block;
      text-decoration: underline;
      font-family: 'Montserrat', sans-serif;
    }

    /*a.learn-more:after {
        content: '';
        position: absolute;
        bottom: -16px;
        left: 78px;
        width: 60px;
        background: url(https://megarewards.au/wp-content/uploads/2025/05/line.png) no-repeat;
        height: 13px;
    }*/


    a.learn-more:hover{
      color:#E10600;
    }


    /* Become a Partner */

    .partner.container{
      margin-top:118px;
      margin-bottom:118px;
      color:#000;
      text-align:center;
      display:block;
    }


    .partner.partner-section {
        /*box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.05);*/
        padding: 90px 0 0;
    }


    .partner h3{
      color:#fff;
      /*text-transform:uppercase;*/
      font-size:28px;
      font-weight:700;
    }

    /*.partner-section{
      box-shadow: inset 0 1px 26px -8px rgba(0, 0, 0, 0.2);
    }*/

    .partner-right{
      text-align:center;
    }

    .partner-right img{
      text-align: center;
      padding: 0px 9px;
      width: 18%;
      margin: 0 auto;
    }

    .part-logo-left{
      display:none;
    }


    .partner-column .container{
      text-align:center;
    }


    .partner-details h3{
      color:#000;
      text-align:center;
      font-family: 'Montserrat', sans-serif;
      font-weight:700;
      font-size: 28px;

    }


    .partner-column .container {
          max-width: 1200px;
          margin: auto;
        }

        .partner-slider .partner {
          /*padding: 15px;*/
          text-align: center;
          background: #fff;
          /*border-radius: 8px;*/
          /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);*/
        }

        .partner-slider img {
          max-width: 100%;
          height: auto;
        }

        .partner-slider span {
          display: block;
          margin-top: 10px;
          font-weight: bold;
          color: #333;
        }

        .slick-prev:before, .slick-next:before {
          color: #333;
          font-size: 30px;
        }


    .col-md-4.partner3 img,
    .col-md-4.partner2 img,
    .col-md-4.partner img {
        width:77%;
    }


    .part-logo-left img{
      text-align: center;
      padding: 0px 9px;
      width: 18%;
      margin: 0 auto;
    }

    .partner-details p{
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 70px;
      margin-top: 14px;
      text-align:center;
    }

    .partner-column a{
      font-size:20px;
      font-weight:700;
      text-decoration:none;
      color:#000;
      font-family: 'Montserrat', sans-serif;
      transition:all 0.3s ease-in-out;
      -moz-transition:all 0.3s ease-in-out;
      -webkit-transition:all 0.3s ease-in-out;
      text-align:center;
    }

    .partner-column a:hover{
      color:#E10600;
    }

    .partner span,
    .partner2 span,
    .partner3 span{
      display:block;
      margin-top:31px;

    }


    .partner-slider .slick-prev, .partner-slider .slick-prev:hover {
        /*left: -27px;*/
        left:-2.5%;
        background: url(https://megarewards.au/staging/wp-content/uploads/2025/07/circle-arrow-left.png) no-repeat;
        width: 30px;
        height: 30px;
        z-index:9;
    }


    .partner-slider .slick-next, .partner-slider .slick-next:hover {
        /*right: -27px;*/
        right:-2.5%;
        background: url(https://megarewards.au/staging/wp-content/uploads/2025/07/circle-arrow-right.png) no-repeat;
        width: 30px;
        height: 30px;
        z-index:9;
    }

    .partner.slick-slide img{
        max-width:282px;
        margin:0 auto;
    }

    /* Countdown */




        .countdown-container {
          background: url('https://megarewards.au/wp-content/uploads/2025/05/countdown-background.jpg') no-repeat center center;
          background-size: cover;
          padding: 70px 20px;
          border-radius: 10px;
          /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);*/
          display: flex;
          flex-direction: column;
          align-items: center;
          margin-top:81px;
          height: auto;
        }

        .countdown-container h1 {
          color: #fff;
          margin: 20px 0;
          font-size: 2rem;
          text-align: center;
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
          font-size: 20px;
          text-transform: uppercase;
          }

        .countdown {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 20px;
        }

        .time-unit {
          text-align: center;
        }

        .flip-digit {
          position: relative;
          perspective: 1000px;
          width: 40px;
          height: 60px;
          margin: 0 2px;
          display: inline-block;
        }

        .digit-wrapper {
          position: relative;
          width: 100%;
          height: 100%;
          overflow: hidden;
        }

        .top, .bottom {
          background: rgba(0, 0, 0, 0.25);
          color: #fff;
          font-size: 2.5rem;
          line-height: 60px;
          text-align: center;
          position: absolute;
          width: 100%;
          height: 50%;
          overflow: hidden;
          border-radius: 5px;
          box-shadow: 0 0 5px #000;
        }

        .top {
          top: 0;
          border-bottom: 1px solid #333;
        }

        .bottom {
          bottom: 0;
          line-height: 0;
          border-top: 1px solid #333;
        }

        .top-flip, .bottom-flip {
          position: absolute;
          width: 100%;
          height: 50%;
          left: 0;
          background: rgba(0, 0, 0, 0.25);
          backface-visibility: hidden;
          transform-style: preserve-3d;
          z-index: 5;

          /* ðŸ‘‡ This line removes the small white digits */
          color: transparent;
        }

        .top-flip {
          top: 0;
          transform-origin: bottom;
          transform: rotateX(0deg);
          transition: transform 0.5s ease-in;
        }

        .bottom-flip {
          bottom: 0;
          transform-origin: top;
          transform: rotateX(90deg);
          transition: transform 0.5s ease-out;
        }

        .time-label {
          margin-top: 10px;
          font-size: 1rem;
          color: #fff;
        }

        .get-entries {
          margin-top: 30px;
          font-size: 16px;
          text-transform: uppercase;
          color: #fff;
          /* background-color: #E10600; */
          padding: 12px 24px;
          /* border-radius: 5px; */
          text-decoration: none;
          /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); */
          transition: background-color 0.3s ease;
          border-radius: 40px;
          border: 2px solid #fff;
          font-weight: 700;
        }

        .get-entries:hover {
          color: #c31942;
          background-color: #fff;
        }


    /* main-footer */

    .main-footer{
      background: #fff;
      padding: 60px 0;
      width: 100%;
      max-width: 100%;
      text-align: center;
      color:#000;
      box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.05);
      /*margin-top:142px;*/
      text-align:left;
    }


    .footer-logo {
        text-align: left;
    }

    .footer-details{
        display: block;
        margin: -1px 0 0;
        font-size: 12px;
    }

    .row.custom-footer-link{
          margin: 40px 0 40px 0;
    }

    .container.border-divider{
      border-bottom: 2px solid #E10600;
    }

    .copyright {
        text-align: center;
        margin: 30px 0 0;
        color: #000;
        font-size:14px;
    }


    .copyright a {
        color: #000;
        text-decoration: none;
        transition:all 0.3s ease-in-out;
        -moz-transition:all 0.3s ease-in-out;
        -webkit-transition:all 0.3s ease-in-out;
    }

    .copyright a:hover {
        color: #E10600;
    }

    .main-footer a{
      color: #222E46;
      text-decoration:none;
      word-wrap: break-word;
      transition:all 0.3s ease-in-out;
      -moz-transition:all 0.3s ease-in-out;
      -webkit-transition:all 0.3s ease-in-out;
    }

    .main-footer a:hover{
      color:#E10600;
    }


    .footer-title{
      color: #000;
      font-size: 16px;
      font-weight: 700;
      text-align: left;
      display: block;
      margin: 0 0 12px 0;
      font-family: 'Orbitron', sans-serif;
    }

    .footernav,
    .legal-nav{
      margin:0;
      padding:0;
      list-style:none;
      text-align:left;
      font-family: 'Montserrat', sans-serif;
    }

    .footernav li a,
    .legal-nav li a{
      color:#000;
      font-size:14px;
      text-decoration:none;
      margin: 6px 0;
      display: block;
      display: inline-block;
      transition:all 0.3s ease-in-out;
      -moz-transition:all 0.3s ease-in-out;
      -webkit-transition:all 0.3s ease-in-out;
      font-family: 'Montserrat', sans-serif;
    }

    .footernav li a:hover,
    .legal-nav li a:hover,
    .footer-social a:hover{
      color:#E10600;
    }

    .footer-social{
      margin: 31px 0 0 29%;
      padding: 0;
      list-style: none;
      text-align: left;
    }

    .footer-social li{
      display:inline-block
      margin: 6px;
    }

    .footer-social li a{
      color:#808080;
    }

    .footer-social a {
        text-align: left;
        margin: 0 4px;
        font-size:19px;
    }

    .footer-social a:hover img{
      opacity: 0.7;
    }

    .footer-social img{
      width:18px;
    }

    .footer-logo-social{
      display:flex;
    }

    nav ul li.mx-3:last-child {
        display:none;
    }


    .divider.three a, divider.three span{
      font-size:14px;
    }



    span.icon {
        margin: 0 5px 0 0;
    }

    .icon.phone{
      /*background:url(https://megarewards.au/wp-content/uploads/2026/02/footer-icon-phone.png) no-repeat 0 0;*/
      /*background:url(https://megarewards.au/wp-content/uploads/2026/02/footer-icon-envelope.png) no-repeat 0 0;
      background:url(https://megarewards.au/wp-content/uploads/2026/02/footer-icon-map.png) no-repeat 0 0;*/
    }

    /*.divider.two {
        position: relative;
    }

    .divider.two:before {
        content: '';
        position: absolute;
        top: 0;
        left: -69px;
        width: 1px;
        height: 100%;
        background: #000;
    }

    .divider.two:after {
        content: '';
        position: absolute;
        top: 0;
        right: 66px;
        width: 1px;
        height: 100%;
        background: #000;
    }*/



    .previous-winners-slider-mobile{
      display:none;
    }


    .latest-updates .left-content span{
     font-size:20px;
    }
    .current-text{
      font-size:20px;
      color: #E10600;
    }

    .latest-updates .left-content h3{
      color:#000;
      font-size:37px;
      font-family: 'Montserrat', sans-serif;
      font-weight:700;
      margin:0 0 26px 0;
    }



    .how-it-works-section {
        padding: 120px 0 0px 0;
    }

    .how-it-works-section h2{
      font-size:28px;
      font-weight:700;
      text-align:center;
      color:#000;
      margin-bottom: 74px;
      font-family: 'Montserrat', sans-serif;
    }


    .work-details{
      text-align:center;
    }

    .work-details .icon{
      width:64.5px;
    }

    .work-text{
      font-size: 16px;
      color: #000;
      font-weight: 700;
      margin: 30px 0 10px 0;
      display: block;
      text-align:center;
    }

    .work-details p{
      font-size:13px;
      font-weight:500;
      text-align:center;
    }

  
  .previous-campaign-section{
    margin:112px 0 0 0;
  }

  .previous-campaign-section h2 {
      font-size: 28px;
      font-weight: 700;
      text-align: left;
      color: #000;
      margin-bottom: 27px;
      font-family: 'Montserrat', sans-serif;

  }

  .campaign-details{
    border-radius: 15px;
    /*border: 1px solid rgba(0, 0, 0, 0.25);*/
    box-shadow: rgba(0, 0, 0, 0.25) 1px 0px 4px;
  }

  .campaign-details:hover .campaign-link{
    background: #E10600;
    color: #fff;
  }

  .campaign-details img{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width:100%
  }

  .campaign-details a.campaign-link{
    color: #000;
    /*font-size: 24px;*/
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    /*border-left: 1px solid rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    box-shadow: #8f7979 0px 1px 5px;*/
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: block;
    
    padding: 26px 24px 32px 24px;
    transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
    position:relative;
    min-height: 133px;
  }


  a.campaign-link p{
    font-size:14px;
    font-weight:500;
    margin-bottom:0;
  }

  /*a.campaign-link:after {
      content: '';
      position: absolute;
      top: 36px;
      right: 13px;
      width: 30px;
      height: 30px;
      background:URL(https://megarewards.au/wp-content/uploads/2025/06/icon-arrow-up-gray.png) 0 0 no-repeat;

  }*/


  .campaign-details a.campaign-link:hover {
      background: #E10600;
      color: #fff;
      
  }
  .campaign-details a.campaign-link:hover:after {
      opacity:1;
      background: url(https://megarewards.au/wp-content/uploads/2025/06/icon-arrow-up.png) 0 0 no-repeat;
      opacity:1;
  }

  .slick-prev, .slick-next{
    top: 52%;
  }

  .slick-prev,
  .slick-prev:hover {
      left: -48px;
      background:url(https://megarewards.au/wp-content/uploads/2025/06/slider-left-arrow.png) no-repeat;
      width:17px;
      height:29px;
  }

  .slick-next,
  .slick-next:hover {
      right: 6px;
      background:url(https://megarewards.au/wp-content/uploads/2025/06/slider-right-arrow.png) no-repeat;
      width:17px;
      height:29px;
  }
    
  .slick-prev:before, .slick-next:before{
    opacity: 1;
    color: #000;
    display:none;
  }


  /*.slick-dots li button:before {
      color: transparent;
      border: 3px solid #fff;
      border-radius: 100%;
      opacity:1;
  }

  .slick-dots li.slick-active button:before {
      opacity: 1;
      color: #fff;
  }*/


  .slick-dots li{
    width: 13px;
    height: 13px;
  }


  .slick-dots li button {
    width: 13px;
    height: 13px;
    border: 2px solid white;      /* white outline */
    background-color: transparent; /* empty by default */
    border-radius: 50%;           /* makes it a circle */
    opacity: 1;                   /* prevent slick default fade */
    transition: background-color 0.3s ease;
  }

  /* Remove default dot text */
  .slick-dots li button:before {
    content: '';
  }

  /* Active dot becomes solid white */
  .slick-dots li.slick-active button {
    background-color: white;
  }

.hero-section .slick-prev,
.hero-section .slick-next{
  display:none!important;
}



.previous-winners .slick-dots li.slick-active button {
    background-color: red;
    border: 2px solid red;
}

.previous-winners .slick-dots li button{
  background: #D8D8D8;
  border: 2px solid #D8D8D8;
}

.previous-winners .slick-dots {
    position: absolute;
    bottom: -54px;
}


.start-date{
  font-size:20px;
}

.close-date{
  font-size:20px;
}


.about-mobile{
  display:none;
}




.video-content{
  text-align:center;
}

.video-content {
    text-align: center;
    margin: 89px 0 114px 0;
}

.video-content iframe{
  border-radius:15px;
}


.container.current-comp-container > h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    color: #000;
    margin-bottom: 26px;
    font-family: 'Montserrat', sans-serif;
}

.cus-slider-text .inner {
    /*padding: 86px 0 0 47px;*/
}


.container.current-comp-container{
  margin:76px auto 0 auto;
  font-family: 'Orbitron', sans-serif;
}

span.text-red{
  color:#E10600;
  font-size:26px;
  font-weight:900;
  text-transform:uppercase;
  font-family: 'Orbitron', sans-serif;
}

span.text-black{
  color:#000;
}

span.button-round {
    display: inline-block;
    background: #fff;
    color: #E10600;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    padding: 10px 29px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid #E10600;
    margin: 40px 0 18px 0;
    font-weight:900;
}

.button-round.solid{
  display: inline-block;
    background: #E10600;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    padding: 10px 29px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid #E10600;
    margin: 10px 0 25px 0;
    font-weight:700;
}


#join-mega-rewards .button-round.solid{
  margin: 32px auto 25px auto;
  display: block;
  max-width: 226px;
  width: 100%;
}



.carousel .paragraph{
  color:#565656;
  font-size:16px;
  font-family: 'Montserrat', sans-serif;
  max-width:580px;
  /*margin:0 auto;*/
}

.text-uppercase{
  text-transform:uppercase;
}

.paragraph{
  font-family: 'Montserrat', sans-serif;
  color:#565656;
  margin-top: 15px;
}


.cus-slider-text h2{
  color:#000;
  font-size:16px;
  font-weight:700;
  text-transform:uppercase;
  margin:15px 0;
  font-family: 'Montserrat', sans-serif;
}

.cus-slider-text p{
  color:#565656;
  font-size:14px;
  font-family: 'Montserrat', sans-serif;
}



  .cus-slider-text a.btn-free-enter.current-comp {
    color: #000;
    font-size: 16px;
    background:url(https://megarewards.au/wp-content/uploads/2026/01/property-arrow-right.png) right no-repeat;
    padding-left: 0px;
    padding-right: 51px;
    width:auto;
    margin: 31px 0 0;
  }

  .cus-slider-text a.btn-free-enter.current-comp:hover{
    color:rgb(240, 23, 55, 1);
  }

.cus-slider-text .slick-dots li button{
  border: 2px solid rgb(240, 23, 55, 1);
}



#join-mega-rewards{
    /*margin-top: 76px;*/
    font-family: 'Orbitron', sans-serif;
}



.slick-dots li.slick-active button{
  background-color:rgb(240, 23, 55, 1);
}


.hero-section .slick-dots{
  display:none;
}



.carousel .slick-dots li button {
  border: 2px solid #e71717;
}

.carousel .slick-dots {
  position: absolute;
  bottom: -46px;
}

.carousel .slick-slide {
  /*padding: 20px;*/
  box-sizing: border-box;
}
.carousel .slide-content {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.carousel .left-col {
  flex: 1;
  position: relative;
}
.carousel .left-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  max-width:634px;
}
.carousel .countdown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 1.5em;
  font-weight: bold;
}
.carousel .right-col {
  flex: 1;
  /*padding: 20px;*/
}
.carousel .right-col h2 {
  /*margin: 15px 0;*/
}
@media (max-width: 768px) {
  .carousel .slide-content {
    flex-direction: column;
  }
  .carousel .left-col, .carousel .right-col {
    flex: none;
    width: 100%;
  }

  .subtext { font-size: 20px!important; }
  .main-text { font-size: 16px!important;
    height: 55px!important; }
  .description { font-size: 14px; }
  .logo img { max-width: 110px; }


  

}





/* Mega Reels */

#mega-reels{
  text-align:center;
  margin:76px 0 0 0;
}

.reel-slider {
  overflow: hidden;
  width: 100%;
  padding: 24px 0;
  cursor: grab;
  touch-action: pan-y; /* prevents vertical scroll interference on mobile */
}

.reel-track {
  display: flex;
  width: max-content;
  animation: scroll 60s linear infinite;
  user-select: none;
}

.reel-slider:hover .reel-track,
.reel-slider.dragging .reel-track,
.reel-slider.watching .reel-track {
  animation-play-state: paused;
}

.reel {
  position: relative;
  flex: 0 0 auto;
  width: clamp(180px, 60vw, 280px);
  /*aspect-ratio: 9 / 16;*/
  margin-right: 16px;
  border-radius: 14px;
  overflow: hidden;
  background: #333;
  cursor: pointer;
}

.reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




.reel .overlay {
  position: absolute;
  inset: 0;
  /*background: rgba(0,0,0,0.45);*/
  background:none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1; /* changed from 0 → 1 */
  transition: opacity 0.25s ease;
  z-index: 2;
}

.reel:hover .overlay {
  opacity: 1;
}

.overlay img{
  width:70px;
  height:70px;
  pointer-events:none;
}

.reel::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 40%, transparent 70%);
  pointer-events:none;
}

.overlay-content{
  position:absolute;
  bottom:20px;
  left:12px;
  color:#fff;
  z-index:3;
  text-align:left;
}

.overlay-content .meta{
  /*display:flex;*/
  align-items:center;
  /*gap:6px;*/
  font-size:13px;
  font-weight:500;
}


.meta span {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    transition:all 0.2s ease-in-out;
    -moz-transition:all 0.2s ease-in-out;
    -webkit-transition:all 0.2s ease-in-out;
}


.meta a:hover span {
    color: #e5c5c5;
}


.overlay-content .title{
  font-size: 16px;
  font-weight: 500;
  margin-top: 13px;
  font-family: 'Montserrat', sans-serif;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 250px;
}

.social-icon{
  width:41px;
  height:41px;
  display:block;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}




#mega-become-a-member{
  margin:76px 0 0 0;
  overflow:hidden;
}



/* ------------------------ Badge ------------------------*/

div#badge-cash-giveaway{
  position: fixed;
  bottom: 0;
  z-index: 9;
  display:none;
}


/* ---------- Badge ---------- */
.badge-anchor {
  position: relative;
  height: 1px; /* reference point */
}

.badge-wrapper {
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 10;

  opacity: 0;
  transform: translateX(120px) rotate(12deg);
  transition: transform 0.4s ease;
}

/* roll in */
.badge-wrapper.show {
  animation: rollIn 0.7s ease-out forwards;
}

/* fixed state */
.badge-wrapper.fixed {
  position: fixed;
  top: auto;
  bottom: 20px;
  left: 0px;

  /* slide DOWN effect */
  transform: translateY(12px);
}

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(120px) rotate(12deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

.badge {
  position: relative;
  display: inline-block;
}

.badge img {
  width: 168px;
  display: block;
}

/* close */
.badge-close {
  position: absolute;
  top: 0px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  line-height: 24px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}



/* -------------------- Carousel ----------------------*/


/* =========================
   MEGA CAROUSEL BASE
========================= */
.mega-carousel {
  position: relative;
  width: 100%;
  /*max-width: 1200px;*/
  max-width:100%;
  margin: auto;
  overflow: hidden;
  margin: 40px 0 0 0;
}

.mega-carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* =========================
   SLIDE CARD
========================= */
.mega-carousel-slide {
  min-width: 700px;
  margin: 0 24px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  opacity: 0.7; /* inactive opacity */
  transform: scale(0.88);
  transition: all 0.5s ease;
}

.mega-carousel-slide.mega-active {
  opacity: 1; /* active opacity */
  transform: scale(1);
}

/* =========================
   SPLIT LAYOUT
========================= */
.mega-carousel-image {
  width: 45%;
}

.mega-carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-carousel-content {
  width: 55%;
  padding: 42px;
  background: transparent;
  transition: background 0.5s ease;
}

.mega-carousel-slide.mega-active .mega-carousel-content {
  background: #e10600;
  color: #fff;
  border-radius: 0 20px 20px 0;
}

.mega-carousel-quote {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 10px;
}

.mega-carousel-name {
  margin-top: 20px;
  font-weight: 700;
}

.mega-carousel-role {
  font-size: 14px;
  opacity: 0.85;
}

/* =========================
   ARROWS (CENTER-LOCKED)
========================= */
.mega-carousel-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: red;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transform: translateY(-50%);
}

.mega-carousel-arrow.left {
  left: 50%;
  transform: translate(-390px, -50%);
}

.mega-carousel-arrow.right {
  left: 50%;
  transform: translate(342px, -50%);
}



/* ------------------------- Mega Countdown ----------------------*/

/* Overlay */
.countdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
  z-index: 9999;
}

.countdown-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Countdown Container */
.countdown-container {
  background: url('https://megarewards.au/wp-content/uploads/2026/01/countdown-popup-bg.png') no-repeat center center/cover;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  position: relative; /* important for absolute child */
  max-width: 760px;
  width: 100%;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* Close Icon - outside but attached to top-right corner */
.countdown-close {
  position: absolute;
  top: -25px;
  right: -25px;
  font-size: 37px;
  cursor: pointer;
  color: #fff;
  z-index: 10;
  transition: transform 0.3s;
  border-radius: 50%;
  border: 2px solid #fff;
  width: 40px;
  height: 40px;
  padding: 0px;
  line-height: 1;
}

.countdown-close:hover {
  transform: rotate(90deg);
  color:#E10600;
  border: 2px solid #E10600;
}

/* Header */
.countdown-container h1 {
  font-size: 28px;
  margin: 15px 0;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
}

.countdown-container span.badge {
  font-size: 12px;
  letter-spacing: 1px;
  border: 1px solid #fff;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
}

/* Countdown Numbers */
.countdown-timer {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  font-size: 48px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;

}

.countdown-timer div {
  flex: 1;
  text-align: center;
  margin: 0 30px;
}

.countdown-timer div span.label {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

/* Enter Button */
.countdown-container .enter-btn {
  background: #fff;
  color: #000;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s, color 0.3s;
  font-family: 'Orbitron', sans-serif;
}

.countdown-container .enter-btn:hover {
  background: #ff3b3b;
  color: #fff;
}


/* --------------------- HP Become a Member Content -------------------  */


/* Full-width red container */
  .red-container {
    width: 100%;
    background-color: #E10600;
    padding: 50px 0; /* top/bottom spacing */
    display: flex;
    justify-content: center; /* center inner container horizontally */
    height:95px;
    
  }

  /* Inner container with max-width */
  .inner-container {
    max-width: 1366px;
    width: 100%;
    display: flex;
    justify-content: space-between; /* space between columns */
    align-items: center; /* vertical center of columns */
    padding: 0 20px; /* optional side padding */
    box-sizing: border-box;
  }

  /* Left column */
  .left-col {
    flex: 1; /* take available space */
  }

  .left-col h2 {
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    text-transform:uppercase;
    font-weight:700;
  }

  .left-col p {
    margin: 0;
    font-size: 16px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight:400;
  }

  /* Right column */
  .right-col {
    /*margin-left: 20px;*/
  }

  .right-col button {
    padding: 13px 22.5px;
    font-size: 16px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 55px;
    transition: 0.3s;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #E10600;
    border: 2px solid #fff;
  }

  .right-col button:hover {
    color: #fff;
    background-color: #e10600;
  }

  .right-col button a{
    text-decoration:none;
    color: #E10600;
  }

  .right-col button:hover a{
    color:#fff;
  }





/* About Member Priviledge with Accordion */

/* ===== MEGA ABOUT SECTION ===== */
  .mega-about {
    align-items: center;
    max-width: 1200px;
    margin: 76px auto;
    font-family: 'Orbitron', sans-serif;
  }

  .mega-about-top{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
  }

  .mega-bottom{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    margin-top:20px;
  }

  .mega-about-accordion{
    margin-top:97px;
  }

  .mega-top-right{
    margin-top: 66px;
    font-family: 'Montserrat', sans-serif;
    color: #565656;

  }


  .mega-about-badge {
    display: inline-block;
    border: 1px solid #e10600;
    color: #e10600;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 16px;
    font-family: 'Orbitron', sans-serif;
    font-weight:900;
  }

  .mega-about-title {
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
  }

  .mega-about-title span {
    color: #e10600;
  }

  .mega-about-subtitle {
    color: #666;
    max-width: 420px;
    margin-bottom: 133px;
    font-size: 14px;
    line-height: 1.6;
  }

  /* ===== ACCORDION ===== */
  .mega-about-accordion-item {
    border: 1px solid #eee;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
  }

  .mega-about-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
  }

  .mega-about-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  /* ICON (PNG via mask) */
  .mega-about-icon {
    width: 34px;
    height: 34px;
    background-color: #e10600;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transition: background-color 0.3s;
  }

  /* Replace with your real PNG paths */
  .mega-about-icon-support {
    background: url("https://megarewards.au/wp-content/uploads/2026/02/icon-support-red.png");  
    background-size:100% 100%;
  }

  /*Red Icon:
  https://megarewards.au/wp-content/uploads/2026/02/accordion-icon-headset-red.png

  White Icon:
  https://megarewards.au/wp-content/uploads/2026/02/accordion-icon-headset-white.png*/

  .mega-about-icon-unique {
    background: url("https://megarewards.au/wp-content/uploads/2026/02/icon-unique-red.png");  
    background-size:100% 100%;
  }

  .mega-about-icon-rewards {
    background: url("https://megarewards.au/wp-content/uploads/2026/02/icon-megarewards-red.png");  
    background-size:100% 100%;
  }

  .mega-about-icon-partner {
    background: url("https://megarewards.au/wp-content/uploads/2026/02/icon-partnervalue-red.png");  
    background-size:100% 100%;
  }

  .mega-about-item-title {
    font-weight: 900;
    font-size: 14px;
    transition: color 0.3s;
  }

  .mega-about-plus {
    font-size: 22px;
    font-weight: bold;
  }

  .mega-about-close {
    display: none;
    position: absolute;
    top: 14px;
    right: 22px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
  }

  .mega-about-accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease;
  }

  .mega-about-accordion-content p {
    color: #fff;
    margin: 0;
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    padding-left: 48px;
    font-family: 'Montserrat', sans-serif;
  }

  /* ===== HOVER ===== */
  .mega-about-accordion-item:hover {
    background: #e10600;
  }

  .mega-about-accordion-item:hover .mega-about-icon-support{
    background: url("https://megarewards.au/wp-content/uploads/2026/02/icon-support-white.png");
    background-size:100% 100%;
  }


  .mega-about-accordion-item:hover .mega-about-icon-unique{
    background: url("https://megarewards.au/wp-content/uploads/2026/02/icon-unique-white.png");
    background-size:100% 100%;
  }

  .mega-about-accordion-item:hover .mega-about-icon-rewards{
    background: url("https://megarewards.au/wp-content/uploads/2026/02/icon-megarewards-white.png");
    background-size:100% 100%;
  }

  .mega-about-accordion-item:hover .mega-about-icon-partner{
    background: url("https://megarewards.au/wp-content/uploads/2026/02/icon-partnervalue-white.png");
    background-size:100% 100%;
  }


  .mega-about-accordion-item:hover .mega-about-icon {
    /*background-color: #fff;*/
  }

  .mega-about-accordion-item:hover .mega-about-item-title {
    color: #000;
  }

  /* ===== ACTIVE ===== */
  .mega-about-accordion-item.active {
    background: #e10600;
  }

  .mega-about-accordion-item.active .mega-about-icon-support{
    background: url("https://megarewards.au/wp-content/uploads/2026/02/icon-support-white.png");
    background-size:100% 100%;
  }

  .mega-about-accordion-item.active .mega-about-icon-unique{
    background: url("https://megarewards.au/wp-content/uploads/2026/02/icon-unique-white.png");
    background-size:100% 100%;
  }

  .mega-about-accordion-item.active .mega-about-icon-rewards{
    background: url("https://megarewards.au/wp-content/uploads/2026/02/icon-megarewards-white.png");
    background-size:100% 100%;
  }

  .mega-about-accordion-item.active .mega-about-icon-partner{
    background: url("https://megarewards.au/wp-content/uploads/2026/02/icon-partnervalue-white.png");
    background-size:100% 100%;
  }

  .mega-about-accordion-item.active .mega-about-icon {
    /*background-color: #fff;*/
  }

  .mega-about-accordion-item.active .mega-about-item-title {
    color: #fff;
  }

  .mega-about-accordion-item.active .mega-about-plus {
    display: none;
  }

  .mega-about-accordion-item.active .mega-about-close {
    display: block;
  }

  .mega-about-accordion-item.active .mega-about-accordion-content {
    max-height: 200px;
  }

  /* ===== IMAGE ===== */

  .mega-about-image {
      margin-top: 45px;
  }

  .mega-about-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
  }

  .mega-about-image p{
    font-family: 'Montserrat', sans-serif;
    color: #565656;
  }




/* ------------------------ About Us Page --------------------------*/


/* SECTION */
.about-us-section {
  padding: 80px 20px;
  font-family: 'Orbitron', sans-serif;
}

.about-us-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* CONTENT */
.about-us-content {}

.about-us-pill {
  display: inline-block;
  border: 1px solid #e40000;
  color: #e40000;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform:uppercase;
}

.about-us-content h1 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
}

.about-us-content h1 span {
  color: #e40000;
  font-family: 'Orbitron', sans-serif;
  font-weight:900;
}

.about-us-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
  max-width: 520px;
  font-weight:500;
  font-family: 'Montserrat', sans-serif;
}

/* FEATURES */
.about-us-features {
  display: flex;
  gap: 40px;
}

.about-us-feature {
  text-align: left;
  max-width: 120px;
  position:relative;
}

.about-us-feature:before{
  content: '';
  position: absolute;
  top: 0;
  left: -33px;
  width: 1px;
  height: 118px;
  background: #565656;
}

.about-us-feature:first-child:before{
  display:none;
}

.about-us-feature img {
  width: 39px;
  margin-bottom: 10px;
}

.about-us-feature span {
  font-size: 16px;
  font-weight: 700;
  display: block;
}

/* MEDIA */
.about-us-media {
  display: flex;
  justify-content: center;
}

.about-us-media-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  /*max-width: 380px;*/
}

.about-us-media-card img {
  width: 100%;
  display: block;
}


.about-us-media .about-us-play-button {
  display:none;
}

/* PLAY BUTTON */
.about-us-play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
}

.about-us-play-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-left: 16px solid #000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}



/* ------------------- Accordion --------------------*/



#header{
  display:block;
}

#header.mobile{
  display:none;
}



.nav.desktop,
.cta.desktop-btn {
    /*display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-20px);*/
  }

  /* Fullscreen mobile menu */
  #mobileMenu.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  #mobileMenu.active .nav.desktop,
  #mobileMenu.active .cta.desktop-btn {
    display: block;
    opacity: 1;
    transform: translateY(0);
    margin: 10px 0;
  }

  /* Optional: style nav links for mobile */
  #mobileMenu .nav.desktop a {
    font-size: 18px;
    margin: 27px 0;
    color:#000;

  }

  #mobileMenu .cta.desktop-btn a {
    font-size: 18px;
    padding: 16px 28px;
    width: auto;
    height: auto;
  }


  #mobileMenu.active .btn-red.border-40{
    color:#fff;
  }

  .burger {
    display: none;
  }

.bg2{
  display:none;
}


.video-wrapper {
  width: 634px;   /* Desktop width */
  height: 744px;  /* Desktop height */
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

span.icon.message-us img {
    width: 27px;
}

/* MOBILE */




    @media (max-width: 1024px) {

      nav a{
        font-size: 12px;
      }

      img.slide-text-img {
          width: 409px !important;
      }
      

      .campaign-slider .slick-prev, .campaign-slider .slick-prev:hover{
        left: 90%!important;
      }

    }


    @media (max-width: 991px) {
      .video-content iframe {
            border-radius: 15px;
            width: 100%;
        }


        img.slide-text-img {
            width: 100% !important;
        }


        .mega-carousel-slide {
    min-width: 85vw;
    flex-direction: column;
  }

  .mega-carousel-image,
  .mega-carousel-content {
    width: 100%;
  }

  .mega-carousel-arrow.left {
    transform: translate(-45vw, -50%);
  }

  .mega-carousel-arrow.right {
    transform: translate(40vw, -50%);
  }

  .mega-carousel-content {
    border-radius: 0 0 20px 20px;
    padding: 24px;
  }

  .mega-carousel-quote {
    font-size: 28px;
  }
    }
    
    /* Responsive styles */
    @media (max-width: 768px) {
        
        
        .top-header{
        padding: 10px 0;
      }

      .top-header span {
          font-size: 11px;
      }


      .overlay-content .title {
        width: 196px;
      }

      .about-us-media{
        display: block;
      }

      .video-wrapper {
        width: 100%;
        height: 294px;
        /*aspect-ratio: 16 / 9;*/
      }

      #memberPopupContent h2{
        font-size:23px;
      }

      #memberPopupContent p {
          font-size: 14px;
      }

      .left-col h2{
        font-size: 16px;
      }

      .red-container p {
          margin: 10px 0 0;
          font-size: 14px;
      }

      .right-col button {
        padding: 9px 22.5px;
        font-size: 12px;
      }

      .right-col button:hover {
        color: #fff;
        background-color: #e10600;
      }

      .right-col button a{
        text-decoration:none;
        color: #E10600;
      }

      .right-col button:hover a{
        color:#fff;
      }

      #memberPopupContent h2{
        font-size:23px;
      }


      .about-us-content h1{
        font-size:22px;
      }

      .about-us-content p {
        font-size: 14px;
        line-height: 1.6;
      }

      .about-us-feature span {
          font-size: 11px;
          font-weight: 900;
      }

      .banner-top-content .hero-logo img{
        max-width: 120px!important;
      }

      .banner-top-content .slider-text p {
        font-size: 18px!important;
        font-weight: 700 !important;
      }

      .bg1{
        display:none;
      }

      .bg2{
        display:block;
      }

      .header-bottom{
        z-index: 99999;
        position: absolute;
        top: 42px;
        width: 100%;
        background:#fff;
      }

    .top-header{
        padding: 10px 0;
      }

      .top-header span {
          font-size: 11px;
      }
      
            /* Keep header fixed on top */
        #header {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          z-index: 10000;
          background: #fff;
        }

        .header-inner {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 16px 20px;
        }

        /*.logo img {
          height: 50px;
        }*/

        .burger {
          font-size: 2rem;
          cursor: pointer;
          background: none;
          border: none;
        }

        /* Slide menu for nav + CTA only */
        #mobileMenu {
          position: fixed;
          top: 80px; /* just below header */
          left: 0;
          width: 100%;
          height: calc(100% - 80px);
          background: rgba(255, 255, 255, 1);
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          transform: translateX(-100%);
          transition: transform 0.4s ease;
          z-index: 9999;
        }

        #mobileMenu.active {
          transform: translateX(0);
        }

        .nav.desktop {
          flex-direction: column;
          text-align: center;
        }

        .nav.desktop a {
          font-size: 1.5rem;
          margin: 15px 0;
          display: block;
        }

        .cta.desktop-btn {
          margin: 20px 0;
        }

        .cta.desktop-btn a {
          font-size: 1.2rem;
          padding: 10px 20px;
        }




      .mega-about-top{
          display:block;
      }


      .about-us-container{
        text-align: left;
        max-width: 33%;
        margin: 0 0 30px 0px;
        font-weight: 700;
        display:inline;
      }

      .about-us-features{
        text-align: left;
        /*display:block;*/
      }

      .about-us-feature {
          text-align: left;
          max-width: 28%;
          margin: 0 0 30px 0px;
      }

      .about-us-feature:before {
          left: -24px;
          height: 90px;
      }   


      span.text-red{
        font-size: 22px;
      } 


      .paragraph {
          font-family: 'Montserrat', sans-serif;
          color: #565656;
          margin-top: 14px;
          padding: 0 10px;
      }


      .mega-about-accordion-header {
          padding: 16px 18px;
      }


      .mega-about-title{
        font-size: 22px;
      }

      .mega-top-right p {
          font-size: 14px;
      }

      .mega-about{
          margin: 76px 15px;
          display:block;
      }

      .about-us-feature:before{
        height: 112px;
      }

      .all-center{
        /*text-align:center;*/
      }

      .mega-about-badge,
      .mega-about-title,
      .mega-about-subtitle{
        /*text-align:center;*/
      }

      .mega-bottom {
        display: block;
      }

      .mega-bottom .mega-about-image {
          order: 1;
      }

      .mega-bottom > div {
          order: 2;
      }

      .mega-about-accordion{
        margin-top: 7px;
      }

      .mega-top-right{
        margin-top:16px;
      }

      .mega-about-subtitle{
        margin-bottom:15px;
      }

      /* Countdown */

      .countdown-container{
        margin: 0 40px;
      }

      .countdown-timer {
        flex-wrap: wrap;  /* allow two-column layout */
        justify-content: center;
        font-size: 36px;
      }
      .countdown-timer div {
        flex: 0 0 21%; /* 2 columns */
        margin-bottom: 15px;
      }
      .countdown-container h1 {
        font-size: 18px;
      }
      .countdown-container span.badge {
        font-size: 10px;
        padding: 4px 10px;
      }
      /* adjust close icon for smaller screens */
      /*.countdown-close {
        top: -10px;
        right: -10px;
        font-size: 26px;
      }*/



      #mega-membership{
        padding:0 20px;
      }

      .mega-columns{
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
      }

      .countdown-container{
        margin: 0 40px;
      }

      .red-container{
        height:auto;
        text-align:left;
      }

      .inner-container{
        max-width: 100%;
        width: 100%;
        display: block;
      }

      .red-container .left-col {
          flex: none;
      }

      .red-container .right-col {
          margin-left: 0;
          margin-top: 30px;
      }

      .red-container p {
          margin: 10px 0 0;
          font-size: 14px;
      }

      .left-col h2{
        font-size: 16px;
      }

      .footer-logo-social {
          /*display: block;*/
      }

      .footer-social {
        margin: 20px 0 0 0;
      }

      .mega-carousel-slide.mega-active .mega-carousel-content{
        border-radius: 0;
      }

      .footer-social{
        float:left;
        margin: 23px 0 0 4px;
      }

      .footer-logo-social a{
        float:left;
      }

      .footer-details{
        margin: 59px 0 0;
        font-size: 12px;
        clear: both;
        font-family: 'Montserrat', sans-serif;
      }


      .footer-logo-social a img {
          width: 78%;
      }


      .footer-social img{
          width: 42% !important;
          margin: 0;
      }

      .footer-social {
          float: left;
          margin: 11px 0 0 23px;
      }

      .footer-social a {
        text-align: left;
        margin: 0 -9px;
      }


      


   /************************************************************** Mobile NEW *********************************/
  .nav.desktop, .desktop-btn { display: none; }
  .burger { display:block;  color:#000; justify-self:end; }

  #header.scrolled .burger{
    color:#000;
  }

  /* Mobile nav container */
    .mobile-menu {
    position: fixed;
    top:0; right:0; width:100%; height:100vh;
    background: rgba(255, 255, 255, 1);
    display: flex; flex-direction: column; justify-content:center; align-items:center;
    gap:28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index:9999;
    }
    .mobile-menu.open { transform: translateX(0); }
    .mobile-menu a { color:#000; font-size:18px; text-decoration:none; }
    .mobile-btn { display:block; margin-top:20px; font-size:18px; }
    .close-btn { position:absolute; top:20px; right:24px; font-size:32px; font-weight:700; color:#1A1A1A; background:none; border:none; cursor:pointer; }

    .mobile-logo {
        position: absolute;
        top: 18px;
        left: 18px;
    }

    .mobile-logo img {
        width: 61px;
    }


  /************************************************************ end of Mobile NEW *********************************/


      .video-content iframe {
          border-radius: 15px;
          width: 100%;
      }

      /*#header{
        height: auto;
        position:fixed;
        background: #fff;
        padding: 20px 20px;
      }*/

      #header.scrolled {
          background-color: #fff;
      }

      .bottom-header{
        background:#fff;
        padding:22px;
        height:auto;
      }

      /*.top-header{
        display:none;
      }*/

      .hamburger div{
        background-color: #ffffff;
      }

      #header.scrolled .hamburger div{
        background-color: #000;
      }


      .slider,.previous-winners-slider {
        display: none ;
      }
        .slider-mobile,
        .previous-winners-slider-mobile { display: block;
      }

      .current-competition-section .slick-next, .current-competition-section .slick-next:hover{
        /*display:none!important;*/
      }


      .carousel .slick-dots {
          bottom: -5px;
      }

      nav ul {
        width:100%!important;
        right:0!important;
      }

      nav ul {
        display: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        z-index: 1000;
        height:100vh;
      }

      nav ul li {
        width: 100%;
        text-align: center;
      }

      nav ul li a {
        padding: 20px 0;
        display: block;
        width: 100%;
        font-size: 14px;
        font-weight: 700;
        color:#000;
      }


      /* Hamburger menu - always visible */
      .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1050;
        right: 4%;
        position: absolute;
      }


      /*.hamburger.active + nav ul {
        display: flex;
      }*/

      .hamburger div{
        width: 30px;
        height: 4px;
        margin: 3px 0;
        border-radius: 5px;
        transition: background-color 0.3s ease;
      }



      /* Menu Toggle */


      /* Hamburger button */
      .hamburger {
        position: fixed;
        /*top: 27px;*/
        right: 20px;
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
      }

      .hamburger div {
        width: 100%;
        height: 4px;
        background-color: #000;
        transition: transform 0.4s ease, opacity 0.3s ease;
      }

      .hamburger.open div:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
      }

      .hamburger.open div:nth-child(2) {
        opacity: 0;
      }

      .hamburger.open div:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
      }

      /* Menu styling */
      .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
      }

      .menu.show {
        display: flex;
      }

      nav ul li.mx-3:last-child {
          display:block;
      }

      /* end of Menu Toggle */



      nav ul li ul{
        background:none!important;
        top:auto!important;
        display:inline-block!important;
      }

      nav ul li ul li{
        display: inline-block;
        width:auto;
      }

      nav ul li.mx-3:last-child ul li{
          margin: 0 19px;
      }


      .btn-red.border-40{
        margin: 0 auto;
        /*border: 2px solid #fff;*/
        background: #E10600;
        color: #fff;
      }

      .btn-red{
        max-width: 338px;
        font-size: 20px;
        width: 100%;
      }


      a.btn-free-enter, a.btn-free.current-comp, a.btn-free-enter.light{
        width:auto;
      }


      /*.hero-section{
        margin-top: 74px;
      }*/

      .latest-updates{
        margin-bottom:0;
        padding: 112px 0 0 0;
      }

      .latest-updates h3 {
        font-size:20px;
        text-transform:uppercase;
        margin: 9px 0 26px 0;

      }

      .latest-updates .left-content h3{
        font-size:22px;
        text-transform:uppercase;
        margin: 9px 0 26px 0;
      }

      .latest-updates .left-content {
        text-align: center;
        margin-bottom: 20px;
        color: #000;
      }





      .how-it-works-section h2{
        font-size:22px;
      }

      .about-desktop{
        display:none;
      }

      .about-mobile{
        display:block;
      }

      .countdown-container{
        margin-top: -9px;
      }

      .how-it-works-section {
          /*padding: 90px 0;*/
      }


      .cus-slider-text .inner{
        padding:0;
      }

      .carousel .right-col{
        padding: 20px 0;
      }

      .how-it-works-section .work-details{
          display: block;
          margin: 0 0 48px 0;

      }

      .current-competition-section{
        margin-top: -28px!important;
      }

      .work-img {
          display:block;
          /*margin-right:39px;*/
          margin:0 0 39px 0;
      }

      .work-right-details{
        display: inline-block;
      }
      .work-text{
        font-size: 18px;
        color: #000;
        font-weight: 700;
        margin: 0px 0 10px -2%;
        display: block;
      }  

      .previous-campaign-section h2{
        font-size:22px;
      }

      .latest-updates .right-content {
        padding: 20px;
        /*height: 280px;*/

      }

      .previous-campaign-section h2{
        margin-bottom: 60px;
      }

      .latest-updates .countdown {
        font-size: 1.5rem;
        gap:15px;
      }


      .close-date{
        margin: 16px 0 0 0;
        font-size:18px;
      }


      .start-date{
        font-size:18px;
      }

      span.details{
        font-size:16px;
      }



      .previous-winners h2 {
        font-size: 22px;
      }

      .about-content h3{
        font-size:22px;
      }

      /* Countdown mobile */

      .countdown h1 {
        font-size: 1.5rem;
      }

      .time-value {
        font-size: 2.5rem;
        padding: 15px 20px;
      }

      .time-label {
        font-size: 0.9rem;
      }

      .get-entries {
        font-size: 14px;
        padding: 10px 20px;
      }

      .countdown {
        flex-direction: row;
        justify-content: center;
      }

      .countdown > div {
        margin: 0 15px;
      }

      .top, .bottom,
      .top-flip, .bottom-flip {
        font-size: 2rem;
        /*line-height: 48px;*/
      }

      .flip-digit {
        width: 25px;
        height: 48px;
      }

      .digit-wrapper {
        height: 124%;
      }

      .latest-updates h2::before, .latest-updates h2::after{
        width:16%;
      }

      .latest-updates .left-content{
        margin-top: 10px;
      }

      .previous-winners {
          padding-bottom: 63px;
          padding-top: 0px;
      }

      .previous-winners .slick-dots {
          bottom: -38px;
      }
 
      .previous-winners .slick-prev,
      .previous-winners .slick-next{
          display:none!important;
      }

      .part-logo-left{
        display:none!important;
      }

      .col-md-4.partner2 {
          margin: 30px 0;
      }

      .previous-winners{
        margin-top:50px;
      }

      .divider.two:before,
      .divider.two:after{
        display:none;
      }

      .about-partner-section{
        padding: 48px 20px;
        /*box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.05);*/
      }

      .about-right{
        padding: 0px 15px;
      }


      .about.container {
          padding: 0 0 58px 0;
      }

      .about.container {
                padding: 0 0 58px 0;
            }

            .partner.container {
                margin-top: 38px;
            }

            .partner h3 {
                font-size: 22px;
            }

            .about-right h3 {
              font-size: 35px;
              margin: 42px 0 16px 0;
            }

            .partner-right img {
                width: 28%;
                margin: 50px auto 0 auto;
            }

            a.learn-more {
                margin-top: 44px;
                display:block;
            }

            .partner-left p {
                margin: 17px 0 27px 0;
            }




      .partner-right img,
      .part-logo-left img {
          width: 31%;
          margin: 20px auto 50px auto;
      }

      .partner-right{
        display:none;
      }

      .part-logo-left{
        display:block;
        text-align:center;
      }


      .footer-logo,  .footernav, .legal-nav,.footer-title,.footer-social{
        text-align:left;
      }

      .copyright{
        text-align:center;
      }

      .footer-title {
          margin: 50px 0 12px 0;
      }


      /*.slider-text h2{
        font-size: 1rem;
      }

      .slider-text p{
        font-size: 9px;

      }*/

      .slick-slide .slider-text{
        max-width: 100%;
        top:69px;
        left: 24px;
        transform: none;
      }

      img.slide-text-img {
        width:100%!important;
          /*width: 380px !important;*/
      }

      /*.previous-campaign-section .col-md-4*/
      .previous-campaign-section .campaign-details {
          margin-bottom: 25px;
      }


      a.btn-free-enter{
        margin:21px auto 0 auto;
      }

      .slider-text p:before{
        /*height: 25px;*/
        left: -16px; 
      }

      .social-icons{
        display:none;
      }


      .main-footer{
        text-align:center;
      }

      .main-footer .row>*{
        width:auto!important;
        text-align:left;
      }


      .main-footer .row>* p{
        font-size:14px;
        float:left;
      }

      .main-footer .col-md-3.divider.none {
          display: none;
      }

      .col-md-6.divider.none{
          display: none;
      }

      .col-md-6.divider.one{
        width:auto!important;
        padding-right: 35px;
        text-align: left;
      }

      .col-md-6.divider.two,
      .col-md-6.divider.three{
        width:auto!important;
      }


      .main-footer span.icon {
          margin: 0 12px 0 0;
          float: left;
      }

      .col-md-6.divider.three p{
        float: left;
        font-size: 12px!important;
      }


      .footer-logo-social a{
        float:left;
      }

      .footer-social{
        float:left;
        margin: 8px 0 0 21px;
      }

      .footer-details{
        margin: 59px 0 0;
        font-size: 12px;
        clear: both;
        font-family: 'Montserrat', sans-serif;
      }


      .footer-logo-social a img {
          width: 86%;
      }





      .slick-slide .slider-text.current-comp{
        width:100%;
        max-width:100%;
        text-align:center;
        bottom:0;
      }

      .campaign-slider .slick-prev,
      .campaign-slider .slick-prev:hover {
          left: 86%!important;
        }


      .campaign-slider .slick-next, .campaign-slider .slick-next:hover {
          right: 3.3%!important;
      }



    }


    /*@media (max-width: 768px) {
      .slider { display: block !important; }
        .slider-mobile { display: none !important; }
    }*/

    @media (max-width: 576px) {
      .latest-updates .right-content {
        /*height: 250px;*/
        padding: 15px;
      }

      .latest-updates .countdown {
        font-size: 1.2rem;
      }

      .latest-updates h2 {
        font-size: 1.2rem;
      }

      .video-content iframe {
          border-radius: 15px;
          width: 100%;
      }

      .campaign-slider .slick-prev,
      .campaign-slider .slick-prev:hover {
          left: 80%!important;
        }

        .mega-about-item-title {
            font-size: 12.7px;
        }

    }


    @media (max-width: 480px) {

      .mega-about-item-title {
          font-size: 12.7px;
      }

      .time-value {
        font-size: 2rem;
        padding: 12px 15px;
      }

      .get-entries {
        font-size: 12px;
        padding: 8px 16px;
      }

      /*.countdown > div {
          margin: 0 -4px;
      }*/

      .partner.slick-slide img {
          max-width: 239px;
      }

      .video-content iframe {
          border-radius: 15px;
          width: 100%;
      }

      .campaign-slider .slick-prev,
      .campaign-slider .slick-prev:hover {
          left: 78%!important;
        }


        
    }


    @media (max-width: 412px) {




      .bottom-header {
          padding: 12px 20px;
      }

      .latest-updates .left-content .current-text{
        font-size:14px;
      }

      .latest-updates .left-content h3 {
          font-size: 20px;
      }

      .start-date,
      .close-date {
          font-size:16px;
      }

      .latest-updates .left-content span.details{
        font-size:14px;
      }

      .how-it-works-section h2,
      .previous-campaign-section h2,
      h2.title-big.font-bold,
      .about-content h3,
      .partner h3{
        font-size:20px;
      }

      .work-text {
        font-size: 16px;
      }

      .work-details p {
        font-size: 14px;
      }

      .work-img {
          /*margin-right: 0;*/
          margin: 0 0 22px;
      }

      .work-details .icon {
          width: 32.5px;
      }


      .current-competition-section{
        margin-top: -28px!important;
      }

      .btn-red {
          max-width: 276px;
          font-size: 16px;
      }

      .slider-text p{
        margin: 19px 0;
      }

      .campaign-slider .slick-prev,
      .campaign-slider .slick-prev:hover {
          left: 78%!important;
        }

    }




    /* Responsive fixes */
    @media (min-width: 769px) {
        /* On larger screens, keep nav menu visible and horizontal */
        nav ul {
          display: flex !important;
          position: static;
          flex-direction: row;
          background: transparent;
          width: auto;
          box-shadow: none;
          padding: 0;
          width: 100%;
        }

        nav ul li {
          border: none;
          margin: 0 20px;
          padding: 0;
          text-align: left;
        }

        .hamburger {
          display: none; /* Hide hamburger on larger screens */
        }
     }






/* Current Competition */


/* Hero Section */
    .current-competition-section {
      position: relative;
      width: 100%;
      /*height: 914px;*/
      /*background-color: black;*/
      margin-top:112px; /* Account for fixed header height */
    }

    /*.hero-section .slick-dots{
      display:none!important;
    }
    */

    .slick-dotted.slick-slider{
      margin-bottom:0;
    }

    .slick-slide {
      position: relative;
      height: 100%;
    }

    .slick-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slick-slide .slider-text.current-comp {
      position: absolute;
      top: 43.5%;
      left: 6.5%;
      transform: translateY(-50%);
      color: white;
      z-index: 10;
      max-width: 30%;
      text-align:left;
    }

    .slider-text.current-comp h2 {
      font-size: 24px;
      font-weight: 700;
      color:#FFDE31;
      font-family: 'Montserrat', sans-serif;
    }

    h2.slider-title.current-comp.second{
      color:#E10600;
    }

    .slider-text.current-comp p {
      font-size: 14px;
      font-weight: 500;
      margin: 26px 0;
      display: block;
      position: relative;
      color: #fff;
      /*font-family: 'Montserrat', sans-serif;*/
    }


    .slider-text.current-comp.second{
      color:#E10600;
    }

    /*.slider-title.current-comp.second p{
      margin:11px 0 26px 0;
    }*/

    .slider-text.current-comp p{
      margin:13px 0 21px 0;
    }
    
    .slider-text.current-comp p.paragraph{
      margin:11px 0 26px 0;
    }


/* New Styles */



   .previous-section a.btn-free-enter{
        color: #fff;
        border: none;
        padding: 10px 28px;
        border-radius: 9px;
        font-size: 15px;
        width: auto;
        height: 41px;
        background: #fff;
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        border-radius: 40px;
        transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        /* display: inline-block; */
        float: none;
        margin: 34px auto auto;
        background: rgb(240 23 55);
    }

    .previous-section a.btn-free-enter:hover {
        background-color: #FFDE31;
        color: rgb(240 23 55);
        /* border: none; */
    }



    .campaign-slider.slick-initialized .slick-slide {
        display: block!important;
        /*width: auto !important;*/
        margin: 1px 17px;

    }

    .campaign-details br {
        display: none;
    }

    .campaign-slider .slick-prev, .campaign-slider .slick-next {
        top: -11%;
    }


    .campaign-slider .slick-prev,
    .campaign-slider .slick-prev:hover{
        left:93%;
        background: url(https://megarewards.au/wp-content/uploads/2025/08/slider-arrow-left.png) no-repeat;
        width: 31px;
        height: 31px;
    }

    .campaign-slider .slick-next,
    .campaign-slider .slick-next:hover {
        background: url(https://megarewards.au/wp-content/uploads/2025/08/slider-arrow-right.png) no-repeat;
        width: 31px;
        height: 31px;
        right: 1.3%;
    }


    /* Pop Up Styles */

         .popup-overlay {
           position: fixed;
           top: 0; left: 0; right: 0; bottom: 0;
           background: rgba(0,0,0,0.6);
           display: flex;
           justify-content: center;
           align-items: center;
           z-index: 9999;
         }

         .popup-content {
           background: #fff;
           padding: 30px;
           border-radius: 10px;
           width: 90%;
           max-width: 400px;
           text-align: center;
           position: relative;
           transition: all 0.3s ease;
           box-shadow: 1px 1px 23px #282222;
         }

         .close-btn {
           position: absolute;
           top: 10px;
           right: 15px;
           font-size: 24px;
           cursor: pointer;
         }

         .popup-content input {
           width: 100%;
           padding: 10px;
           margin: 10px 0;
           border: 1px solid #ccc;
           border-radius: 5px;
         }

         .popup-content button {
           background-color: #d32f2f;
           color: white;
           padding: 10px 20px;
           border: none;
           border-radius: 40px;
           cursor: pointer;
         }

         .popup-content button:hover {
           background-color: #b71c1c;
         }

         .success-logo {
           width: 90px;
           margin-bottom: 20px;
         }

         .success-message {
           font-size: 1.8rem;
           font-weight: bold;
           color: #2e7d32;
         }


/* end of New Styles */


/*//////////////////////////////////////// NEW STYLES ///////////////////////////////////////////////*/

/* Banner */
.banner {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: background-image 1s ease-in-out;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* Center content */
.center-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  padding: 20px;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.center-content.active {
  transform: translateY(0);
  opacity: 1;
}

/* Logo */
.logo {
  width: 120px;
  /*margin-bottom: 20px;*/
}

/* Subtext */
.subtext {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  color:#fff;
}

/* Main text */
.main-text {
   display: inline-block;
  background: #fff;
  color: red;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  padding: 16px 24px;
  margin-bottom: 20px;
  height: 69px;
  font-weight: 700;
}

/* Description */
.description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  color:#fff;
}

/* Button */
.member-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.member-btn:hover {
  background: red;
  color: #fff;
}


.banner-top-content img{
  width:100%;
}

.banner-top-content .slider-text.custom-width {
    position: absolute;
    top: 32.5%;
    left: 0;
    /* transform: translateY(-50%); */
    color: white;
    z-index: 10;
    max-width: 100%;
    width: 100%;
}

.banner-top-content .hero-logo {
    text-align: center;
}


.banner-top-content .hero-logo img {
    max-width: 246px;
    margin:0 auto;
}

.banner-top-content .slider-text p {
    font-size: 24px;
    margin: 12px 0;
    display: block;
    position: relative;
    color: #fff;
    text-align: center;
    font-weight:700;
}

.banner-top-content a.btn-free-enter.btn-white {
    text-align: center;
    display: block;
    margin: 0 auto;
    float: none;
    width: 233px;
    padding: 15px 0px;
    height: auto;
}

/*//////////////////////////////////////// END NEW STYLES ///////////////////////////////////////////*/

