      /* Global Styles */
      body {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        padding: 0;
      }


    .nav.desktop{
        margin-left:66px;
    }

      .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;
        overflow:hidden;
      }

      /* 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; font-family: 'Questrial', sans-serif; }

      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:15px;
      }

      .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;
        font-family: 'Questrial', sans-serif;


      }

      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;
    height: 100vh;
    overflow: hidden;
    min-height: 829px;
  }

  /* Background Video */
  .hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Overlay */
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
  }

  /* ---------- 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: #E10600;
    font-weight: 900;
    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:#E10600;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 900;
  }

  .btn-member:hover {
    background: #fff;
    color: #E10600;
    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);
    height: 80px;
  }

  .feature-title {
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 15px;
    margin-bottom: 8px;
    font-family: 'Orbitron', sans-serif;
  }

  .feature-text {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
  }



  .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(0);
  }

  .feature-card .feature-content{
    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: #F01737;
        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:#F01737;
      }

      a.btn-free-enter.light:hover{
        color:#F01737;
        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:#F01737;
      }




      .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:#F01737;
      }

      .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: url('https://megarewards.au/wp-content/uploads/2026/03/AFL-Gather-Round-Popup-Desktop.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;
        overflow:hidden;
      }


      .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: #000;
        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;
      }

      .footer-social img {
          width: 18px;
      }

      .footer-social a:hover img{
        opacity: 0.7;
      }

      .footernav li a:hover,
      .legal-nav li a:hover,
      .footer-social a:hover{
        color:#E10600;
      }

      .footer-social{
        margin: 31px 0 0 30%;
        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-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: #F01737;
      }

      .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: #f01737;
      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: #f01737;
        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: 20px;
      height: 20px;
    }

    .carousel .slick-dots li button {
        border: 2px solid #d2d2d2!important;
        background: #d2d2d2;
    }

    .carousel .slick-dots{
      bottom: 20px!important;
      /*left: -48%;  2 Slides */
      /* left: -47%;   /*3 Slides */
      /*left: -45.5%;   4 Slides */
      left: -44.5%;  /* 5 Slides */
    }


    .container.current-comp-container.second .slick-dots{
      display:none!important;
    }

    

    .current-comp-container.second .right-col.cus-slider-text {
        padding-left: 86px;
    }

    .container.current-comp-container .right-col.cus-slider-text.aos-init.aos-animate {
        padding-right: 38px;
    }

    .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;
      width:13px;
      height:13px;
      border: 2px solid rgb(240, 23, 55, 1)!important;
      width: 20px;
      height: 20px;
      background: #fff !important;
    }

  .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: 28px 0 4px 1px;
      /*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:25px;
    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: 25px 0 25px 0;
      font-weight:700;
  }

  .button-round.solid:hover{
    background:#000;
    border: 1px solid #000;
  }


  span.button-round.mobile.text-uppercase {
      display: none;
      max-width: 209px;
  }


  #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;
  }


  .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;
      text-transform: uppercase;
    }

    .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;
    display:none;
  }

  .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: 30px;
    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%;
    }



    .current-comp-container .carousel .slide-content,
    .carousel .slide-content {
        /*flex-direction: column-reverse!important;*/
        flex-direction:column;
    }

    .current-comp-container .carousel .slide-content,
    .carousel .slide-content .right-col{
      order:2;
    }

    .current-comp-container .carousel .slide-content,
    .carousel .slide-content .left-col{
      order:1;
    }

    .current-comp-container .carousel .slick-dots,
    .carousel .slick-dots {
        bottom: -25px !important;
        left: 0;
        text-align:left;
    }


    #mega-winners .inner{
      margin:0 10px;
    }


    /*.carousel .slide-content {
        flex-direction: column;
    }

    .carousel .right-col{
      order: -1; 
    }

    .carousel .left-col {
        order: 0;
    }*/

    .subtext { font-size: 20px!important; }
    .main-text { font-size: 14px!important;
      height: 55px!important; }
    .description { font-size: 14px; }
    .logo img { max-width: 110px; }


    

  }




  /* Mega Partners */

  div#mega-partners {
      text-align: center;
      margin: 76px 0;
  }


  #mega-partners span.text-red.text-align-center {
      margin-bottom: 40px;
      display: block;
  }


  .logo-slider {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .logo-track {
      display: flex;
      align-items: center;
      gap: 92px;
      width: max-content;
      animation: scroll 100s linear infinite;
    }

    .logo-track img {
      width: 178px;
      height: 101px;
      object-fit: contain;
      flex-shrink: 0;
    }

    /* Pause on hover (optional) */
    .logo-slider:hover .logo-track {
      /*animation-play-state: paused;*/
    }

    @keyframes scroll {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }



  .text-align-center{
    text-align:center;
  }


  #mega-winners{
    margin::86px 0;
    text-align:center;
  }


  .paragraph{
    color: #565656;
    margin:15px 0 0 0;
  }


  #mega-membership{
    text-align:center;
    margin: 26px 0 0 0;
  }



  /* ===== Layout ===== */
  .mega-columns {
    max-width: 1320px;
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .mega-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* ===== Mega Thumb ===== */
  .mega-thumb {
    height: 260px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transform: translateY(60px) scale(0.96);
    opacity: 0;
    transition:
      transform 0.9s cubic-bezier(.2,.8,.2,1),
      opacity 0.9s ease;
  }

  .mega-thumb.is-visible {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  /* ===== Backgrounds ===== */
  .mega-thumb__bg,
  .mega-thumb__hover {
    position: absolute;
    inset: 0;
    transition: opacity 0.6s ease;
  }

  .mega-thumb__bg {
    background-size: cover;
    background-position: center;
  }


  .mega-thumb__bg.one{
  background:
      linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.25)),
      url("https://megarewards.au/wp-content/uploads/2026/02/moment-img1.png");
      background-repeat: no-repeat;
      background-size: cover;
  }

  .mega-thumb__bg.two{
  background:
      linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.25)),
      url("https://megarewards.au/wp-content/uploads/2026/02/moment-img2.png");
      background-repeat: no-repeat;
      background-size: cover;
  }

  .mega-thumb__bg.three{
  background:
      linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.25)),
      url("https://megarewards.au/wp-content/uploads/2026/02/moment-img3.png");
      background-repeat: no-repeat;
      background-size: cover;
  }

  .mega-thumb__bg.four{
  background:
      linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.25)),
      url("https://megarewards.au/wp-content/uploads/2026/02/moment-img4.png");
      background-repeat: no-repeat;
      background-size: cover;
  }

  .mega-thumb__hover {
    background: #e10600;
    opacity: 0;
  }

  .mega-thumb:hover .mega-thumb__bg { opacity: 0; }
  .mega-thumb:hover .mega-thumb__hover { opacity: 1; }

  /* ===== Content ===== */
  .mega-thumb__content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 36px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align:left;
    transition: transform 0.6s ease;
  }

  .mega-thumb:hover .mega-thumb__content {
    transform: translateY(-6px);
  }

  /* ===== Icon (PNG swap) ===== */
  .mega-thumb__icon {
    width: 46px;
    height: 46px;
    /*border-radius: 50%;
    background: rgba(255,255,255,0.15);*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    transition: background 0.4s ease;
  }

  .mega-thumb__icon img {
    width: 40px;
    height: 40px;
    position: absolute;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .mega-thumb__icon img.white { opacity: 1; }
  .mega-thumb__icon img.black { opacity: 0; }

  .mega-thumb:hover .mega-thumb__icon {
    /*background: rgba(0,0,0,0.15);*/
  }

  .mega-thumb:hover .mega-thumb__icon img.white {
    opacity: 0;
    transform: scale(0.9);
  }

  .mega-thumb:hover .mega-thumb__icon img.black {
    opacity: 1;
  }

  /* ===== Text ===== */
  .mega-thumb__title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
  }

  .mega-thumb__desc {
    margin: 0;
    font-size: 14px;
    max-width: 420px;
    line-height: 1.3;
    opacity: 0.9;
  }



  /* 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;
  }


  /* ---------- Badge ---------- */
  .badge-anchor {
    position: relative;
    height: 1px; /* reference point */
    display:none;
  }

  .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;
    box-shadow: 3px 1px 12px rgb(215 215 215 / 70%);
  }

  .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;
    text-align:left;
  }

  .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;
    color: #000;
    border-top: 2px solid #000;
    padding: 15px 0 0 0;
    font-size:20px;
    font-family: 'Orbitron', sans-serif;
    text-transform:uppercase;
  }


  .mega-carousel-content p {
      color: #000;
      font-size:14px;
      font-family: 'Montserrat', sans-serif;
  }

  .mega-carousel-role {
    font-size: 16px;
    opacity: 0.85;
    color: #000;
    font-family: 'Montserrat', sans-serif;
  }

  /* =========================
     ARROWS (CENTER-LOCKED)
  ========================= */
  .mega-carousel-arrow {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: red;
    color: #000;
    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: 99999;
    /*display:none;*/
  }

  .countdown-overlay.show {
    opacity: 1;
    visibility: visible;
    display:none;
  }

  /* Countdown Container */
  .countdown-container {
    /*background: url('https://megarewards.au/wp-content/uploads/2026/01/countdown-popup-bg.png') no-repeat center center/cover;*/
    /*background: url('https://megarewards.au/wp-content/uploads/2026/03/AFL-Gather-Round-Popup-Desktop.jpg') no-repeat center center/cover;*/
    background: url('https://megarewards.au/wp-content/uploads/2026/03/AFL-Gather-Round-Popup-Desktop.jpg') no-repeat;
    color: #fff;
    padding: 130px 20px;
    text-align: center;
    border-radius: 12px;
    position: relative;
    max-width: 902px;
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    background-size: cover;
    height: 467px;
  }


  .countdown-container a{
    color: #fff;
    display: block;
    padding: 30px 180px;
  }



  /* Close Icon - outside but attached to top-right corner */
  .countdown-close {
    position: absolute;
    top: -35px;
    right: -28px;
    font-size: 35px;
    cursor: pointer;
    color: #fff;
    z-index: 10;
    transition: transform 0.3s;
    border-radius: 50%;
    border: 2px solid #fff;
    width: 37px;
    height: 37px;
    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;
    }



  .popup-box{
    opacity:0;
  }

  .popup-box h2 {
      font-size: 26px;
      font-weight: 700;
      margin: 22px 0;
      font-family: 'Orbitron', sans-serif;
      font-weight:900;
      text-transform: uppercase;
  }

  .popup-box p {
      font-size: 16px;
      max-width: 545px;
      font-family: 'Montserrat', sans-serif;
  }

  .logo-row img {
      position: relative;
      margin: 0 19px;
  }


  .logo-row span {
      position: relative;
  }

  .logo-row span:before {
      content: '';
      position: absolute;
      top: -28px;
      left: 0;
      width: 2px;
      height: 80px;
      background: #fff;
  }


  #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;
    }


    #memberPopupContent h2{
      font-size:34px;
    }

    #memberPopupContent p{
      font-size:14px;
    }



  .video-wrapper {
    width: 634px;   /* Desktop width */
    height: 446px;  /* Desktop height */
  }

  .video-wrapper video {
    width: 100%;
    height: 100%;
    border-radius:30px;
    background:#000;
    min-height:356px;
  }


  span.icon.message-us img {
      width: 27px;
  }


  .slide-content.coming-soon .left-col img{
    margin: 0 auto;
  }



  /* Who we are video */

  .yt-player{
    position:relative;
    /*width:100vw;
    height:100vh;*/
    overflow:hidden;
    background:#000;
  }

  .yt-video{
    width:100%;
    height:100%;
    object-fit:contain;
    background:#000;
    border-radius:0!important;
  }

  /* =========================
     DEFAULT THUMBNAIL
  ========================= */

  .yt-main-thumbnail{
    position:absolute;
    inset:0;
    z-index:50;
    background:#000;
  }

  .yt-main-thumbnail img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .yt-thumbnail-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
  }

  .yt-main-play{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
  }

  .yt-main-play:hover{
    transform:translate(-50%,-50%) scale(1.08);
  }

  .yt-main-play::before{
    content: '';
    border-left: 28px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 8px;
  }

  /* =========================
     CONTROLS
  ========================= */

  .yt-controls{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:20;
    padding:5px;
    background:linear-gradient(to top, rgba(0,0,0,.95), transparent);
    transition:opacity .3s ease;
  }

  .yt-player.hide-controls .yt-controls{
    opacity:0;
    pointer-events:none;
  }

  /* =========================
     PROGRESS BAR
  ========================= */

  .yt-progress-container{
    width:100%;
    height:5px;
    background:rgba(255,255,255,.2);
    border-radius:50px;
    cursor:pointer;
    margin-bottom:5px;
    overflow:hidden;
    transition:.2s;
  }

  .yt-progress-container:hover{
    height:7px;
  }

  .yt-progress{
    width:0%;
    height:100%;
    background:#ff0000;
    border-radius:50px;
    transition:width .05s linear;
  }

  /* =========================
     CONTROL BOTTOM
  ========================= */

  .yt-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .yt-left{
    display:flex;
    align-items:center;
    gap:12px;
  }

  .yt-btn{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff;
    cursor:pointer;
    font-size:16px;
    backdrop-filter:blur(10px);
  }

  .yt-time{
    color:#fff;
    font-size:14px;
  }

  /* =========================
     UP NEXT
  ========================= */

  .yt-upnext{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.88);
    z-index:40;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
  }

  .yt-upnext-box{
    width:100%;
    max-width:700px;
    text-align:center;
  }

  .yt-upnext-label{
    color:#fff;
    font-size:23px;
    font-weight:bold;
    /*margin-bottom:25px;*/
  }

  .yt-upnext-card{
    background: #111;
    border-radius: 22px;
    padding: 18px;
    max-width: 260px !important;
    margin: 0 auto;
  }

  .yt-next-thumb-wrap{
    position:relative;
  }

  .yt-next-thumb{
    width:100%!important;
    max-height:144px!important;
    object-fit:cover!important;
    border-radius:0!important;
    /*max-width:214px!important;*/
    margin:0 auto;
  }

  .yt-duration{
    position:absolute;
    right:12px;
    bottom:12px;
    background:rgba(0,0,0,.85);
    color:#fff;
    padding:5px 9px;
    border-radius:6px;
    font-size:12px;
  }

  .yt-next-title{
    color: #fff;
    font-size: 17px;
    line-height: 1.3;
    margin-top: 9px;
  }

  .yt-channel{
    color: #aaa;
    margin-top: -2px;
    font-size: 10px;
    display:none;
  }

  span#ytTimer {
      color: #e10600;
  }

  .yt-buttons{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-top:25px;
  }

  div#ytMainThumbnail #ytDefaultThumb {
      /*height: auto;*/
      border-radius:0!important;
  }

  .yt-buttons button{
    border: none;
    border-radius: 50px;
    padding: 7px 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
  }

  #ytCancelBtn{
    background:#222;
    color:#fff;
  }

  #ytPlayNowBtn{
    background:#fff;
    color:#000;
  }

  /* =========================
     REPLAY SCREEN
  ========================= */

  .yt-replay-screen{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.88);
    z-index:45;
    display:none;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    text-align:center;
    padding:20px;
  }

  .yt-replay-screen h2{
    color: #fff;
    font-size: 14px;
    margin-bottom: 14px;
    display:none;
  }

  .yt-replay-btn{
    border:none;
    background:#fff;
    color:#000;
    padding:18px 35px;
    border-radius:50px;
    cursor:pointer;
    font-weight:bold;
    font-size: 13px;
  }

  /* =========================
     MOBILE
  ========================= */

  @media(max-width:768px){

    .yt-main-play{
      width:80px;
      height:80px;
    }

    .yt-main-play::before{
      border-left:24px solid #fff;
      border-top:15px solid transparent;
      border-bottom:15px solid transparent;
    }

    .yt-controls{
      padding:12px;
    }

    .yt-upnext-label{
      font-size:22px;
    }

    .yt-next-title{
      font-size:22px;
    }

    .yt-buttons{
      flex-direction:column;
    }

    .yt-buttons button{
      width:100%;
    }

    .yt-replay-screen h2{
      font-size:24px;
    }

  }



  /* end of who are are video */

  /* 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(37vw, -50%);
          }

          .mega-carousel-content {
            border-radius: 0 0 20px 20px;
            padding: 24px;
          }

          .mega-carousel-quote {
            font-size: 28px;
          }

      }
      
      /* Responsive styles */
      @media (max-width: 768px) {


        .overlay-content .title {
          width: 196px;
        }

        .video-wrapper {
          width: 100%;
          height:auto;
          /*height: 306px;*/
          /*aspect-ratio: 16 / 9;*/
        }

        .right-col span.button-round{
          display:none;
        }

        .video-content .container{
          padding:0;
        }

        .mega-column{
          gap: 8px;
        }


        .mega-column {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }


        .video-content{
          margin: 50px 0 15px 0;
        }


        .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;
        }

        #memberPopupContent h2{
          font-size:23px;
        }

        #memberPopupContent p {
            font-size: 14px;
        }

        .mega-carousel-arrow.left{
          left: 46%;
        }

        .mega-carousel-slide{
          display:block;
          box-shadow: none;
        }


        .mega-thumb__content{
          padding:20px;
        }

        .current-comp-container span.text-red {
            color: #000;
            font-size: 16px;
        }

        span.text-red{
          font-size: 22px;
          /*padding:0 3px;*/
        }

        .mega-carousel-name{
          font-size:14px;
        }

        .mega-carousel-role {
          font-size: 12px;
        }


        .paragraph{
          padding: 0 4px;
          font-size:14px;
        }

        .cus-slider-text h2 {
            color: #000;
            font-size: 14px;
            font-weight: 600;
          }

        .current-comp-container .paragraph{
          padding:0;
          line-height: 21px;
        }

        .cus-slider-text a.btn-free-enter.current-comp{
          font-size:14px;
          font-weight:900;
        }

        span.button-round.mobile.text-uppercase {
            display: block;
            max-width: 240px;

        }

        .container.current-comp-container {
            margin: 2px auto 0 auto;
          }

        /*.slide-content span.button-round{
          display:none;
        }*/


        .feature-content{
          height:auto;
        }

  .header-bottom{
    z-index: 99999;
    position: absolute;
    top: 0;
    width: 100%;
    background:#fff;
  }

        /* Keep header fixed on top */
    #header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10000;
      background: white;
    }

    .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;
    }



        
        .container.current-comp-container .right-col.cus-slider-text.aos-init.aos-animate{
          padding:0;
        }
        
        .hero-logo img {
            max-width: 97px;
        }

        .countdown-container{
          /*background: url(https://megarewards.au/wp-content/uploads/2026/03/AFL-Gather-Round-Popup-Mobile.jpg) no-repeat center center / cover;*/
          background: url(https://megarewards.au/wp-content/uploads/2026/03/AFL-Gather-Round-Popup-Mobile.jpg) no-repeat;
          background-size:cover;
          text-align:center;
          max-width: 330px;
          /*padding: 80px 20px;*/
        }

        /* 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;
        }

        .footer-logo-social {
            display: block;
        }

        .footer-social {
          margin: 20px 0 0 0;
        }

        .mega-carousel-slide.mega-active .mega-carousel-content {
            /* border-radius: 0; */
            border-radius: 0 0 20px 20px;
        }

        .mega-carousel-quote img {
            width: 12%;
        }
        


     /************************************************************** 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;
        }

        .mobile-btn .btn-red.border-40{
          font-size:18px;
          width:auto;
          height:auto;
          padding: 15px 28px;
        }

        .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;
        }

        div#mega-reels .inner {
            padding: 0 2px;
        }

        .popup-box h2{
          font-size: 17px;
        }

        .popup-box p {
          font-size: 12px;
        }

        .logo-row img.partner1 {
            width: 52px;
        }

        .logo-row img.partner2 {
            width: 82px;
        }

        .logo-row span:before {
            top: -24px;
            height: 72px;
        }


        .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: 11px 0 0 23px;
        }

        .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: 8px 0 0 21px;
        }


        .footer-social a {
          text-align: left;
          margin: 0 -9px;
        }


        .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;
          }

      }


      @media (max-width: 480px) {
        .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;
          }

      }


      @media (max-width: 356px) {
          .main-text {
              font-size: 12px !important;
              padding: 20px 24px!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:#F01737;
      }

      .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:#F01737;
      }

      /*.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: #E10600;
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    padding: 16px 24px;
    margin-bottom: 20px;
    height: 69px;
    font-weight: 900;
  }

  /* Description */
  .description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    color:#fff;
    font-weight:500;
    font-family: 'Montserrat', sans-serif;
  }

  /* 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;
  }


  /*//////////////////////////////////////// END NEW STYLES ///////////////////////////////////////////*/

