/* ===== NEW MEDIA PRICE PAGE STYLES ===== */
/* Social-Purple accent for newmedia differentiation */
/* Primary purple: #A855F7  Deep: #7C3AED  Light: #F3E8FF */

/* === BANNER === */
.banner {
  background:
    radial-gradient(ellipse at 80% 30%, #f3e8ff 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, #fef3de 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, #faf5ff 0%, transparent 60%), #f4f7f9;
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
}
.banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.banner-text {
  flex: 1;
  min-width: 0;
  max-width: none;
}
.banner-platform-cloud {
  position: relative;
  width: 250px;
  height: 260px;
  flex: 0 0 250px;
}
.platform-float {
  position: absolute;
  display: grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 9px;
  min-width: 116px;
  padding: 9px 13px 9px 9px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 34px rgba(76, 29, 149, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: platformFloat 5s ease-in-out infinite;
}
.platform-float b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
}
.platform-float small { color: #4b5563; font-size: 12px; font-weight: 700; }
.platform-float.wechat { top: 12px; left: 8px; }
.platform-float.wechat b { background: linear-gradient(135deg, #07c160, #35d77e); }
.platform-float.redbook { top: 74px; right: 0; animation-delay: -1.2s; }
.platform-float.redbook b { background: linear-gradient(135deg, #ff2442, #ff6680); }
.platform-float.douyin { bottom: 54px; left: 0; animation-delay: -2.4s; }
.platform-float.douyin b { background: linear-gradient(135deg, #161823, #4c5268); }
.platform-float.public { right: 8px; bottom: 0; animation-delay: -3.5s; }
.platform-float.public b { background: linear-gradient(135deg, #7c3aed, #c084fc); }
@keyframes platformFloat { 50% { transform: translateY(-6px); } }
.banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: 20px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.15);
  color: #7c3aed;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.banner-tag i {
  font-size: 10px;
}
.banner h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.banner h1 span {
  background: linear-gradient(90deg, #a855f7, #c084fc, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.banner-desc {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}
.banner-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 28px;
}
.banner-stat {
  text-align: left;
}
.banner-stat-num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #a855f7, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.banner-stat-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
.btn-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  background: linear-gradient(135deg, #a855f7, #c084fc, #f5a623);
  color: #fff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
  text-decoration: none;
}
.btn-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.3);
}
.banner-visual {
  width: 380px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.04);
}
.visual-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(168, 85, 247, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.visual-bar i {
  color: #a855f7;
  font-size: 14px;
  opacity: 0.5;
}
.visual-bar span {
  color: var(--text-light);
  font-size: 14px;
  flex: 1;
}
.visual-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.visual-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.02);
  border: 1px solid rgba(168, 85, 247, 0.06);
  transition: all 0.3s;
}
.visual-item.highlight {
  background: rgba(168, 85, 247, 0.06);
  border-color: rgba(168, 85, 247, 0.18);
}
.visual-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.visual-icon.blue {
  background: linear-gradient(135deg, #c084fc, #a855f7);
  color: #fff;
}
.visual-icon.green {
  background: linear-gradient(135deg, #03b3ff, #72d7ff 55%, #f5a623);
  color: #fff;
}
.visual-icon.orange {
  background: linear-gradient(135deg, #f5a623, #ff8c00);
  color: #fff;
}
.visual-text {
  font-size: 13px;
  color: var(--text-secondary);
  flex: 1;
}
.visual-text strong {
  color: var(--text);
  font-weight: 600;
}
.visual-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.visual-badge.success {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.15);
}
.visual-badge.ai {
  background: rgba(168, 85, 247, 0.1);
  color: #7c3aed;
  border: 1px solid rgba(168, 85, 247, 0.15);
}

/* === COMPARE === */
.compare-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 25% 30%, #f3e8ff 0%, transparent 50%),
    radial-gradient(ellipse at 75% 70%, #fef3de 0%, transparent 50%), #fff;
}
.compare-header {
  text-align: center;
  margin-bottom: 48px;
}
.compare-header h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 10px;
}
.compare-header h2 span {
  background: linear-gradient(90deg, #a855f7, #c084fc, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.compare-header p {
  font-size: 15px;
  color: var(--text-secondary);
}
.compare-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}
.compare-card {
  flex: 1;
  max-width: 560px;
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.compare-card.bad {
  background: #f8f9fa;
  border: 2px solid #e8eaed;
}
.compare-card.good {
  background: linear-gradient(135deg, #faf5ff, #fef9ee);
  border: 2px solid rgba(168, 85, 247, 0.25);
  box-shadow: 0 8px 40px rgba(168, 85, 247, 0.08);
}
.compare-card:hover {
  transform: translateY(-4px);
}
.compare-card.good:hover {
  box-shadow: 0 12px 48px rgba(168, 85, 247, 0.18);
}
.compare-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.compare-card.bad .compare-icon {
  background: #f0f1f3;
  color: #999;
}
.compare-card.good .compare-icon {
  background: linear-gradient(135deg, #c084fc, #a855f7);
  color: #fff;
}
.compare-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.compare-card.bad h3 {
  color: #888;
}
.compare-card.good h3 {
  color: var(--text);
}
.compare-list {
  list-style: none;
  margin-bottom: 20px;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.6;
}
.compare-card.bad .compare-list li {
  color: #888;
}
.compare-card.good .compare-list li {
  color: var(--text-secondary);
}
.compare-list li i {
  margin-top: 3px;
  font-size: 13px;
  flex-shrink: 0;
}
.compare-card.bad .compare-list li i {
  color: #ccc;
}
.compare-card.good .compare-list li i {
  color: #a855f7;
}
.compare-result {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}
.compare-card.bad .compare-result {
  background: #f0f1f3;
  color: #999;
}
.compare-card.good .compare-result {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(245, 166, 35, 0.08));
  color: var(--text);
}

/* === PRICE TABLE === */
.price-table-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 50% 20%, #f3e8ff 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, #fef6e8 0%, transparent 45%), #f7f8fa;
}
.price-table-header {
  text-align: center;
  margin-bottom: 48px;
}
.price-table-header h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 10px;
}
.price-table-header h2 span {
  background: linear-gradient(90deg, #a855f7, #c084fc, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-table-header p {
  font-size: 15px;
  color: var(--text-secondary);
}
.price-container {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.05),
    0 0 10px rgba(168, 85, 247, 0.15);
  position: relative;
  border: 1px solid rgba(168, 85, 247, 0.1);
  overflow: hidden;
}
@keyframes purpleGlow {
  0% {
    box-shadow:
      0 5px 15px rgba(0, 0, 0, 0.05),
      0 0 5px rgba(168, 85, 247, 0.15);
  }
  100% {
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.08),
      0 0 20px rgba(168, 85, 247, 0.3);
  }
}
.table-title {
  background: linear-gradient(90deg, #a855f7, #c084fc, #f5a623);
  color: #fff;
  padding: 20px 28px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  border-radius: 16px 16px 0 0;
}
.table-title i {
  margin-right: 10px;
}
.grid-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 0.8fr 0.8fr 1.5fr;
  align-items: center;
  padding: 23px 20px;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}
.grid-header {
  background: #f8fafc;
  font-weight: bold;
  color: #666;
  font-size: 14px;
  border-bottom: 2px solid #e2e8f0;
  padding: 15px 20px;
}
.grid-row:not(.grid-header):hover {
  background-color: rgba(168, 85, 247, 0.05);
  cursor: pointer;
}
.grid-row:not(.grid-header):hover .col-price {
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.3);
}
.grid-row:not(.grid-header):hover .col-fans {
  transform: scale(1.03);
}
.col-media {
  display: flex;
  align-items: center;
  gap: 12px;
}
.col-media-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.col-media a {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 500;
}
.col-media a:hover {
  color: #a855f7;
}
.col-media-sub {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 1px;
}
.col-price {
  color: #7c3aed;
  font-weight: bold;
  font-size: 18px;
  transition:
    transform 0.3s,
    text-shadow 0.3s;
}
.diamond-tag {
  font-size: 10px;
  border: 1px solid #a855f7;
  padding: 1px 4px;
  border-radius: 3px;
  margin-left: 5px;
  color: #a855f7;
}
.col-fans {
  font-size: 13px;
  color: var(--text-secondary);
  transition: transform 0.3s;
}
.col-fans .fans-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}
.fans-badge.micro {
  background: rgba(168, 85, 247, 0.06);
  color: #7c3aed;
  border: 1px solid rgba(168, 85, 247, 0.15);
}
.fans-badge.small {
  background: rgba(16, 185, 129, 0.06);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.12);
}
.fans-badge.medium {
  background: rgba(245, 166, 35, 0.06);
  color: #e09100;
  border: 1px solid rgba(245, 166, 35, 0.12);
}
.fans-badge.large {
  background: rgba(236, 72, 153, 0.06);
  color: #db2777;
  border: 1px solid rgba(236, 72, 153, 0.12);
  animation: fansBadgePulse 2.8s ease-in-out infinite;
}
@keyframes fansBadgePulse {
  50% { box-shadow: 0 0 0 5px rgba(236, 72, 153, 0.09); }
}
.col-data {
  text-align: center;
  color: #555;
  font-size: 13px;
}
.interact-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}
.interact-dot.active {
  background: #10b981;
}
.interact-dot.normal {
  background: #f5a623;
}
.geo-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}
.geo-tag.high {
  background: rgba(168, 85, 247, 0.08);
  color: #7c3aed;
  border: 1px solid rgba(168, 85, 247, 0.15);
  position: relative;
  overflow: hidden;
}
.geo-tag.high::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: geoShimmer 2.8s ease-in-out infinite;
}
@keyframes geoShimmer {
  0% {
    left: -60%;
  }
  50% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.geo-tag.medium {
  background: rgba(245, 166, 35, 0.08);
  color: #e09100;
  border: 1px solid rgba(245, 166, 35, 0.12);
}
.geo-tag.low {
  background: rgba(0, 0, 0, 0.04);
  color: #999;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.col-note {
  font-size: 13px;
  color: #666;
}
.note-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  background: rgba(168, 85, 247, 0.06);
  color: #7c3aed;
  border: 1px solid rgba(168, 85, 247, 0.1);
  margin-right: 4px;
  margin-bottom: 2px;
}
.login-prompt-row {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #fff 0%, #faf5ff 100%);
  border-radius: 0 0 16px 16px;
}
.prompt-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.prompt-text {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}
.prompt-text i {
  color: #a855f7;
  margin-right: 8px;
}
.btn-login-main {
  display: inline-block;
  background: linear-gradient(135deg, #a855f7 0%, #f5a623 100%);
  color: #fff;
  padding: 12px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(168, 85, 247, 0.3);
  transition: all 0.3s;
}
.btn-login-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(168, 85, 247, 0.45);
}

/* === PLATFORM CARDS === */
.platform-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 30% 25%, #f3e8ff 0%, transparent 50%),
    radial-gradient(ellipse at 70% 75%, #fef6e8 0%, transparent 50%), #fff;
}
.platform-header {
  text-align: center;
  margin-bottom: 48px;
}
.platform-header h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 10px;
}
.platform-header h2 span {
  background: linear-gradient(90deg, #a855f7, #c084fc, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.platform-header p {
  font-size: 15px;
  color: var(--text-secondary);
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.platform-card {
  border-radius: 20px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.12);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.06);
}
.platform-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow:
    0 0 0 2px rgba(168, 85, 247, 0.15),
    0 12px 40px rgba(168, 85, 247, 0.12);
  transform: translateY(-4px) scale(1.02);
}
.platform-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 800;
}
.platform-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.platform-card .platform-subtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.platform-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.platform-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.platform-tag.blue {
  background: rgba(168, 85, 247, 0.08);
  color: #7c3aed;
  border: 1px solid rgba(168, 85, 247, 0.12);
}
.platform-tag.orange {
  background: rgba(245, 166, 35, 0.08);
  color: #e09100;
  border: 1px solid rgba(245, 166, 35, 0.12);
}
.platform-tag.green {
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.12);
}
.platform-reference {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
}
.platform-reference > small {
  display: block;
  margin-bottom: 10px;
  color: #8b92a1;
  font-size: 10px;
}
.platform-reference > div {
  display: grid;
  grid-template-columns: 58px 1fr 24px;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #64748b;
  font-size: 11px;
}
.platform-reference i {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.09);
}
.platform-reference b {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c3aed, #c084fc, #f5a623);
}
.platform-reference em { color: #7c3aed; font-style: normal; font-weight: 800; text-align: right; }

/* === FINAL CTA === */
.final-cta-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 30% 25%, #fef6e8 0%, transparent 50%),
    radial-gradient(ellipse at 70% 75%, #f3e8ff 0%, transparent 50%), #fff;
}
.final-cta {
  text-align: center;
  padding: 48px 32px;
  background:
    radial-gradient(ellipse at 30% 40%, #f3e8ff 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, #feefd0 0%, transparent 50%), linear-gradient(135deg, #faf5ff, #fef9ee);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(168, 85, 247, 0.1);
}
.final-cta h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.final-cta h3 em {
  font-style: normal;
  background: linear-gradient(90deg, #a855f7, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-cta p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.final-cta .btn-cta {
  position: relative;
  z-index: 2;
  border-color: #172033;
  color: #fff;
  background: linear-gradient(135deg, #172033, #26364f);
  box-shadow: 0 8px 24px rgba(23, 32, 51, 0.22);
}
.final-cta .btn-cta:hover {
  border-color: #0f172a;
  color: #fff;
  background: #0f172a;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.3);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .compare-grid {
    flex-direction: column;
    gap: 24px;
  }
  .compare-card {
    max-width: 100%;
  }
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .banner {
    display: none;
  }
  .compare-section {
    display: none;
  }
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .grid-header,
  .col-fans,
  .col-data,
  .col-note {
    display: none;
  }
  .grid-row {
    grid-template-columns: 1fr 1fr;
    padding: 15px;
  }
  .col-media {
    font-size: 15px;
  }
  .col-price {
    text-align: right;
  }
  .final-cta h3 {
    font-size: 20px;
  }
  .final-cta .btn-cta {
    font-size: 14px;
    padding: 12px 24px;
  }
}
