/* ============================================
   创投光影 - 影视众筹平台 主样式表
   CSS前缀: zc-
   配色: 深空蓝 #0A1931 / 科技蓝 #185ADB / 薄荷绿 #6BFFB8
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  background-color: #0A1931;
  color: #E6F1FF;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: #185ADB;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #6BFFB8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica Neue", "PingFang SC", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.fund-jammer-block {
  display: none !important;
}

/* --- Container --- */
.zc-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .zc-container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .zc-container {
    padding: 0 60px;
  }
}

/* --- Navigation (NOT sticky/fixed per spec) --- */
#zc-header {
  width: 100%;
  background: rgba(10, 25, 49, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(24, 90, 219, 0.2);
  z-index: 1000;
  padding: 0 20px;
  position: relative;
}

.zc-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.zc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.zc-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #185ADB, #6BFFB8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  position: relative;
}

.zc-logo-icon::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
}

.sp-logo-text {
  font-family: "Helvetica Neue", "PingFang SC", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #E6F1FF;
  letter-spacing: 1px;
}

.zc-nav-links {
  display: none;
  list-style: none;
  gap: 0;
}

@media (min-width: 1024px) {
  .zc-nav-links {
    display: flex;
    gap: 8px;
  }
}

.zc-nav-links li a {
  color: #E6F1FF;
  font-size: 0.95rem;
  padding: 8px 14px;
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}

.zc-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #185ADB;
  transition: width 0.4s ease, left 0.4s ease;
}

.zc-nav-links li a:hover::after,
.zc-nav-links li a.zc-active::after {
  width: 80%;
  left: 10%;
}

.zc-nav-links li a:hover {
  color: #6BFFB8;
}

/* Hamburger */
.zc-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

@media (min-width: 1024px) {
  .zc-hamburger {
    display: none;
  }
}

.zc-hamburger span {
  width: 24px;
  height: 2px;
  background: #E6F1FF;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.zc-hamburger.zc-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.zc-hamburger.zc-open span:nth-child(2) {
  opacity: 0;
}

.zc-hamburger.zc-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.zc-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0A1931 0%, #0d2147 100%);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 80px 30px 40px;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
}

.zc-mobile-menu.zc-open {
  right: 0;
}

.zc-mobile-menu ul {
  list-style: none;
}

.zc-mobile-menu ul li {
  margin-bottom: 8px;
}

.zc-mobile-menu ul li a {
  color: #E6F1FF;
  font-size: 1.1rem;
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}

.zc-mobile-menu ul li a:hover {
  background: rgba(24, 90, 219, 0.2);
  color: #6BFFB8;
}

.zc-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.zc-overlay.zc-open {
  opacity: 1;
  visibility: visible;
}

/* --- Hero / Featured Section --- */
.zc-featured {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1931 0%, #0d2147 50%, #0A1931 100%);
}

.zc-featured-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.zc-featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 25, 49, 0.3) 0%, rgba(10, 25, 49, 0.85) 100%);
}

.zc-featured-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 20px;
}

@media (min-width: 768px) {
  .zc-featured-content {
    padding: 80px 60px;
  }
}

.zc-featured-content h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #E6F1FF, #6BFFB8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .zc-featured-content h1 {
    font-size: 3rem;
  }
}

.zc-featured-content p {
  font-size: 1.05rem;
  color: rgba(230, 241, 255, 0.85);
  margin-bottom: 30px;
  line-height: 1.8;
}

.zc-btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #185ADB, #1a6ef5);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(24, 90, 219, 0.4);
  text-decoration: none;
}

.zc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(24, 90, 219, 0.6);
  color: #fff;
}

.zc-btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: #6BFFB8;
  border: 1px solid #6BFFB8;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.zc-btn-secondary:hover {
  background: rgba(107, 255, 184, 0.1);
  color: #6BFFB8;
}

/* --- Section Common --- */
.zc-section {
  padding: 80px 0;
}

.zc-section-alt {
  background: linear-gradient(180deg, rgba(13, 33, 71, 0.5) 0%, rgba(10, 25, 49, 1) 100%);
}

.zc-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.zc-section-title h2 {
  font-size: 2rem;
  color: #E6F1FF;
  margin-bottom: 12px;
}

.zc-section-title p {
  color: rgba(230, 241, 255, 0.7);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.zc-section-title .zc-accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #185ADB, #6BFFB8);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* --- Project Cards --- */
.zc-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .zc-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .zc-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zc-project-card {
  background: rgba(13, 33, 71, 0.6);
  border: 1px solid rgba(24, 90, 219, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(10px);
}

.zc-project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(24, 90, 219, 0.2);
}

.zc-project-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.zc-project-card-body {
  padding: 20px;
}

.zc-project-card-body h3 {
  font-size: 1.15rem;
  color: #E6F1FF;
  margin-bottom: 8px;
}

.zc-project-card-body .zc-card-desc {
  font-size: 0.9rem;
  color: rgba(230, 241, 255, 0.65);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zc-project-card-body .zc-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(230, 241, 255, 0.5);
  margin-bottom: 12px;
}

/* Progress Bar */
.zc-progress-wrap {
  margin-bottom: 12px;
}

.zc-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(24, 90, 219, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.zc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #185ADB, #6BFFB8);
  border-radius: 3px;
  transition: width 1.5s ease;
}

.zc-progress-info {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.8rem;
}

.zc-progress-info .zc-amount {
  color: #6BFFB8;
  font-weight: 600;
}

.zc-progress-info .zc-percent {
  color: rgba(230, 241, 255, 0.6);
}

/* Countdown */
.zc-countdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #6BFFB8;
  background: rgba(107, 255, 184, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

/* --- Success Stories --- */
.zc-success-card {
  background: rgba(13, 33, 71, 0.6);
  border: 1px solid rgba(24, 90, 219, 0.15);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .zc-success-card {
    flex-direction: row;
  }
}

.zc-success-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .zc-success-card-img {
    width: 40%;
    height: auto;
  }
}

.zc-success-card-body {
  padding: 24px;
  flex: 1;
}

.zc-success-card-body h3 {
  font-size: 1.2rem;
  color: #E6F1FF;
  margin-bottom: 10px;
}

.zc-success-stats {
  display: flex;
  gap: 20px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.zc-success-stat {
  text-align: center;
}

.zc-success-stat .zc-stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6BFFB8;
  display: block;
}

.zc-success-stat .zc-stat-label {
  font-size: 0.75rem;
  color: rgba(230, 241, 255, 0.5);
}

/* --- Investor Insights --- */
.zc-insight-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(13, 33, 71, 0.4);
  border: 1px solid rgba(24, 90, 219, 0.1);
  border-radius: 12px;
  transition: background 0.3s;
}

.zc-insight-card:hover {
  background: rgba(13, 33, 71, 0.7);
}

.zc-insight-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(24, 90, 219, 0.3);
}

.zc-insight-body h3 {
  font-size: 1rem;
  color: #E6F1FF;
  margin-bottom: 4px;
}

.zc-insight-body .zc-insight-role {
  font-size: 0.8rem;
  color: #185ADB;
  margin-bottom: 8px;
}

.zc-insight-body p {
  font-size: 0.9rem;
  color: rgba(230, 241, 255, 0.7);
}

/* --- Platform Data --- */
.zc-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .zc-data-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.zc-data-item {
  text-align: center;
  padding: 30px 16px;
  background: rgba(13, 33, 71, 0.5);
  border: 1px solid rgba(24, 90, 219, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.zc-data-item .zc-data-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #6BFFB8;
  display: block;
  margin-bottom: 8px;
}

.zc-data-item .zc-data-label {
  font-size: 0.9rem;
  color: rgba(230, 241, 255, 0.6);
}

/* --- Creator Stories --- */
.zc-creator-card {
  background: rgba(13, 33, 71, 0.5);
  border: 1px solid rgba(24, 90, 219, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}

.zc-creator-card:hover {
  transform: translateY(-4px);
}

.zc-creator-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.zc-creator-card-body {
  padding: 20px;
}

.zc-creator-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.zc-creator-card-body p {
  font-size: 0.9rem;
  color: rgba(230, 241, 255, 0.65);
}

/* --- Academy --- */
.zc-academy-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .zc-academy-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.zc-academy-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(13, 33, 71, 0.4);
  border: 1px solid rgba(24, 90, 219, 0.1);
  border-radius: 12px;
  transition: background 0.3s;
}

.zc-academy-item:hover {
  background: rgba(24, 90, 219, 0.15);
}

.zc-academy-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #185ADB, #6BFFB8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.zc-academy-item h4 {
  font-size: 0.95rem;
  color: #E6F1FF;
  margin-bottom: 4px;
}

.zc-academy-item p {
  font-size: 0.8rem;
  color: rgba(230, 241, 255, 0.55);
}

/* --- Partners --- */
.zc-partners-section {
  background-size: cover;
  background-position: center;
  position: relative;
}

.zc-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .zc-partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.zc-partner-item {
  background: rgba(13, 33, 71, 0.7);
  border: 1px solid rgba(24, 90, 219, 0.15);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.3s;
}

.zc-partner-item:hover {
  border-color: #185ADB;
}

.zc-partner-item .zc-partner-name {
  font-size: 0.95rem;
  color: #E6F1FF;
  font-weight: 600;
}

.zc-partner-item .zc-partner-type {
  font-size: 0.75rem;
  color: rgba(230, 241, 255, 0.5);
  margin-top: 4px;
}

/* --- CTA Section --- */
.zc-cta-section {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #0d2147 0%, #185ADB 100%);
  position: relative;
  overflow: hidden;
}

.zc-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(107, 255, 184, 0.05) 0%, transparent 60%);
}

.zc-cta-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
}

.zc-cta-section p {
  font-size: 1.05rem;
  color: rgba(230, 241, 255, 0.8);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* --- Industry Reports --- */
.zc-report-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .zc-report-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zc-report-item {
  padding: 24px;
  background: rgba(13, 33, 71, 0.5);
  border: 1px solid rgba(24, 90, 219, 0.12);
  border-radius: 12px;
  transition: transform 0.3s;
}

.zc-report-item:hover {
  transform: translateY(-4px);
}

.zc-report-item .zc-report-date {
  font-size: 0.75rem;
  color: #185ADB;
  margin-bottom: 8px;
}

.zc-report-item h4 {
  font-size: 1rem;
  color: #E6F1FF;
  margin-bottom: 8px;
}

.zc-report-item p {
  font-size: 0.85rem;
  color: rgba(230, 241, 255, 0.6);
}

/* --- Footer --- */
#zc-footer {
  background: #060e1f;
  border-top: 1px solid rgba(24, 90, 219, 0.15);
  padding: 60px 0 0;
}

.zc-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .zc-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zc-footer-col h4 {
  font-size: 1rem;
  color: #E6F1FF;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.zc-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #6BFFB8;
}

.zc-footer-col ul {
  list-style: none;
}

.zc-footer-col ul li {
  margin-bottom: 8px;
}

.zc-footer-col ul li a {
  color: rgba(230, 241, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.zc-footer-col ul li a:hover {
  color: #6BFFB8;
}

.zc-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.zc-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(24, 90, 219, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E6F1FF;
  font-size: 0.85rem;
  transition: background 0.3s;
}

.zc-footer-social a:hover {
  background: #185ADB;
}

.zc-footer-bottom {
  border-top: 1px solid rgba(24, 90, 219, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(230, 241, 255, 0.4);
}

.zc-footer-bottom p {
  margin-bottom: 6px;
}

.zc-footer-bottom a {
  color: rgba(230, 241, 255, 0.5);
}

.zc-footer-bottom a:hover {
  color: #6BFFB8;
}

.zc-footer-honor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0;
  color: rgba(230, 241, 255, 0.5);
  font-size: 0.8rem;
}

/* --- Page Banner (Inner Pages) --- */
.zc-page-banner {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1931, #0d2147);
}

.zc-page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.zc-page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 25, 49, 0.4), rgba(10, 25, 49, 0.9));
}

.zc-page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.zc-page-banner-content h1 {
  font-size: 2rem;
  color: #E6F1FF;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .zc-page-banner-content h1 {
    font-size: 2.5rem;
  }
}

.zc-page-banner-content p {
  color: rgba(230, 241, 255, 0.7);
  font-size: 1rem;
  max-width: 500px;
}

/* --- Inner Page Content --- */
.zc-page-content {
  padding: 60px 0;
}

.zc-page-content article {
  max-width: 900px;
  margin: 0 auto;
}

.zc-page-content article h2 {
  font-size: 1.5rem;
  color: #E6F1FF;
  margin: 32px 0 16px;
  padding-left: 16px;
  border-left: 3px solid #6BFFB8;
}

.zc-page-content article h3 {
  font-size: 1.2rem;
  color: #E6F1FF;
  margin: 24px 0 12px;
}

.zc-page-content article p {
  margin-bottom: 16px;
  color: rgba(230, 241, 255, 0.8);
  line-height: 1.8;
}

.zc-page-content article img {
  border-radius: 12px;
  margin: 20px 0;
}

/* --- Wizard / Form (路演厅) --- */
.zc-wizard {
  max-width: 900px;
  margin: 0 auto;
}

.zc-wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.zc-wizard-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: rgba(24, 90, 219, 0.2);
}

.zc-wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.zc-wizard-step .zc-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(13, 33, 71, 0.8);
  border: 2px solid rgba(24, 90, 219, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(230, 241, 255, 0.5);
  transition: all 0.3s;
}

.zc-wizard-step.zc-step-active .zc-step-num {
  background: linear-gradient(135deg, #185ADB, #6BFFB8);
  border-color: transparent;
  color: #fff;
}

.zc-wizard-step.zc-step-done .zc-step-num {
  background: #6BFFB8;
  border-color: transparent;
  color: #0A1931;
}

.zc-wizard-step .zc-step-label {
  font-size: 0.7rem;
  color: rgba(230, 241, 255, 0.5);
  margin-top: 8px;
  text-align: center;
  max-width: 80px;
}

@media (min-width: 768px) {
  .zc-wizard-step .zc-step-label {
    font-size: 0.8rem;
  }
}

.zc-wizard-panel {
  display: none;
  background: rgba(13, 33, 71, 0.5);
  border: 1px solid rgba(24, 90, 219, 0.15);
  border-radius: 16px;
  padding: 30px;
}

.zc-wizard-panel.zc-panel-active {
  display: block;
}

.zc-form-group {
  margin-bottom: 20px;
}

.zc-form-group label {
  display: block;
  font-size: 0.9rem;
  color: #E6F1FF;
  margin-bottom: 8px;
  font-weight: 600;
}

.zc-form-group input,
.zc-form-group textarea,
.zc-form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 25, 49, 0.8);
  border: 1px solid rgba(24, 90, 219, 0.25);
  border-radius: 8px;
  color: #E6F1FF;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.zc-form-group input:focus,
.zc-form-group textarea:focus,
.zc-form-group select:focus {
  outline: none;
  border-color: #6BFFB8;
}

.zc-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.zc-form-group .zc-form-hint {
  font-size: 0.75rem;
  color: rgba(230, 241, 255, 0.4);
  margin-top: 4px;
}

.zc-form-group .zc-form-error {
  font-size: 0.75rem;
  color: #ff6b6b;
  margin-top: 4px;
  display: none;
}

.zc-wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

/* --- APP Download Page --- */
.zc-app-hero {
  background: linear-gradient(135deg, #0A1931 0%, #0d2147 50%, #0A1931 100%);
  position: relative;
  overflow: hidden;
}

.zc-app-hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(24, 90, 219, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.zc-app-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.zc-app-feature-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #185ADB, #6BFFB8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Animations --- */
.zc-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.zc-fade-in.zc-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Fine-tuning --- */
@media (max-width: 360px) {
  html {
    font-size: 14px;
  }
  .zc-featured-content h1 {
    font-size: 1.6rem;
  }
  .zc-data-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1440px) {
  .zc-container {
    padding: 0 80px;
  }
}

/* --- Breadcrumb --- */
.zc-breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: rgba(230, 241, 255, 0.5);
}

.zc-breadcrumb a {
  color: rgba(230, 241, 255, 0.6);
}

.zc-breadcrumb a:hover {
  color: #6BFFB8;
}

.zc-breadcrumb span {
  margin: 0 6px;
}

/* --- Tags --- */
.zc-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(24, 90, 219, 0.15);
  border-radius: 20px;
  font-size: 0.75rem;
  color: #185ADB;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* --- Reward Tiers (路演厅) --- */
.zc-reward-tier {
  background: rgba(13, 33, 71, 0.4);
  border: 1px solid rgba(24, 90, 219, 0.15);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}

.zc-reward-tier:hover {
  border-color: #6BFFB8;
}

.zc-reward-tier .zc-reward-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: #6BFFB8;
  margin-bottom: 8px;
}

.zc-reward-tier .zc-reward-title {
  font-size: 1rem;
  color: #E6F1FF;
  margin-bottom: 6px;
}

.zc-reward-tier .zc-reward-desc {
  font-size: 0.85rem;
  color: rgba(230, 241, 255, 0.6);
}

/* Preview Card in Wizard */
.zc-preview-card {
  position: relative;
  background: rgba(13, 33, 71, 0.6);
  border: 1px solid rgba(24, 90, 219, 0.15);
  border-radius: 16px;
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
}

.zc-preview-card .zc-preview-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #0d2147, #185ADB);
}

.zc-preview-card .zc-preview-body {
  padding: 16px;
}
