/* CSS Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color:#ffffff;  
  background-color: black;
  background: url("../img/membershipmk88rewardcom/background-img.png");
  background-size: cover;
  background-position: right;
}
.title-1{
  color:#ffc200;
  font-size: 22px;
}

.title-2{
  color:#ffc200;
  font-size: 18px;
}
.float-right-top{
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 10px;
}
.vipprogram-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vipprogram-container {
  padding: 20px 0;
  border-radius: 10px;
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
  max-width: 900px;
  width: 100%;
  /*background: url('img/top-3.png') no-repeat center center;
  background-size: cover; /* Ensures the image covers the entire container */
}

.vipprogram-model{
  width: 100%;
}

.neon-button {
  background-color: #ffbb00;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  position: absolute;
  top: 10px;
}

.vipprogram-status{
  padding-top: 5%;
  text-align: center;

}

.vipprogram-status b {
  font-size: 20px;
}

.vipprogram-status p {
  font-size: 16px;
}

.progress-bar {
  text-align: left;
  background-color: #ddd;
  border-radius: 5px;
  height: 20px;
  width: 100%;
  position: relative;
  margin: 20px 0;
}

.Bar-Width {
  background-color: #ffcc00;
  height: 100%;
  border-radius: 5px;
  display: inline-block;
  background: repeating-linear-gradient(
        330deg,
        #ffd438, /* Light Blue */
        #e0b000 10px,
        #705800 10px,
        #705800 20px
    );
    background-size: 40px 40px; /* Adjust size to control stripe width and spacing */
    animation: stripeRunning 10s linear infinite; /* Adjust speed as needed */
    width: 0%; /* Example width for progress */
    transition: width 0.3s ease;
}

.status-level {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap; /* Prevent wrapping */
    margin-top: 20px;
    padding: 10px;
}

.all-level {
    flex: 0 0 auto; /* Prevent items from shrinking */
    padding: 0 5px 0 0;
    border-radius: 5px;
    color: #ffffff;
    text-align: right;
    font-size: 14px; /* Smaller font size */
    width: 20%; /* default width */
}
.section-hr{
  width:100%;
  display: inline-block;
}

.level-hr {
  height: 4px;
  border: none;
  width: 50px;
  margin: 0;
  float: right;
}

.vipprogram-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

.vipprogram-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.vipprogram-table td {
  padding: 10px;
}

.vip-icon img {
  width: 80px;
}
.vipprogram-table-wrapper{
  border: 2px solid #ffc200;
  border-radius: 20px;
  padding: 5px;
}
.vipprogram-table tr:nth-child(n+3) {
  border-top: 2px solid #ffc200;
}
.rewards-tr{
  height: 150px;
}
.rewards-tr td {
  font-size: 14px;
  align-items: center;
  padding: 10px; /* Optional: Adjusts spacing inside cells */
}

.rewards-tr td .reward-item {
  margin-bottom: 5px; /* Space between the amount and the button */
}

.button-claim {
  padding: 5px;
  background-color: #ffbb00;
  color: #ffffff;
  margin-top: 0; /* Ensure no extra margin at the top of the button */
  border-radius: 5px;
  cursor: pointer;
}
.button-claim-disable {
  padding: 5px;
  background-color: grey;
  color: #ffffff;
  margin-top: 0; /* Ensure no extra margin at the top of the button */
  border-radius: 5px;
}

.footer {
  margin-top: 30px;
  padding: 10px 10px 50px 10px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}
/*scroll down popup */
        .popup-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

/* Popup Container Submit Button */
        .popup-container input[type="submit"],.popup-container input[type="button"] {
            background-color: #ffbb00;
        }
        .popup-container input[type="submit"]:hover,.popup-container input[type="button"]:hover {
            background-color: #ffbb00;
        }

        .popup {
            background-color: #806a1c;
            color: #ffffff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 300px;
            margin: auto;
        }

        #popupMessage {
            margin-bottom: 20px;
            display: block;
        }

        .popup button {
          background-color: #ffbb00;
          color: #ffffff;
          border: none;
          padding: 10px 20px;
          text-align: center;
          text-decoration: none;
          display: block;
          font-size: 16px;
          border-radius: 5px;
          cursor: pointer;
          margin: 5px auto;
        }

/* Keyframe Animation for Diagonal Stripes Effect */
@keyframes stripeRunning {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@media only screen and (max-width: 600px) {
  .vipprogram-container {
    width: 90%;
  }
  .vipprogram-status b {
    font-size: 12px;
  }

  .vipprogram-status p {
    font-size: 10px;
  }
  .all-level {
    font-size: 10px;
  }
  .title-1{
    font-size: 14px;
  }
  
  .title-2{
    font-size: 12px;
  }
  .footer{
    font-size: 12px;
  }
  .footer h2{
    font-size: 14px;
  }
  .rewards-tr td {
    font-size: 10px;
  }
  .vipprogram-table td {
    font-size: 12px;
    min-width: 80px !important;
    white-space: nowrap;
  }
  .vipprogram-table tr td:first-child {
    text-align: left;
    font-size:12px;
  }
  .vip-icon img {
    width: 50px;
  }
  .neon-button {
    font-size: 12px;
  }
}