
html, body {
  margin: 0;
  padding: 0;
  background: black;
  overflow-y: auto;
  min-height: 100vh;
 }



#stars {
position: fixed;
top:0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 0;
}

.sous-title{
    display: flex;
    align-items: center;
    margin: 150px 0 80px 0;
    position: relative;
    z-index: 1;


}

.sous-title span {
    font-family: 'Bruno Ace SC';
    font-size: 48px;
    color: #ffc200;
    margin-left: 10px;
    white-space: nowrap; 
}

.sous-title::before {
    content: "";
    flex-grow: 1;       
    height: 5px;        
    background-color: #ffc200;
    display: block;   
}

.pricing-container{
    display : flex;
    justify-content: space-between; 
    align-items : flex-start;
    width: 90%;   
    margin:200px auto 100px auto; 
    box-sizing: border-box;
    margin-top: 0;
    position: relative;
    z-index: 1;
    overflow: visible;

}

.pricing-box{
    position: relative;
    width: 350px;
    height: 550px;
    background-color:transparent;
    border: 5px solid #ffc200;
    border-radius: 80px;
    text-align: center;
    font-family: 'Bruno Ace SC', sans-serif;
    color:white;
    font-size: 36px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 194, 0, 0.3); 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    
}

.economy{
    position: relative;
    border: 30px solid #ffc200;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 250px;
}
.business{
    position: relative;
    border: 30px solid #ffc200;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 250px;
}

.first{
    position:relative;
    border: 50px solid #ffc200;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 250px;
}

.pricing-box:hover{
    transform: scale(1.05);
    border-color: #ffc200;
    box-shadow: 0 0 40px white, 0 0 80px white;
} 

.pricing-box {
    position: relative;
    overflow: hidden;
}

pricing-box::before { 
    content: ""; 
    position: absolute; 
    top: 0; left: 0; right: 0; bottom: 0; 
    background: rgba(0, 0, 0, 0.3); 
    border-radius: 80px; 
    z-index: 0; 
    
  }

  .shine::before{
    animation: shine-move 1s ease-in-out;
}

@keyframes shine-move {
    0%{left: -75%;}
    50%{left: 125%;}
    
}

.pricing-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 20px;
    padding-top: 150px;
    box-sizing: border-box;
    overflow: visible; 
}
  .image-space{
    height: 100px;
    width: 100%;
  }
  .pricing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
 
  .pricing-box h2,
  .pricing-box p,
  .pricing-box button {
    margin: 0;
    padding: 0;
  }
  
  
  .pricing-box h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    border-bottom: 5px solid #ffc200;
  }
  
  
  .pricing-box p {
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
  }
  
  
  .pricing-box .price {
    font-size: 28px;
    color: #ffc200;
    margin-top: 15px;
    font-family: 'Bruno Ace SC', sans-serif;
  }
  
  
  .pricing-box button {
    margin-bottom: 40px;
    background-color: #ffc200;
    color: black;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 25px;
  }
  
  .pricing-box button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #ffc200;
  }
  .image-space{
    height: 180px;
    width: 125px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .image-space img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .pricing-box:nth-child(2) .image-space,
  .pricing-box:nth-child(3) .image-space {
    height: 175px;
    width: 90%;
  }

  @media screen and (max-width: 768px) {
    .pricing-container {
      flex-direction: column !important;
      justify-content: flex-start !important;
      align-items: center !important;
      gap: 40px;
      width: 95%;
      margin: 100px auto;
    }

    .pricing-box {
      width: 90% !important;
      max-width: 350px;
      margin: 0 !important;
    }

    .sous-title {
      margin: 100px 0 40px 0;
    }

    .sous-title span {
      font-size: 32px;
    }
  }

  @media screen and (max-width: 480px) {
    .pricing-container {
      width: 100%;
      padding: 0 10px;
      box-sizing: border-box;
    }

    .pricing-box {
      width: 95% !important;
      max-width: none !important;
      height: auto;
      min-height: 500px;
    }

    .pricing-box h2 {
      font-size: 28px;
    }

    .pricing-box p {
      font-size: 16px;
    }

    .pricing-box .price {
      font-size: 24px;
    }

    .pricing-box button {
      font-size: 16px;
      padding: 8px 20px;
    }

    .sous-title {
      margin: 80px 0 30px 0;
    }

    .sous-title span {
      font-size: 24px;
    }
  }