
  .star {
    font-size: 28px;
    color: transparent;  /* पूरा स्टार ट्रांसपेरेंट रहेगा */
    -webkit-text-stroke: 1px gray; /* ग्रे बॉर्डर दिखेगा */
    cursor: pointer;
    transition: 0.3s;
}

.star.checked {
    color: gold; /* क्लिक होने के बाद गोल्डन कलर हो जाएगा */
    -webkit-text-stroke: 0px; /* बॉर्डर हट जाएगा */
}









    
    .container {
       /* background-image: linear-gradient(90deg, 
       rgba(153, 188, 237, .2), 
       rgba(153, 248, 207, .3),
        rgba(255, 214, 199, .3)); */
      
        padding: 20px;
        border-radius: 15px;
        /* box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3); */
        width: 90%;
        max-width: 420px;
        text-align: center;
        color: black;
        margin: 20px auto;
        background: white;
    }
    h2 {
        font-size: 28px;
        font-weight: bold;
        text-transform: uppercase;
    }
    .launch-date {
        font-size: 20px;
        font-weight: bold;
        color: #ff5722;
        margin: 10px 0;
    }
    .owner-name {
        font-size: 18px;
        font-weight: bold;
        color: black;
        margin-bottom: 15px;
    }
    .participants-section {
        margin: 15px 0;
        font-size: 20px;
        font-weight: bold;
        color: #1dcab3;
    }
    .participants {
        display: flex;
        justify-content: space-around;
        margin: 10px 0;
        flex-wrap: wrap;
    }
    .participants div {
        color: #0c0d0d;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    width: 45%;
    margin: 5px 0;
    border: 0.1px solid #1dcab3;
    font-weight: bold;
    background-image: linear-gradient(90deg, rgba(153, 188, 237, .2), rgba(153, 248, 207, .3), rgba(255, 214, 199, .3));
    }
    .income-section {
        margin: 15px 0;
    font-size: 22px;
    font-weight: bold;
    color: #1dcab3;
    }
    .income-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .income-box {
        background: #4caf5000;
    color: #46463e;
    padding: 2px;
    border-radius: 0px;
    font-size: 15px;
    font-weight: bold;
    display: flex
;
   
    align-items: center;
    /* width: 90% !important; */
    border-top: 1px solid #1dcab3;
    /* width: 50% !important; */
  
    border-bottom: 1px solid #1dcab3;
    justify-content: center;

    }
    .referral {
        margin: 15px 0;
    }
    .referral input {
        padding: 5px;
    text-align: center;
    border: none;
    border-bottom: 1px solid #1dcab3;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    background: #d5f8f4;
    }
    .share-btn {
        background: #1dcab3;
    color: white;
    padding: 10px 13px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    margin-left: 5px;
    font-size: 18px;
    }
    .rating {
        margin: 15px 0;
    }
    .rating i {
        font-size: 35px;
   
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    }
    .rating i:hover {
        transform: scale(1.2);
    }
    .submit-btn {
        background: #1dcab3;
    color: #fefefe;
    padding: 10px;
    border: 2px solid #1dcab3;
    cursor: pointer;
    border-radius: 58px;
    font-size: 18px;
    width: 100%;
    font-weight: bold;
    background-image: linear-gradient(299deg, rgba(153, 188, 237, .2), rgba(153, 248, 207, .3), rgba(255, 214, 199, .3));
    }
    .footer {
        margin-top: 20px;
        font-size: 16px;
        color: #333;
        font-weight: bold;
    }
    .bonus-info {
        margin-top: 15px;
    font-size: 12px;
    color: gray;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2px;
    }
    @media (max-width: 600px) {
        .container {
            width: 95%;
            padding: 15px;
        }
        h2 {
            font-size: 24px;
        }
        .launch-date, .owner-name, .participants-section, .income-section {
            font-size: 18px;
        }
        .participants div, .income-box {
            width: 45%;
        }
         .income-box {
            width: 100%;
        }
        .referral input {
            width: 80%;
        }
    }




    .launch-date {
        font-size: 13px;
        font-weight: bold;
        color: #ff5722;
        font-family: monospace;
        white-space: nowrap;
        overflow: hidden;
        display: inline-block;
        border-right: 2px solid #ff5722; /* Cursor Effect */
      }
    
    
      .crazy-text {
        font-size: 24px;
        margin-top: 7px;
        font-weight: bold;
        display: inline-block;
        animation: crazyEffect 1s infinite alternate;
       color: red;
      }
    
/* model 
 */
 .total{
    color: #0c0d0d;
      padding: 10px;
      border-radius: 10px;
      font-size: 16px;
      width: 100%;
      
      border: 0.1px solid #1dcab3;
      font-weight: bold;
      background-image: linear-gradient(90deg, rgba(153, 188, 237, .2), rgba(153, 248, 207, .3), rgba(255, 214, 199, .3));
  }
  /* 🔘 Crazy Button Style */
  .crazy-btn {
      background: linear-gradient(45deg, #ff00ff, #ff8800);
      border: none;
      color: white;
      padding: 12px 20px;
      font-size: 18px;
      font-weight: bold;
      border-radius: 50px;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 0 10px #ff00ff;
  }
  
  .crazy-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 0 20px #ff8800;
  }
  
  /* 🔥 Modal Background */
  .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      justify-content: center;
      align-items: center;
  }
  
  /* 🔥 Glassmorphism Effect */
  .modal-content {
    /*background-image: linear-gradient(299deg, rgba(153, 188, 237, .2), rgba(153, 248, 207, .3), rgba(255, 214, 199, .3));*/
      border-radius: 20px;
      background: white;
      padding: 20px;
      width: 90%;
      max-width: 500px;
      text-align: center;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      color: black;
      font-family: Arial, sans-serif;
  }
  
  /* ❌ Close Button */
  .close {
    margin-right: -300px !important;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      color: #1DCAB3;
  }
  
  /* 🚀 Heading */
  h2 {
      color:rgb(15, 15, 15);
     
  }
  
  /* 🏆 Count Styling */
  .count {
      font-size: 20px;
      font-weight: bold;
      color:rgb(15, 13, 11);
     
  }
  
  /* 📱 Table Styling */
  .table-container {
      max-height: 300px;
      overflow-y: auto;
     
  }
  
  table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
  }
  
  th, td {
      padding: 12px;
      text-align: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  th {
      background: rgba(255, 255, 255, 0.2);
      color: #1DCAB3;
  }
  
  td {
      background: rgba(255, 255, 255, 0.1);
  }
  
  /* 📱 Mobile Responsive */
  @media screen and (max-width: 480px) {
      .modal-content {
          width: 95%;
          padding: 15px;
      }
  
      table {
          font-size: 14px;
      }
  
      th, td {
          padding: 8px;
      }
  }