:root {
  --primary: #f97316;
  --accent: #facc15;
  --bg: #1a1410;
  --text: #fff7ed;
  --text-dim: #c9b8a8;
  --border: rgba(249, 115, 22, 0.25);
  --card-bg: #241d17;
  --font-head: 'Inter', sans-serif;
  --font-mono: 'Courier New', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 15px;
}
#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999;
  transition: width 0.1s linear;
}
a { color: var(--primary); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--accent); }
.navbar {
  background: rgba(26, 20, 16, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand {
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--text) !important;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand i { color: var(--primary); font-size: 1.4rem; }
.navbar-nav .nav-link {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.3s;
}
.navbar-nav .nav-link:hover {
  color: var(--primary);
  background: rgba(249, 115, 22, 0.08);
}
.navbar-toggler {
  border-color: var(--border);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f97316' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.06), transparent 60%);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero h1 .highlight {
  color: var(--primary);
}
.hero .subtitle {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 28px;
  font-weight: 300;
}
.btn-hero {
  padding: 12px 32px;
  font-weight: 700;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s;
  border: 2px solid;
  margin-right: 10px;
}
.btn-hero-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn-hero-primary:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-hero-outline {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}
.btn-hero-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.section {
  padding: 45px 0;
  border-bottom: 1px solid var(--border);
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.3px;
  position: relative;
  padding-left: 16px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title i {
  color: var(--primary);
  margin-right: 8px;
  font-size: 1.1rem;
}
.section-link {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 600;
}
.section-link:hover { color: var(--primary); }
.movie-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 20px;
  position: relative;
  height: 100%;
}
.movie-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
  border-color: var(--primary);
}
.movie-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #2a221b;
}
.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.movie-card:hover .movie-poster img {
  transform: scale(1.08);
}
.quality-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  border: 1px solid rgba(250, 204, 21, 0.4);
}
.rating-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
}
.movie-info {
  padding: 10px 12px 12px;
}
.movie-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.movie-meta {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  display: flex;
  justify-content: space-between;
}
.rank-card {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 10px;
  background: var(--card-bg);
  transition: all 0.3s;
  cursor: pointer;
}
.rank-card:hover {
  border-color: var(--primary);
  transform: translateX(6px);
  background: rgba(249, 115, 22, 0.05);
}
.rank-num {
  font-size: 1.3rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--primary);
  width: 48px;
  flex-shrink: 0;
  text-align: center;
}
.rank-info {
  flex: 1;
  min-width: 0;
}
.rank-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rank-detail {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: flex;
  gap: 12px;
  font-family: var(--font-mono);
}
.tip-list {
  list-style: none;
  padding: 0;
}
.tip-list li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.tip-list li i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.accordion-item {
  background: transparent;
  border: 1px solid var(--border);
  margin-bottom: 8px;
  border-radius: 6px;
}
.accordion-button {
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 16px;
}
.accordion-button:not(.collapsed) {
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary);
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  color: var(--text-dim);
  font-size: 0.85rem;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}
.pickup-list {
  padding: 0;
}
.pickup-item {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.pickup-item:hover {
  border-color: var(--primary);
  background: rgba(249, 115, 22, 0.04);
}
.pickup-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.pickup-title i {
  color: var(--accent);
  margin-right: 8px;
  font-size: 0.85rem;
}
.pickup-desc {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.5;
}
.friend-links {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.friend-links-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-mono);
}
.friend-links-title i {
  color: var(--primary);
  margin-right: 8px;
}
footer {
  background: #150f0b;
  padding: 40px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-brand {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
}
.footer-text {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 12px;
  line-height: 1.7;
}
.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.footer-links a {
  color: var(--text-dim);
  font-size: 0.8rem;
}
.footer-links a:hover {
  color: var(--primary);
}
.copyright {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding-top: 20px;
  color: var(--text-dim);
  font-size: 0.8rem;
  text-align: center;
  font-family: var(--font-mono);
}
.hero-banner {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, rgba(249, 115, 22, 0.15), transparent 50%, rgba(250, 204, 21, 0.1));
  padding: 40px;
  text-align: center;
}
.hero-banner h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
.hero-banner p {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 20px;
}
.movie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.movie-modal.show {
  display: flex;
}
.modal-content {
  background: rgba(26, 20, 16, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 750px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 0;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.3s;
}
.modal-close:hover {
  color: var(--primary);
}
.modal-poster {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.modal-body {
  padding: 20px 24px 28px;
}
.modal-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}
.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
}
.modal-rating {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
}
.modal-director, .modal-actors {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.modal-plot {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.modal-tags span {
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary);
  font-size: 0.8rem;
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-weight: 600;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .section-title { font-size: 1.2rem; }
  .hero h1 { font-size: 2rem; }
  .btn-hero { padding: 10px 20px; font-size: 0.9rem; }
  .movie-title { font-size: 0.8rem; }
  .movie-meta { font-size: 0.7rem; flex-direction: column; gap: 2px; }
  .modal-poster { height: 200px; }
  .modal-title { font-size: 1.2rem; }
}

/* --- 子页面追加 --- */
/* 页面级补充样式(仅限本页特殊需求) */
    .about-hero {
      background: linear-gradient(135deg, rgba(26,20,16,0.95) 0%, rgba(36,29,23,0.9) 50%, rgba(249,115,22,0.15) 100%);
      border-bottom: 1px solid var(--border);
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }
.about-hero::before {
      content: "🍌";
      position: absolute;
      font-size: 180px;
      opacity: 0.04;
      right: 10%;
      top: 20px;
      transform: rotate(15deg);
      pointer-events: none;
    }
.about-hero h1 {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 2.6rem;
      color: var(--primary);
      letter-spacing: -0.02em;
      position: relative;
      z-index: 2;
    }
.about-hero p {
      color: var(--text-dim);
      max-width: 680px;
      font-size: 1.05rem;
      line-height: 1.8;
      position: relative;
      z-index: 2;
    }
.about-section {
      padding: 60px 0;
      border-bottom: 1px solid rgba(249,115,22,0.12);
    }
.about-section:last-of-type { border-bottom: none; }
.about-section h2 {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.7rem;
      color: var(--accent);
      margin-bottom: 20px;
      position: relative;
      padding-left: 18px;
    }
.about-section h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 5px;
      height: 24px;
      background: var(--primary);
      border-radius: 3px;
    }
.about-section h3 {
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--text);
      margin: 25px 0 12px;
    }
.about-section p, .about-section li {
      color: var(--text-dim);
      line-height: 1.85;
      font-size: 0.98rem;
    }
.about-section ul, .about-section ol { padding-left: 20px; }
.about-section li { margin-bottom: 8px; }
.stat-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px 18px;
      text-align: center;
      transition: transform 0.25s ease, border-color 0.25s ease;
      margin-bottom: 20px;
    }
.stat-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
    }
.stat-card .num {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 2.2rem;
      color: var(--primary);
      display: block;
      line-height: 1.2;
    }
.stat-card .label {
      color: var(--text-dim);
      font-size: 0.9rem;
      margin-top: 8px;
      display: block;
      letter-spacing: 0.02em;
    }
.feature-icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 14px;
      display: block;
    }
.value-item {
      background: rgba(249,115,22,0.06);
      border-left: 3px solid var(--primary);
      border-radius: 0 10px 10px 0;
      padding: 16px 20px;
      margin-bottom: 15px;
    }
.value-item h4 {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 6px;
    }
.value-item p { font-size: 0.93rem; margin-bottom: 0; }
.timeline-item {
      display: flex;
      gap: 18px;
      margin-bottom: 25px;
      position: relative;
    }
.timeline-item::before {
      content: "";
      position: absolute;
      left: 11px;
      top: 28px;
      width: 2px;
      height: calc(100% - 20px);
      background: var(--border);
    }
.timeline-item:last-child::before { display: none; }
.timeline-dot {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--primary);
      border: 3px solid var(--bg);
      box-shadow: 0 0 0 2px var(--border);
      flex-shrink: 0;
      z-index: 2;
      margin-top: 4px;
    }
.timeline-content { flex: 1; }
.timeline-content .date {
      color: var(--primary);
      font-weight: 600;
      font-size: 0.9rem;
      display: block;
      margin-bottom: 4px;
    }
.timeline-content h4 {
      color: var(--text);
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 6px;
    }
.timeline-content p { font-size: 0.93rem; margin-bottom: 0; }
.about-hero h1 { font-size: 2rem; }
.about-hero { padding: 50px 0 40px; }
.about-section h2 { font-size: 1.4rem; }

/* --- 子页面追加 --- */
.disclaimer-wrap { max-width: 900px; margin: 0 auto; padding: 40px 0 60px; }
.disclaimer-wrap h1 { font-size: 2.2rem; margin-bottom: 10px; }
.disclaimer-wrap .lead { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 40px; }
.disclaimer-section { margin-bottom: 40px; }
.disclaimer-section h2 { font-size: 1.4rem; color: var(--primary); margin-bottom: 15px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
.disclaimer-section p { color: var(--text); line-height: 1.8; margin-bottom: 12px; }
.disclaimer-section ul { padding-left: 20px; color: var(--text); }
.disclaimer-section ul li { margin-bottom: 8px; line-height: 1.7; }
.disclaimer-section strong { color: var(--accent); }
.disclaimer-notice { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 25px; margin: 30px 0; }
.disclaimer-notice h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 12px; }
.disclaimer-notice p { color: var(--text-dim); font-size: 0.95rem; }
.disclaimer-notice i { color: var(--accent); margin-right: 6px; }

/* --- 子页面追加 --- */
/* 本页专属样式 —— 隐私政策页面 */
        .privacy-page { max-width: 900px; margin: 0 auto; padding: 40px 20px 60px; }
.privacy-hero { text-align: center; padding: 50px 0 30px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.privacy-hero h1 { font-size: 2.5rem; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.privacy-hero p { color: var(--text-dim); font-size: 1.05rem; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }
.privacy-section { margin-bottom: 45px; }
.privacy-section h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 10px; }
.privacy-section h2 i { font-size: 1.2rem; color: var(--accent); }
.privacy-section p { color: var(--text); line-height: 1.8; font-size: 0.98rem; }
.privacy-section ul { color: var(--text); padding-left: 20px; line-height: 1.8; }
.privacy-section ul li { margin-bottom: 8px; }
.privacy-section ul li::marker { color: var(--primary); }
.privacy-highlight { background: var(--card-bg); border-left: 4px solid var(--primary); padding: 18px 20px; border-radius: 8px; margin: 20px 0; }
.privacy-highlight p { margin: 0; color: var(--text-dim); }
.privacy-highlight strong { color: var(--primary); }
.privacy-date { text-align: center; color: var(--text-dim); font-size: 0.9rem; margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--border); }
.privacy-contact-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 25px; margin-top: 15px; }
.privacy-contact-box h3 { color: var(--accent); font-size: 1.1rem; margin-bottom: 10px; }
.privacy-contact-box p { color: var(--text-dim); margin-bottom: 8px; }
.privacy-contact-box i { color: var(--primary); margin-right: 8px; }
.privacy-hero h1 { font-size: 1.9rem; }
.privacy-section h2 { font-size: 1.25rem; }
.privacy-page { padding: 20px 15px 40px; }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .guide-section { padding: 60px 0; border-bottom: 1px solid var(--border); }
.guide-section:last-child { border-bottom: none; }
.guide-step { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 28px; height: 100%; transition: all 0.3s ease; }
.guide-step:hover { transform: translateY(-4px); border-color: var(--primary); }
.step-number { display: inline-block; width: 40px; height: 40px; line-height: 40px; text-align: center; background: var(--primary); color: #fff; border-radius: 50%; font-weight: 700; font-size: 1.1rem; margin-bottom: 16px; }
.guide-tip { background: rgba(250, 204, 21, 0.1); border-left: 4px solid var(--accent); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 20px 0; }
.guide-tip i { color: var(--accent); margin-right: 10px; }
.device-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 12px; }
.quality-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.quality-table th, .quality-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.quality-table th { background: var(--card-bg); color: var(--primary); font-weight: 600; }
.quality-table tr:hover td { background: rgba(249, 115, 22, 0.05); }
.faq-item { margin-bottom: 12px; }
.faq-question { font-weight: 600; color: var(--primary); cursor: pointer; }
.faq-question i { margin-right: 8px; }
.faq-answer { color: var(--text-dim); padding-left: 28px; margin-top: 6px; }
.section-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
.section-heading h2 { font-size: 2rem; font-weight: 700; color: var(--text); margin: 0; }
.section-heading .heading-icon { color: var(--primary); font-size: 1.8rem; }
.guide-section { padding: 40px 0; }
.section-heading h2 { font-size: 1.5rem; }
.guide-step { padding: 20px; }

/* --- 子页面追加 --- */
.contact-hero {
            padding: 60px 0 40px;
            background: linear-gradient(180deg, rgba(249,115,22,0.08) 0%, rgba(26,20,16,0) 100%);
            border-bottom: 1px solid var(--border);
        }
.contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 40px;
            padding: 60px 0;
        }
.contact-grid { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
.contact-info-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 20px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: border-color 0.3s;
        }
.contact-info-item:hover {
            border-color: var(--primary);
        }
.contact-info-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 10px;
            background: rgba(249,115,22,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 18px;
        }
.contact-info-title {
            font-family: var(--font-head);
            font-weight: 600;
            font-size: 16px;
            color: var(--text);
            margin-bottom: 6px;
        }
.contact-info-desc {
            color: var(--text-dim);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 0;
        }
.contact-info-desc a {
            color: var(--primary);
            text-decoration: none;
        }
.contact-info-desc a:hover { text-decoration: underline; }
.contact-form-wrapper {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
        }
.contact-form-wrapper .form-group {
            margin-bottom: 20px;
        }
.contact-form-wrapper label {
            display: block;
            font-family: var(--font-head);
            font-weight: 500;
            font-size: 14px;
            color: var(--text);
            margin-bottom: 8px;
        }
.contact-form-wrapper .form-input,
        .contact-form-wrapper .form-textarea {
            width: 100%;
            background: rgba(0,0,0,0.3);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 12px 16px;
            color: var(--text);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            transition: border-color 0.3s;
        }
.contact-form-wrapper .form-input:focus,
        .contact-form-wrapper .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
.contact-form-wrapper .form-input::placeholder,
        .contact-form-wrapper .form-textarea::placeholder {
            color: rgba(255,247,237,0.4);
        }
.contact-form-wrapper .form-textarea {
            min-height: 140px;
            resize: vertical;
        }
.contact-form-wrapper .btn-submit {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 12px 32px;
            font-family: var(--font-head);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
.contact-form-wrapper .btn-submit:hover {
            background: #ea6a0c;
            transform: translateY(-2px);
        }
.faq-list {
            padding: 40px 0 60px;
        }
.faq-item:hover { border-color: var(--primary); }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.form-select { background-color:rgba(0,0,0,.35) !important; color:#fff7ed !important; border-color:rgba(255,255,255,.12) !important; }
.accordion-header { background:transparent !important; }
