:root {
    --primary: #dc2626;
    --accent: #fb923c;
    --bg: #141013;
    --text: #fef2f2;
    --text-dim: rgba(254, 242, 242, 0.7);
    --card-bg: #1d1719;
    --card-border: rgba(220, 38, 38, 0.2);
    --shadow-deep: 0 15px 35px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(220, 38, 38, 0.15);
    --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.7), 0 10px 25px rgba(220, 38, 38, 0.25);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ===== 拟物厚重风 ===== */
  .neomorphic {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .neomorphic:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
  }

  /* 渐变高光 */
  .gradient-highlight {
    background: linear-gradient(145deg, rgba(220, 38, 38, 0.25) 0%, rgba(251, 146, 60, 0.1) 100%);
    border-radius: var(--radius-lg);
  }

  /* ===== 导航 ===== */
  .navbar-custom {
    background: rgba(20, 16, 19, 0.92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.25);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  .navbar-custom .navbar-brand {
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--text) !important;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(220, 38, 38, 0.5);
  }
  .navbar-custom .navbar-brand .brand-icon {
    color: var(--accent);
    margin-right: 6px;
  }
  .navbar-custom .nav-link {
    color: var(--text-dim) !important;
    font-weight: 500;
    padding: 0.5rem 0.8rem !important;
    transition: color 0.2s, text-shadow 0.2s;
  }
  .navbar-custom .nav-link:hover {
    color: var(--accent) !important;
    text-shadow: 0 0 10px rgba(251, 146, 60, 0.5);
  }
  .navbar-toggler {
    border-color: var(--primary);
    color: var(--primary);
  }
  .navbar-toggler:focus { box-shadow: none; }

  /* ===== Hero 打字机 ===== */
  .hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: radial-gradient(ellipse at 50% 0%, rgba(220, 38, 38, 0.2) 0%, transparent 60%);
    overflow: hidden;
  }
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(20, 16, 19, 0.9) 100%);
    z-index: 1;
  }
  .hero-content { position: relative; z-index: 2; max-width: 900px; }
  .hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text);
    text-shadow: 0 4px 30px rgba(220, 38, 38, 0.6), 0 2px 10px rgba(0, 0, 0, 0.8);
    min-height: 1.2em;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  .hero-title .typed {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: 300;
    letter-spacing: 0.02em;
  }
  .hero-cta .btn-hero {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), #b91c1c);
    color: white;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .hero-cta .btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
  }
  .hero-cta .btn-ghost {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 50px;
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(254, 242, 242, 0.3);
    transition: all 0.3s;
    text-decoration: none;
    margin-left: 10px;
  }
  .hero-cta .btn-ghost:hover {
    background: rgba(254, 242, 242, 0.1);
    border-color: var(--accent);
  }

  /* ===== 区块标题 ===== */
  .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
  }
  .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .section-desc {
    color: var(--text-dim);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 700px;
  }
  .section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    margin: 15px 0 25px;
  }

  /* ===== 影片卡片 ===== */
  .movie-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #1a1416;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.35s, box-shadow 0.35s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.6), 0 0 20px rgba(220, 38, 38, 0.2);
  }
  .movie-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    background: #1a1416;
    overflow: hidden;
  }
  .movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .movie-card:hover .movie-poster img { transform: scale(1.05); }
  .badge-top {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--primary), #b91c1c);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.5);
    z-index: 3;
    letter-spacing: 0.05em;
  }
  .badge-ep {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(251, 146, 60, 0.4);
    z-index: 3;
  }
  .rating-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    color: #fbbf24;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 3;
  }
  .movie-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .movie-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .movie-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-dim);
    font-family: 'Courier New', monospace;
  }
  .movie-type {
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 600;
  }

  /* 翻转卡片 */
  .flip-card {
    perspective: 1200px;
    height: 100%;
  }
  .flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
  }
  .flip-card.flipped .flip-inner {
    transform: rotateY(180deg);
  }
  .flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .flip-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, #1d1719, #2a1f23);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-deep);
  }
  .flip-back .detail-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 2px;
  }
  .flip-back .detail-row {
    font-size: 0.8rem;
    color: var(--text-dim);
    display: flex;
    gap: 6px;
  }
  .flip-back .detail-row span:first-child {
    color: var(--text);
    font-weight: 600;
    min-width: 45px;
    flex-shrink: 0;
  }
  .flip-back .detail-plot {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-top: 6px;
    max-height: 80px;
    overflow: hidden;
  }
  .close-flip {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(220, 38, 38, 0.6);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
  }
  .close-flip:hover { background: var(--primary); }

  /* ===== 榜单 ===== */
  .rank-list {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-deep);
    padding: 20px;
  }
  .rank-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
  }
  .rank-item:last-child { border-bottom: none; }
  .rank-item:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateX(5px);
  }
  .rank-number {
    font-size: 1.4rem;
    font-weight: 900;
    font-family: 'Courier New', monospace;
    color: var(--primary);
    width: 40px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
  }
  .rank-number.top1 { color: #fbbf24; font-size: 1.8rem; }
  .rank-number.top2 { color: #94a3b8; font-size: 1.6rem; }
  .rank-number.top3 { color: #d97706; font-size: 1.5rem; }
  .rank-info { flex: 1; }
  .rank-info .rank-title {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
  }
  .rank-info .rank-desc {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-family: 'Courier New', monospace;
  }
  .rank-score {
    font-family: 'Courier New', monospace;
    color: #fbbf24;
    font-weight: 700;
    background: rgba(251, 191, 36, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
  }

  /* ===== FAQ 手风琴 ===== */
  .faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  .faq-q {
    padding: 18px 20px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-size: 0.95rem;
  }
  .faq-q:hover { background: rgba(220, 38, 38, 0.08); }
  .faq-q .icon {
    color: var(--accent);
    transition: transform 0.3s;
    font-size: 1rem;
  }
  .faq-item.active .faq-q .icon { transform: rotate(180deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.7;
    padding: 0 20px;
  }
  .faq-item.active .faq-a {
    max-height: 200px;
    padding: 0 20px 18px;
  }

  /* ===== 指南 ===== */
  .guide-section {
    background: linear-gradient(145deg, rgba(220, 38, 38, 0.15), rgba(251, 146, 60, 0.08));
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-deep);
  }
  .guide-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 15px;
  }
  .guide-text {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  .guide-tags { display: flex; flex-wrap: wrap; gap: 10px; }
  .guide-tag {
    background: rgba(220, 38, 38, 0.2);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(251, 146, 60, 0.3);
  }

  /* ===== 精选片单 ===== */
  .pick-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    border-left: 3px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    margin-bottom: 15px;
    transition: transform 0.3s;
  }
  .pick-card:hover { transform: translateX(5px); }
  .pick-title {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    font-size: 1rem;
  }
  .pick-comment {
    color: var(--text-dim);
    font-size: 0.8rem;
    font-style: italic;
  }

  /* ===== 友链 ===== */
  .friend-links {
    background: var(--card-bg);
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    padding: 30px 0;
    margin-top: 40px;
  }
  .friend-links .fl-title {
    font-weight: 700;
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .friend-links .fl-content {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 2;
  }

  /* ===== 页脚 ===== */
  footer {
    background: #0c0a0c;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
  }
  .footer-brand {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text);
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
  }
  .footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    margin: 0 12px;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--accent); }
  .footer-copy {
    color: rgba(254, 242, 242, 0.4);
    font-size: 0.8rem;
    margin-top: 20px;
    font-family: 'Courier New', monospace;
  }

  /* ===== 回到顶部 ===== */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #b91c1c);
    color: white;
    border: none;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
  }
  .back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .back-to-top:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.6);
  }

  /* ===== 区块间距 ===== */
  .section-block { padding: 60px 0; }

  /* ===== 分类海报矩阵 ===== */
  .category-banner {
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(251, 146, 60, 0.1));
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: var(--shadow-deep);
    position: relative;
    overflow: hidden;
  }
  .category-banner .cat-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 8px;
  }
  .category-banner .cat-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
  }
  .category-banner .cat-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 300;
  }

  /* ===== 响应式 ===== */
  @media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 1.8rem; }
    .movie-info { padding: 10px; }
    .movie-title { font-size: 0.85rem; }
    .movie-meta { font-size: 0.7rem; }
  }

  /* ===== 列表图标 ===== */
  .icon-list {
    list-style: none;
    padding: 0;
  }
  .icon-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-dim);
  }
  .icon-list li i {
    color: var(--accent);
    width: 20px;
    text-align: center;
  }

  /* 懒加载占位 */
  .lazy-placeholder {
    background: linear-gradient(135deg, #1d1719, #2a1f23, #1d1719);
    background-size: 200% 200%;
    animation: shimmer 1.5s ease infinite;
  }
  @keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

/* --- 子页面追加 --- */
/* 本页专用微调，仅补充about页特有的细节，其余全部复用站点CSS */
        .about-hero {
            background: radial-gradient(circle at 20% 20%, rgba(220,38,38,0.15), transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(251,146,60,0.1), transparent 40%);
            border-bottom: 1px solid var(--card-border);
        }
.about-section-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            padding: 2rem 1.8rem;
            transition: box-shadow .3s ease, transform .3s ease;
            height: 100%;
        }
.about-section-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }
.about-section-icon {
            color: var(--accent);
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }
.about-highlight-text {
            color: var(--accent);
            font-weight: 600;
        }
.about-rule-list li {
            margin-bottom: .8rem;
            color: var(--text-dim);
            line-height: 1.7;
        }
.about-rule-list li i {
            color: var(--primary);
            margin-right: .5rem;
        }
.about-quote {
            border-left: 4px solid var(--primary);
            background: rgba(220, 38, 38, 0.05);
            padding: 1.2rem 1.5rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-style: italic;
            color: var(--text);
        }
/* 确保Bootstrap工具类不破坏暗色背景 */
        .about-content-wrapper {
            background: var(--bg);
            color: var(--text);
        }
/* 覆盖Bootstrap潜在的默认白底（若有不慎使用的组件） */
        .about-content-wrapper .card,
        .about-content-wrapper .card-body {
            background: var(--card-bg);
            color: var(--text);
            border-color: var(--card-border);
        }
.about-content-wrapper .list-group-item {
            background: var(--card-bg);
            color: var(--text);
            border-color: var(--card-border);
        }
.about-content-wrapper .form-control {
            background: rgba(0,0,0,.35);
            color: var(--text);
            border-color: var(--card-border);
        }
.about-content-wrapper .form-control::placeholder {
            color: rgba(255,255,255,.45);
        }

/* --- 子页面追加 --- */
/* 针对本页的特殊微调，尽量复用现有类 */
        .disclaimer-section {
            padding: 4rem 0;
        }
.disclaimer-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            padding: 2rem 2.2rem;
            box-shadow: var(--shadow-deep);
            transition: box-shadow 0.3s ease;
        }
.disclaimer-card:hover {
            box-shadow: var(--shadow-hover);
        }
.disclaimer-card h2 {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            border-bottom: 2px solid rgba(220,38,38,0.3);
            padding-bottom: 0.6rem;
        }
.disclaimer-card h2 i {
            color: var(--primary);
        }
.disclaimer-card p, .disclaimer-card li {
            color: var(--text-dim);
            line-height: 1.8;
            font-size: 0.98rem;
        }
.disclaimer-card ul {
            padding-left: 1.4rem;
            list-style-type: square;
            color: var(--text-dim);
        }
.disclaimer-card li {
            margin-bottom: 0.5rem;
        }
.disclaimer-card strong {
            color: var(--text);
        }
.highlight-tag {
            color: var(--accent);
            font-weight: 600;
        }
.btn-back-home {
            background: var(--primary);
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: var(--radius-sm);
            color: #fff;
            font-weight: 600;
            transition: background 0.3s ease;
        }
.btn-back-home:hover {
            background: var(--accent);
            color: #141013;
        }

/* --- 子页面追加 --- */
/* 本页专属微调，合并进站点CSS */
        .privacy-wrap { max-width: 1000px; margin: 0 auto; padding: 2rem 1rem 4rem; }
.privacy-title { font-size: 2.4rem; font-weight: 800; line-height: 1.3; margin-bottom: 0.5rem; }
.privacy-subtitle { color: var(--text-dim); font-weight: 400; font-size: 1.1rem; margin-bottom: 2rem; border-bottom: 1px solid var(--card-border); padding-bottom: 1.5rem; }
.policy-section { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 2rem 2rem; margin-bottom: 2rem; box-shadow: var(--shadow-deep); }
.policy-section h2 { font-size: 1.6rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem; border-left: 4px solid var(--primary); padding-left: 1rem; }
.policy-section h2 i { color: var(--accent); font-size: 1.4rem; width: 2rem; }
.policy-section p, .policy-section li { color: var(--text-dim); line-height: 1.8; font-weight: 400; }
.policy-section ul { padding-left: 1.5rem; }
.policy-section strong { color: var(--text); font-weight: 600; }
.policy-section a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.policy-section a:hover { color: var(--primary); }
.updated-badge { display: inline-block; background: rgba(220,38,38,0.15); color: var(--accent); border: 1px solid var(--card-border); padding: 0.3rem 1rem; border-radius: 30px; font-size: 0.85rem; letter-spacing: 0.5px; margin-top: 1rem; }
.navbar-custom .nav-link.active { color: var(--primary) !important; font-weight: 600; }
.privacy-title { font-size: 1.9rem; }
.policy-section { padding: 1.5rem; }
.policy-section h2 { font-size: 1.3rem; }