  /* template css */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
    }
.card img {
    width: 120px !important;
}
    .header_full {
      background: #fff;
      border-bottom: 1px solid #f1e7e4;
    }
.heading_btn h2 {
    font-size: 24px;
    font-weight: 600;
}
    section.container_h {
      max-width: 1280px;
      margin: 0 auto;
      width: 100%;
    }

    section.container {
      max-width: 1280px;
      margin: 0 auto;
      width: 100%;
      padding: 20px;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 20px;
      /* background: #fff; */
      /* border-bottom: 1px solid #f1e7e4; */
    }

    /* Left section (Logo + Menu) */
    .left {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .logo {
      font-size: 20px;
      font-weight: 600;
      color: #01b3a7;
    }

    .menu a {
      margin: 0 10px;
      text-decoration: none;
      color: #222;
      font-size: 15px;
    }

    /* Search box */
    .search-box {
      display: flex;
      align-items: center;
      background: #f0f0f2;
      padding: 8px 14px;
      border-radius: 8px;
      color: #666;
    }

    .search-box input {
      border: none;
      background: none;
      outline: none;
      margin-left: 8px;
      font-size: 14px;
    }

    /* Right section (icons + points + avatar) */
    .right {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .icon {
      position: relative;
      font-size: 18px;
      color: #222;
      cursor: pointer;
    }



    .points_number {
      font-weight: 600;
      color: #00bfa5;
    }

    .avatar {
      background: #00bfa5;
      color: #fff;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .reward-card {
      width: 100%;
      max-width: 1280px;
      background: linear-gradient(90deg, #26b0a6, #34d6c5);
      color: #fff;
      padding: 25px 40px;
      border-radius: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

    }

    .reward-left {
      flex: 1;
    }

    .reward-left h2 {
      font-size: 28px;
      font-weight: 700;
    }

   .reward-left p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 12px;
}

    .progress-bar {
      position: relative;
      height: 14px;
      /* width: 100%; */
      background: rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 8px;
    }

    .progress {
      height: 100%;
      width: 93%;
      /* Adjust progress here */
      background: linear-gradient(90deg, #6fdc6f, #4ecb4e);
    }

    .progress-labels {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      opacity: 0.9;
    }

    .reward-right {
      text-align: right;
    }

    .reward-right p {
      font-size: 13px;
      margin: 0;
    }

    .reward-right h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .reward-right .gift {
      background: #fff;
      border-radius: 10px;
      padding: 6px 10px;
      display: inline-block;
    }

    .reward-right img {
      width: 45px;
      height: auto;
      border-radius: 8px;
    }

    .heading_btn {
      display: flex;
      justify-content: space-between;
      width: 100%;
      margin: 20px auto;
      align-items: center;
    }

  button.design_btn {
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: #ef7a31;
}
    button.design_btn:hover {
      color: #fff;
    }
.time img.emoji {
    width: 30px !important;
    height: 30px !important;
}
.bottom .time {
    font-size: 14px;
    color: #fffefe;
    display: flex;
    align-items: center;
    gap: 10px;
}
    .card-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-bottom: 20px;
    }

    .card {
      flex: 1 1 300px;
      max-width: 400px;
      color: white;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      position: relative;
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .card:nth-child(4) {
      background: linear-gradient(to right, #36c75f, #47da72);
    }

    .card:nth-child(5) {
      background: linear-gradient(to right, #33b3a6, #3dd3c4);
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card:nth-child(2) {
      background: linear-gradient(to right, #8e2de2, #4a00e0);
    }

    .card:nth-child(3) {
      background: linear-gradient(to right, #ef7d36, #f29253);
    }

    .card:nth-child(6) {
      background: linear-gradient(to right, #682ad7, #7d49dd);
    }

  .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}
    .points {
      position: absolute;
      top: 25px;
      right: 12px;
      font-size: 22px;
      font-weight: bold;
    }

    .points span {
      display: block;
      font-size: 12px;
      font-weight: normal;
    }

   .desc {
    font-size: 14px;
    opacity: 0.9;
    color: #fff;
}

    .bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

.bottom .time {
    font-size: 14px;
    color: #fffefe;
}

    .level {
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
    }

    .card_row_first .card:nth-child(4) .level {
      background-color: #eb793a;
      color: #fff;
    }

    .card_row_first .card:nth-child(5) .level {
      background-color: #40c560;
    }
.card_row_first .card:nth-child(6) .level {
    background-color: #ffffff;
}

    .card:nth-child(2) .level {
      color: #4a00e0;
    }

    .card:nth-child(3) .level {
      color: #e27b00;
    }

    .card_row_first .card:nth-child(1) .level {
      background-color: #34c45c;
      color: #fff;
    }

    .card_row_first .card:nth-child(2) .level {
      background-color: #34c45c;
      color: #fff;
    }

    .card_row_first .card:nth-child(3) .level {
      background-color: #ef7a31;
      color: #fff;
    }

    .card_row_second .card:nth-child(1) .level {
      background-color: #ef7a31;
      color: #fff;
    }

    .card_row_second .card:nth-child(2) .level {
      background-color: #34c45c;
      color: #fff;
    }

    .card_row_second .card:nth-child(3) .level {
      background-color: #de323b;
      color: #fff;
    }

    .bonus-banner {
      margin: 0 auto;
      background: linear-gradient(90deg, #2ebf91, #5742cb, #f27121);
      color: white;
      text-align: center;
      border-radius: 12px;
      padding: 40px 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .card_row_second .card:nth-child(3) {
      background: linear-gradient(to right, #682ad7, #7d49dd);
    }

    .card_row_second .card:nth-child(2) {
      background: linear-gradient(to right, #33b4a7, #3bd1c1);
    }

    .card_row_second .card {
      background: linear-gradient(to right, #37c860, #45d970);
    }

    .card_row_first .card:nth-child(1) {
      background: linear-gradient(to right, #33b4a7, #3bd1c1);
    }

    .bonus-banner h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .bonus-banner p {
      font-size: 15px;
      opacity: 0.9;
      margin-bottom: 20px;
    }

    .bonus-banner button {
      background: #fff;
      color: #08a88a;
      border: none;
      font-size: 15px;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .bonus-banner button:hover {
      background: #e9e9e9;
      transform: scale(1.05);
    }
/*.second-hidden-offers .card h3 {
    color: #000000;
}

/*.second-hidden-offers .desc {
    color: #000000;
}*/
/*.second-hidden-offers .bottom .time {
    color: #000000;
}*/
/*.second-hidden-offers  h3 {
    color: #000000 !important;
}*/
 .card_1 {
    background: linear-gradient(to right, #33b4a7, #3bd1c1) !important;
}
.card_1 .level {
    background-color: #34c45c !important;
    color: #fff !important;
}

.card_2 {
    background: linear-gradient(to right, #8e2de2, #4a00e0) !important;
}

.card_2 .level {
    background-color: #34c45c !important;
    color: #fff !important;
}


.card_3 {
    background: linear-gradient(to right, #ef7d36, #f29253) !important;
}

.card_3 .level {
    background-color: #ef7a31 !important;
    color: #fff !important;
}

.card_4 {
    background: linear-gradient(to right, #36c75f, #47da72) !important;
}
.card_4 .level {
    background-color: #eb793a !important;
    color: #fff !important;
}
.card_5 {
    background: linear-gradient(to right, #33b3a6, #3dd3c4) !important;
}
.card_5 .level {
    background-color: #40c560 !important;
    color: #fff !important;
}


.card_6 {
    background: linear-gradient(to right, #682ad7, #7d49dd) !important;
}

.card_6 .level {
    background-color: #ffffff !important;
}


    @media only screen and (max-width: 767px) {
      nav.menu {
        display: none;
      }

      .search-box {
        display: none;
      }
 

    }

  .level {
    position: absolute;
        bottom: 20px;
    right: 20px;
}
.bottom .time {
    font-size: 14px;
    color: #fffefe;
    position: absolute;
        bottom: 20px;
}
.card.offer-link {
    position: relative;
    padding-bottom: 60px;
}
      .card-container {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
      }

      .offer-link {
        text-decoration: none;
        color: inherit;
        width: calc(33.333% - 10px);
        display: block;
      }

      .card {
        border: 1px solid #ddd;
        border-radius: 12px;
        padding: 20px;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
      }

      .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      }

      .points {
    font-weight: bold;
    color: #000000;
    font-size: 18px;
    background: #ffffff;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    text-align: center;
}

      .bottom {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
      }

      .hidden-offer {
        display: none !important;
      }

      .design_btn {
        background-color: #2c7;
        color: #fff;
        border: none;
        padding: 10px 25px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        transition: background-color 0.3s ease;
      }

      .design_btn:hover {
        background-color: #239a4b;
      }
