.thank-you {
    background-size: cover!important;
    height: 90vh;
    position: relative;
    margin-top:3px;
}

@keyframes slideUpFadeIn {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.vip-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin: -320px auto 40px;
    position: relative;
    z-index: 10;
    animation: slideUpFadeIn 1s ease-out 0.6s both;
    max-width: clamp(300px, 90%, 500px);
}
body.dark-mode .vip-card{
    background:#1e1e1e;
}
.vip-card h2 {
    color: #7f00ff;
    margin-bottom: 15px;
    font-size: 2em;
}
body.dark-mode .vip-card h2{
    color:#fff;
}
.vip-card p {
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;
}
body.dark-mode .vip-card p{
    color:#fff;
}
.vip-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  text-align: center;
  align-items: stretch;
}

.vip-feature-box {
  background-color: #fff;
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  justify-content: space-between;
}
body.dark-mode .vip-feature-box{
    background-color:#1e1e1e;
}
.vip-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.vip-feature-box i {
  font-size: 28px;
  color: #7f00ff;
  margin-bottom: 10px;
}
body.dark-mode .vip-feature-box i{
    color:#00c6ff;
}
.vip-feature-box h3 {
  font-size: 1.2em;
  margin: 10px 0 8px;
}
body.dark-mode .vip-feature-box h3{
    color:#fff;
}
.vip-feature-box p {
  font-size: 0.95em;
  color: #333;
}
body.dark-mode .vip-feature-box p{
    color:#fff;
}
.vip-features > a {
  display: flex;
  justify-content: center;
}
.vip-feature-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: center;
  flex: 1 1 300px;
  max-width: 300px;
}
.vip-feature-link:hover {
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 1762px) {
    .thank-you {
      margin-top:12px;
  }
}

@media (max-width: 768px) {
  .vip-feature-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .vip-features {
    padding: 20px 10px;
    gap: 15px;
  }
  
  .vip-feature-link {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  
  
  .vip-card {
      padding:20px;
  }
}


@media screen and (max-width: 400px) {
    .vip-card{
        margin: -220px auto 40px;
    }
}
