.vipboss-section {
  width: 100%;
  padding: 28px 0 40px;
}
.vipboss-header {
  max-width: 760px;
  margin-bottom: 22px;
}
.vipboss-header h1 {
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--lw-foreground, #262626);
}
.vipboss-header p {
  color: var(--lw-muted, #808080);
  font-size: 0.9375rem;
}
.vipboss-status {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(60, 195, 118, 0.1);
  color: var(--lw-primary, #3cc376);
  font-size: 0.8125rem;
  font-weight: 600;
}
.vipboss-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.vipboss-card {
  min-height: 270px;
  padding: 20px;
  border: 1px solid var(--lw-border, #e6e6e6);
  border-radius: 8px;
  background: var(--lw-card, #fff);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vipboss-card h2 {
  font-size: 1.125rem;
  color: var(--lw-foreground, #262626);
}
.vipboss-price {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--lw-primary, #3cc376);
}
.vipboss-price span {
  font-size: 1rem;
  margin-right: 2px;
}
.vipboss-duration {
  font-size: 0.8125rem;
  color: var(--lw-muted, #808080);
}
.vipboss-card p {
  min-height: 48px;
  color: var(--lw-muted, #808080);
  line-height: 1.65;
}
.vipboss-paytypes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  color: var(--lw-muted, #808080);
  font-size: 0.8125rem;
}
.vipboss-paytypes label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.vipboss-buy,
.vipboss-lock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  background: var(--lw-primary, #3cc376);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.vipboss-buy:hover,
.vipboss-lock-btn:hover {
  opacity: 0.9;
  color: #fff;
}
.vipboss-buy:disabled {
  cursor: wait;
  opacity: 0.6;
}
.vipboss-disabled {
  display: inline-flex;
  margin-top: auto;
  color: var(--lw-muted, #808080);
  font-size: 0.8125rem;
}
.vipboss-lock {
  max-width: 620px;
  margin: 24px auto 34px;
  padding: 30px 24px;
  border: 1px solid var(--lw-border, #e6e6e6);
  border-radius: 8px;
  background: var(--lw-card, #fff);
  text-align: center;
}
.vipboss-lock h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.vipboss-lock p {
  color: var(--lw-muted, #808080);
  margin-bottom: 18px;
}
.vipboss-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.62);
}
.vipboss-modal.is-active {
  display: flex;
}
.vipboss-modal-box {
  width: min(360px, 100%);
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  color: #262626;
  text-align: center;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}
.vipboss-modal-title {
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 700;
}
.vipboss-modal-body {
  color: #808080;
  line-height: 1.6;
}
.vipboss-modal-body img {
  width: 220px;
  max-width: 100%;
  margin: 8px auto 12px;
}
.vipboss-modal-close {
  margin-top: 14px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  background: #fff;
  color: #262626;
  cursor: pointer;
}
@media (max-width: 767px) {
  .vipboss-cards {
    grid-template-columns: 1fr;
  }
  .vipboss-header h1 {
    font-size: 1.5rem;
  }
}
