:root {
    --primary: #10b981;
    --accent: #fbbf24;
    --bg: #0a1410;
    --text: #ecfdf5;
    --card-bg: #11221a;
    --card-border: rgba(16, 185, 129, 0.3);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(16, 185, 129, 0.1);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(16, 185, 129, 0.25);
    --radius: 18px;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5, .font-title {
    font-weight: 900;
    letter-spacing: -0.02em;
  }

  /* 导航栏 */
  .navbar-custom {
    background: rgba(10, 20, 16, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .navbar-brand {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text) !important;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .navbar-brand i {
    color: var(--primary);
    font-size: 1.8rem;
  }
  .nav-link {
    color: var(--text) !important;
    font-weight: 600;
    margin: 0 8px;
    position: relative;
    transition: color 0.3s;
  }
  .nav-link:hover {
    color: var(--primary) !important;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .navbar-toggler {
    border-color: var(--primary);
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }

  /* Hero 区域 */
  .hero-section {
    padding: 60px 0 40px;
    position: relative;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 40%);
  }
  .hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    margin-bottom: 24px;
    position: relative;
  }
  .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(236, 253, 245, 0.8);
    max-width: 640px;
    margin-bottom: 32px;
    line-height: 1.7;
  }
  .hero-float {
    position: absolute;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    filter: blur(60px);
    z-index: 0;
  }
  .hero-float-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
  }
  .hero-float-2 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 15%;
    background: rgba(251, 191, 36, 0.06);
  }
  .hero-float-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 60%;
    background: rgba(236, 253, 245, 0.04);
  }

  /* Banner 轮播 */
  .banner-carousel {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border: 1px solid var(--card-border);
  }
  .carousel-item {
    position: relative;
    height: 420px;
    background: linear-gradient(135deg, #11221a, #0a1410);
  }
  .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 20, 16, 0.9) 0%, transparent 60%);
    z-index: 1;
  }
  .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.4;
  }
  .carousel-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    max-width: 500px;
  }
  .carousel-content .tag {
    display: inline-block;
    background: var(--primary);
    color: #0a1410;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  .carousel-content h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 10px;
  }
  .carousel-content p {
    color: rgba(236, 253, 245, 0.8);
    margin-bottom: 0;
    font-size: 0.95rem;
  }
  .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: var(--primary);
  }

  /* 分类标签胶囊 */
  .category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
  }
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  .pill:hover {
    background: var(--primary);
    color: #0a1410;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
  }
  .pill i {
    font-size: 0.9rem;
  }
  .pill.active {
    background: var(--primary);
    color: #0a1410;
  }

  /* 版块标题 */
  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 50px;
  }
  .section-title {
    font-size: 1.8rem;
    font-weight: 900;
    position: relative;
    padding-left: 18px;
  }
  .section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 28px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 3px;
  }
  .section-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .section-more:hover {
    color: var(--accent);
  }

  /* 海报卡片 */
  .movie-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
  }
  .movie-card.show {
    opacity: 1;
    transform: translateY(0);
  }
  .movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(16, 185, 129, 0.5);
  }
  .poster-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: linear-gradient(145deg, #1a2e24, #0d1a14);
  }
  .poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .movie-card:hover .poster-wrap img {
    transform: scale(1.08);
  }
  .poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 16, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .movie-card:hover .poster-overlay {
    opacity: 1;
  }
  .play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #0a1410;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
    transform: scale(0.6);
    transition: transform 0.4s ease;
  }
  .movie-card:hover .play-btn {
    transform: scale(1);
  }
  .movie-info {
    padding: 14px 16px 16px;
  }
  .movie-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .movie-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .movie-year {
    color: rgba(236, 253, 245, 0.6);
    font-size: 0.8rem;
  }
  .movie-rating {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.9rem;
  }
  .movie-rating i {
    color: var(--accent);
    margin-right: 4px;
    font-size: 0.75rem;
  }

  /* 排行榜 */
  .rank-list {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .rank-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: background 0.3s;
    cursor: pointer;
  }
  .rank-item:hover {
    background: rgba(16, 185, 129, 0.08);
  }
  .rank-item:last-child {
    border-bottom: none;
  }
  .rank-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.2rem;
    margin-right: 16px;
    flex-shrink: 0;
  }
  .rank-num.gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0a1410;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.4);
  }
  .rank-num.silver {
    background: linear-gradient(135deg, #e2e8f0, #94a3b8);
    color: #0a1410;
  }
  .rank-num.bronze {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: #fff;
  }
  .rank-num.normal {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary);
  }
  .rank-info {
    flex: 1;
  }
  .rank-title {
    font-weight: 600;
    margin-bottom: 2px;
  }
  .rank-sub {
    font-size: 0.8rem;
    color: rgba(236, 253, 245, 0.6);
  }
  .rank-score {
    font-weight: 800;
    color: var(--accent);
    font-size: 1.1rem;
  }

  /* 片单盘点 */
  .pick-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
  }
  .pick-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
  }
  .pick-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--accent);
  }
  .pick-desc {
    color: rgba(236, 253, 245, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
  }

  /* 专题 */
  .topic-card {
    background: linear-gradient(145deg, var(--card-bg), #0d1a14);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    padding: 28px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: all 0.4s;
  }
  .topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }
  .topic-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    padding: 16px;
    border-radius: 20px;
  }
  .topic-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .topic-card p {
    color: rgba(236, 253, 245, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* 步骤条 */
  .steps-wrap {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .step-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    position: relative;
  }
  .step-num {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #0f766e);
    color: #0a1410;
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0 auto 16px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
  }
  .step-item h5 {
    margin-bottom: 8px;
    font-weight: 700;
  }
  .step-item p {
    font-size: 0.85rem;
    color: rgba(236, 253, 245, 0.7);
    margin: 0;
  }

  /* 友情链接 */
  .friend-links {
    margin: 60px 0 30px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
  }
  .friend-links h5 {
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary);
  }
  .friend-links .links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(236, 253, 245, 0.7);
  }

  /* 页脚 */
  .footer {
    padding: 40px 0 30px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    background: rgba(10, 20, 16, 0.8);
  }
  .footer-brand {
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
  }
  .footer-links a {
    color: rgba(236, 253, 245, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: var(--primary);
  }
  .footer-copy {
    font-size: 0.85rem;
    color: rgba(236, 253, 245, 0.5);
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    padding-top: 20px;
    margin-top: 20px;
  }

  /* 弹窗 */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
  }
  .modal-overlay.active {
    display: flex;
  }
  .modal-content {
    background: rgba(17, 34, 26, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--card-border);
    max-width: 500px;
    width: 90%;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: modalIn 0.4s ease;
  }
  @keyframes modalIn {
    from {
      opacity: 0;
      transform: scale(0.9) translateY(30px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
  .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    border: none;
    color: var(--text);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  .modal-close:hover {
    background: var(--primary);
    color: #0a1410;
  }
  .modal-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .modal-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 12px;
  }
  .modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
  }
  .modal-meta span {
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    color: rgba(236, 253, 245, 0.9);
  }
  .modal-plot {
    color: rgba(236, 253, 245, 0.8);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.95rem;
  }
  .modal-cast {
    font-size: 0.9rem;
    color: rgba(236, 253, 245, 0.6);
    margin-bottom: 20px;
  }

  /* 滚动渐显动画 */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.4s; }
  .delay-5 { transition-delay: 0.5s; }
  .delay-6 { transition-delay: 0.6s; }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.4rem;
    }
    .carousel-item {
      height: 300px;
    }
    .carousel-content {
      left: 24px;
      bottom: 24px;
    }
    .carousel-content h3 {
      font-size: 1.5rem;
    }
    .section-title {
      font-size: 1.4rem;
    }
  }

/* --- 子页面追加 --- */
/* 本页专属轻量样式——程序会自动合并进站点CSS */
        .about-hero {
            background: linear-gradient(135deg, rgba(10, 20, 16, 0.9) 0%, rgba(17, 34, 26, 0.7) 100%);
            border: 1px solid var(--card-border);
            border-radius: var(--radius);
            padding: 4rem 2rem;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
.about-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
.about-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1.2rem;
            position: relative;
            z-index: 1;
        }
.about-hero h1 span {
            color: var(--accent);
        }
.about-hero p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: rgba(236, 253, 245, 0.85);
            max-width: 800px;
            position: relative;
            z-index: 1;
        }
.about-section {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            transition: box-shadow 0.3s ease;
        }
.about-section:hover {
            box-shadow: var(--shadow-hover);
        }
.about-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid rgba(16, 185, 129, 0.2);
        }
.about-section h2 i {
            margin-right: 0.6rem;
            color: var(--accent);
        }
.about-section p {
            line-height: 1.9;
            color: rgba(236, 253, 245, 0.88);
            margin-bottom: 1rem;
        }
.about-section ul {
            list-style: none;
            padding-left: 0;
        }
.about-section ul li {
            padding: 0.5rem 0;
            padding-left: 1.8rem;
            position: relative;
            color: rgba(236, 253, 245, 0.85);
        }
.about-section ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary);
        }
.stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
.stat-item {
            text-align: center;
            padding: 1.8rem 1rem;
            background: rgba(16, 185, 129, 0.08);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 12px;
        }
.stat-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
            display: block;
            margin-bottom: 0.5rem;
        }
.stat-item .label {
            font-size: 0.9rem;
            color: rgba(236, 253, 245, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
.values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
.value-card {
            background: rgba(16, 185, 129, 0.06);
            border: 1px solid rgba(16, 185, 129, 0.15);
            border-radius: 12px;
            padding: 1.8rem 1.5rem;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
.value-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
        }
.value-card i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 1rem;
            display: block;
        }
.value-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.8rem;
        }
.value-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(236, 253, 245, 0.75);
            margin-bottom: 0;
        }
.about-hero {
                padding: 2.5rem 1.2rem;
            }
.about-hero h1 {
                font-size: 1.8rem;
            }
.about-section {
                padding: 1.8rem 1.2rem;
            }
.about-section h2 {
                font-size: 1.3rem;
            }

/* --- 子页面追加 --- */
/* 免责声明页面专属样式 */
        .disclaimer-hero {
            padding: 120px 0 60px;
            background: var(--bg);
            position: relative;
            overflow: hidden;
        }
.disclaimer-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
.disclaimer-hero h1 {
            color: var(--text);
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
.disclaimer-hero h1 span {
            color: var(--primary);
        }
.disclaimer-hero p {
            color: rgba(236, 253, 245, 0.7);
            font-size: 1.1rem;
            max-width: 700px;
            position: relative;
            z-index: 1;
        }
.disclaimer-content {
            padding: 60px 0 80px;
            background: var(--bg);
        }
.disclaimer-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius);
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.disclaimer-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
.disclaimer-card h2 {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.disclaimer-card h2 i {
            color: var(--accent);
            font-size: 1.3rem;
        }
.disclaimer-card p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
.disclaimer-card p:last-child {
            margin-bottom: 0;
        }
.disclaimer-card ul {
            color: var(--text);
            padding-left: 20px;
            margin-bottom: 15px;
        }
.disclaimer-card ul li {
            margin-bottom: 10px;
            line-height: 1.6;
            position: relative;
            padding-left: 5px;
        }
.disclaimer-card ul li::marker {
            color: var(--primary);
        }
.disclaimer-card .highlight-box {
            background: rgba(16, 185, 129, 0.1);
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
.disclaimer-card .highlight-box p {
            color: var(--text);
            margin-bottom: 0;
        }
.contact-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid rgba(16, 185, 129, 0.3);
            transition: all 0.3s ease;
        }
.contact-link:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }
.last-updated {
            color: rgba(236, 253, 245, 0.5);
            font-size: 0.9rem;
            margin-top: 40px;
            text-align: center;
        }
.disclaimer-hero {
                padding: 100px 0 40px;
            }
.disclaimer-hero h1 {
                font-size: 2rem;
            }
.disclaimer-card {
                padding: 25px;
            }

/* --- 子页面追加 --- */
/* 覆盖 Bootstrap 可能出现的白底 (保险起见) */
    .card, .card-body, .form-control, .form-select, .list-group-item {
      background: var(--card-bg);
      color: var(--text);
      border-color: var(--card-border);
    }
.form-control::placeholder {
      color: rgba(236, 253, 245, 0.45);
      opacity: 1;
    }
.form-control:focus {
      background: rgba(0, 0, 0, 0.35);
      color: var(--text);
      border-color: var(--primary);
      box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.15);
    }
.btn-primary {
      background: var(--primary);
      border-color: var(--primary);
      color: #06251a;
      font-weight: 600;
    }
.btn-primary:hover {
      background: #0da271;
      border-color: #0da271;
      color: #03130d;
    }
/* 联系卡片图标 */
    .contact-icon-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid var(--card-border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.3rem;
    }
.contact-info-item {
      background: rgba(17, 34, 26, 0.7);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      padding: 1.2rem;
      transition: all 0.2s ease;
    }
.contact-info-item:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-hover);
      transform: translateY(-2px);
    }
.social-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      padding: 0.6rem 1.2rem;
      border-radius: 40px;
      color: var(--text);
      font-weight: 500;
      transition: all 0.2s;
    }
.social-btn:hover {
      background: rgba(16, 185, 129, 0.1);
      border-color: var(--primary);
      color: var(--primary);
      text-decoration: none;
    }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.card-title { color:#ecfdf5 !important; }
.form-label { color:#ecfdf5 !important; }
