.vip {
  padding: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.vip__status-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  background: linear-gradient(135deg, var(--primary-300), var(--secondary-200));
}

.vip__status-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, #fff 0%, #CDDAE4 57%, #344E77 100%);
  opacity: 0.3;
}

.vip__status-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
}

.vip__status-label {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.vip__status-level {
  font-size: 28px;
  font-weight: 800;
}

.vip__status-days {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
}

.vip__status-right img {
  width: 80px;
  height: 80px;
}

.vip__level-select {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.vip__level-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  background: var(--primary-400);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.vip__level-btn--active {
  background: var(--primary-300);
  color: #fff;
  transform: scale(1.05);
}

.vip__details {
  margin-bottom: 20px;
}

.vip__details-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.vip__perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vip__perks li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.vip__exp {
  margin-bottom: 20px;
}

.vip__exp-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.vip__exp-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  text-align: right;
}

.vip__error {
  text-align: center;
  color: rgba(255,255,255,0.5);
  padding: 40px 0;
}
