* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: radial-gradient(circle at top, #1a002f 0%, #000 90%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px 20px;
    overflow-x: hidden;
    margin-top: 0;
    overflow-y: hidden;
}


.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 7px solid transparent;
  background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);

}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.premium {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: black;
  font-size: 16px;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

h1 {
    font-size: 40px;
  font-weight: 900;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #FFD700, #FFB800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: 800;
    text-shadow: #ff00cc;
}

.subs {
  color: white;
  margin-bottom: 25px;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 15px;
}

.description {
  font-size: 18px;
  line-height: 1.3;
  color: white;
  margin-bottom: 25px;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  max-width: 480px;

}
span{
  color: yellow;
  font-weight: bold;
}
.highlight {
  color: gold;          
  font-weight: 700;   
}

.highlight2 {
  color: #00ffff;    
  font-weight: 700;
  text-shadow: 0 0 10px #00ffff;
}

.join-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-weight: bold;
  padding: 16px 30px;
  font-size: 18px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  animation: zoomInOut 1.5s infinite ease-in-out; 
  font-family:Georgia, 'Times New Roman', Times, serif;
  margin-bottom: 20px;
}

.join-btn:hover {
  background: #0aceec;
  color: #f8f8f8;
}

.small-card {
  display: flex;
  justify-content:center;
  gap: 10px;              
  padding: 10px;
  flex-wrap: wrap;  
  margin-bottom: 25px;  
  margin-left: -25px; 
  margin-right: -25px; 
  padding-left: 20px;
  padding-right: 20px
}

.parts {
  flex: 1;
  background: linear-gradient(180deg, #2a0048 0%, #130024 100%);   
  border-radius: 15px;
  padding: 16px 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  font-weight: bold;
  
}
h3{
  color: #f7da05;
}

.parts:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}


.bottom-text {
  font-size: 17px;
  font-weight: bold;
  color: rgb(87, 230, 20);
  margin-top: 14px;
  display: flex;
  justify-content: center;
  white-space: nowrap; 
  overflow: hidden;
  margin-bottom: 20px;
}
.feature-item {
  margin-right: 5px; 
}

.feature-item:last-child {
  margin-right: 0;

.limited {
  color: rgb(249, 249, 249);
  padding: 5px 25px;
  border-radius: 25px;
  display: inline-block;
  margin-top: 25px;
  font-weight: 800;
  font-size: 15px;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  border: solid red;
  
}



@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}


/* --- EDITED MEDIA QUERY SECTION --- */
@media (max-width: 500px) {
  .card {
    padding: 1px;
  }
  /* H1 font size increased to 40px for mobile devices */
  h1 {
    font-size: 30px; 
  }
  
}

@media (max-width: 500px) {
  .small-card {
   .small-card {
    flex-direction: column; 
    gap: 10px;
    align-items: center;
    margin-left: -20px; 
    margin-right: -20px; 
    padding-left: 20px; 
    padding-right: 20px
  }
  .parts {
    width: 90%;
    padding: 20px 12px;
  }
  .join-btn {
    font-size: 18px;
    padding: 14px 25px;
  }
  .bottom-text{
    font-size: 12px;
   white-space: normal; 
  }
  .feature-item {
    margin-right: 2px
} 
