.llx-vip-main {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 320px),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
}

.llx-vip-main .llx-vip-hero {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.llx-vip-main .llx-vip-hero-card,
.llx-vip-main .llx-vip-status-card,
.llx-vip-main .llx-vip-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.llx-vip-main .llx-vip-hero-card {
  padding: 34px;
  overflow: hidden;
  position: relative;
}

.llx-vip-main .llx-vip-hero-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
}

.llx-vip-main .llx-vip-hero-content {
  position: relative;
  z-index: 1;
}

.llx-vip-main .llx-vip-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.llx-vip-main .llx-vip-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.llx-vip-main .llx-vip-hero-title {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
  color: var(--text-main);
}

.llx-vip-main .llx-vip-hero-desc {
  margin: 16px 0 0;
  max-width: 640px;
  color: var(--text-sub);
  font-size: 16px;
  line-height: 1.8;
}

.llx-vip-main .llx-vip-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.llx-vip-main .llx-vip-status-card {
  padding: 24px;
}

.llx-vip-main .llx-vip-status-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 18px;
}

.llx-vip-main .llx-vip-status-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.llx-vip-main .llx-vip-status-plan-name {
  font-size: 20px;
  font-weight: 900;
}

.llx-vip-main .llx-vip-status-subtitle {
  color: var(--text-light);
  font-size: 13px;
  margin-top: 4px;
}

.llx-vip-main .llx-vip-status-plan-tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
  font-weight: 800;
}

.llx-vip-main .llx-vip-usage {
  margin-top: 16px;
}

.llx-vip-main .llx-vip-usage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-sub);
  font-size: 14px;
  margin-bottom: 8px;
}

.llx-vip-main .llx-vip-progress {
  height: 10px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.llx-vip-main .llx-vip-progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
  border-radius: 999px;
}

.llx-vip-main .llx-vip-reset {
  margin-top: 12px;
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
}

.llx-vip-main .llx-vip-section {
  margin-top: 24px;
  padding: 28px;
}

.llx-vip-main .llx-vip-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.llx-vip-main .llx-vip-section-title {
  margin: 0;
  font-size: 24px;
  color: var(--text-main);
}

.llx-vip-main .llx-vip-section-desc {
  margin: 8px 0 0;
  color: var(--text-light);
  font-size: 14px;
}

.llx-vip-main .llx-vip-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.llx-vip-main .llx-vip-empty {
  padding: 30px;
  border: 1px dashed var(--border);
  border-radius: 18px;
  background: #f8fafc;
  color: var(--text-light);
  text-align: center;
  font-size: 14px;
}

.llx-vip-main .llx-vip-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  background: #fff;
  transition: box-shadow 0.18s ease;
}

.llx-vip-main .llx-vip-plan:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.llx-vip-main .llx-vip-plan-recommend {
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.14);
}

.llx-vip-main .llx-vip-recommend-tag {
  position: absolute;
  top: -13px;
  left: 24px;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
}

.llx-vip-main .llx-vip-plan-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 8px;
}

.llx-vip-main .llx-vip-plan-subtitle {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  min-height: 44px;
}

.llx-vip-main .llx-vip-price {
  margin: 22px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.llx-vip-main .llx-vip-price-symbol {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-main);
}

.llx-vip-main .llx-vip-price-number {
  font-size: 38px;
  font-weight: 900;
  color: var(--text-main);
}

.llx-vip-main .llx-vip-price-unit {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
}

.llx-vip-main .llx-vip-price-sale {
  min-height: 58px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
}

.llx-vip-main .llx-vip-price-origin {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.llx-vip-main .llx-vip-price-origin del {
  color: #9ca3af;
  text-decoration: line-through;
}

.llx-vip-main .llx-vip-current-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.llx-vip-main .llx-vip-price-current-label {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.llx-vip-main .llx-vip-plan-saving {
  height: 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.llx-vip-main .llx-vip-quota {
  margin: 18px 0;
  padding: 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.llx-vip-main .llx-vip-quota strong {
  font-size: 24px;
  color: var(--primary);
}

.llx-vip-main .llx-vip-quota span {
  color: var(--text-sub);
  font-size: 14px;
}

.llx-vip-main .llx-vip-feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 22px;
  display: grid;
  gap: 12px;
}

.llx-vip-main .llx-vip-feature-list li {
  color: #374151;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  gap: 8px;
}

.llx-vip-main .llx-vip-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 1px;
}

.llx-vip-main .llx-vip-plan .base-btn {
  width: 100%;
  margin-top: auto;
  height: 42px;
  border-radius: 12px;
  font-weight: 800;
  flex: 0 0 auto;
}

.llx-vip-main .llx-vip-rule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.llx-vip-main .llx-vip-rule-card {
  padding: 18px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.llx-vip-main .llx-vip-rule-title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 10px;
}

.llx-vip-main .llx-vip-rule-card p {
  margin: 0;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.8;
}

.llx-vip-main .llx-vip-table-wrap {
  overflow-x: auto;
}

.llx-vip-main .llx-vip-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.llx-vip-main .llx-vip-table th,
.llx-vip-main .llx-vip-table td {
  border-bottom: 1px solid var(--border);
  padding: 16px 14px;
  text-align: center;
  font-size: 14px;
}

.llx-vip-main .llx-vip-table th:first-child,
.llx-vip-main .llx-vip-table td:first-child {
  text-align: left;
  color: #374151;
}

.llx-vip-main .llx-vip-table th {
  background: #f8fafc;
  color: var(--text-main);
  font-weight: 900;
}

.llx-vip-main .llx-vip-table td {
  color: var(--text-sub);
}

.llx-vip-main .llx-vip-table .yes {
  color: var(--primary);
  font-weight: 900;
}

.llx-vip-main .llx-vip-faq {
  display: grid;
  gap: 12px;
}

.llx-vip-main .llx-vip-faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}

.llx-vip-main .llx-vip-faq-q {
  font-size: 15px;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 8px;
}

.llx-vip-main .llx-vip-faq-a {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.8;
}

.llx-vip-main .llx-vip-hero-desc strong,
.llx-vip-main .llx-vip-rule-card strong,
.llx-vip-main .llx-vip-faq-a strong {
  color: var(--text-main);
  font-weight: 900;
}

.llx-vip-main .llx-vip-status-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 14px 0 4px;
}

.llx-vip-main .llx-vip-status-meta-item {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.llx-vip-main .llx-vip-status-meta-label {
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.4;
}

.llx-vip-main .llx-vip-status-meta-value {
  margin-top: 4px;
  color: var(--text-main);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.llx-vip-main .llx-vip-status-meta-value small {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
}

.llx-vip-main .llx-vip-plan-note {
  min-height: 22px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 700;
}

.llx-vip-main .llx-vip-plan-saving strong {
  color: var(--red);
}

.llx-vip-main .llx-vip-quota small {
  display: block;
  margin-top: 4px;
  color: var(--text-light);
  font-size: 12px;
}

.llx-vip-main .llx-vip-rule-card.is-important {
  background: var(--primary-soft);
  border-color: var(--primary-line);
}

.llx-vip-main .llx-vip-rule-card.is-important .llx-vip-rule-title {
  color: var(--primary-dark);
}

.llx-vip-main .llx-vip-table .strong {
  color: var(--text-main);
  font-weight: 900;
}

.llx-vip-main .llx-vip-bottom-tip {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--border);
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 980px) {
  .llx-vip-main .llx-vip-hero {
    grid-template-columns: 1fr;
  }

  .llx-vip-main .llx-vip-plans,
  .llx-vip-main .llx-vip-rule-grid {
    grid-template-columns: 1fr;
  }

  .llx-vip-main .llx-vip-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .llx-vip-main .llx-vip-hero-card,
  .llx-vip-main .llx-vip-status-card,
  .llx-vip-main .llx-vip-section {
    padding: 20px;
    border-radius: 18px;
  }

  .llx-vip-main .llx-vip-hero-title {
    font-size: 28px;
  }

  .llx-vip-main .llx-vip-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .llx-vip-main .llx-vip-hero-actions .base-btn {
    width: 100%;
  }

  .llx-vip-main .llx-vip-status-meta {
    grid-template-columns: 1fr;
  }
}
