.vip-page {
  padding-top: 80px;
  min-height: 100vh;
  background-color: #0f0f19;
  color: #fff;
}

.vip-header {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(rgba(15, 15, 25, 0.8), rgba(15, 15, 25, 1)),
              url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.vip-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.vip-header p {
  font-size: 1.2rem;
  color: #e0e0e0;
}

.vip-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.vip-benefits {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  margin-bottom: 3rem;
}

.vip-benefits h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffd700;
}

.vip-benefits ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.vip-benefits li {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vip-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.plan-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.plan-card.popular {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.05);
}

.plan-card .badge {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: #ffd700;
  color: #000;
  padding: 0.3rem 3rem;
  transform: rotate(45deg);
  font-weight: bold;
  font-size: 0.8rem;
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.plan-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.plan-card p {
  color: #b0b0b0;
  margin-bottom: 2rem;
}

.btn-buy-vip {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-buy-vip:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.vip-faq {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 20px;
}

.vip-faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #b0b0b0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .vip-header h1 {
    font-size: 2.5rem;
  }
  
  .vip-plans {
    grid-template-columns: 1fr;
  }
}