:root {
    --primary: #dc2626;
    --accent: #fb923c;
    --bg-dark: #141013;
    --text-light: #fef2f2;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-float: 0 12px 48px rgba(220,38,38,0.15);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
  }
  .font-serif-title { font-family: 'Noto Serif SC', 'Source Han Serif SC', '思源宋体', serif; font-weight: 900; }
  .font-sans-body { font-family: 'Noto Sans SC', 'Source Han Sans SC', '思源黑体', -apple-system, sans-serif; }

  /* Hero 区 */
  .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0f1a 0%, #141013 50%, #2a1215 100%);
    overflow: hidden;
    padding: 120px 0 80px;
  }
  .hero-bg-poster {
    position: absolute;
    inset: 0;
    background: url('{随机图片}') center/cover no-repeat;
    opacity: 0.25;
    animation: slowZoom 20s ease-in-out infinite alternate;
  }
  @keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
  }
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220,38,38,0.15);
    border: 1px solid rgba(220,38,38,0.3);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
  }
  .hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    background: linear-gradient(120deg, #ffffff 20%, #fca5a5 40%, #fb923c 60%, #ffffff 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(254,242,242,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.3px;
  }
  .hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), #f87171);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(220,38,38,0.4);
  }
  .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(220,38,38,0.6);
    color: white;
  }
  .btn-hero-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
  }
  .btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    transform: translateY(-2px);
  }
  .floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: 1;
  }
  .orb-1 {
    width: 300px; height: 300px;
    background: var(--primary);
    top: 15%; left: 10%;
    animation: floatOrb 8s ease-in-out infinite;
  }
  .orb-2 {
    width: 200px; height: 200px;
    background: var(--accent);
    bottom: 20%; right: 15%;
    animation: floatOrb 6s ease-in-out infinite reverse;
  }
  @keyframes floatOrb {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
  }

  /* 导航 */
  .navbar-garden {
    background: rgba(20,16,19,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  .navbar-brand-garden {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .navbar-brand-garden i {
    color: var(--primary);
    font-size: 1.8rem;
  }
  .nav-link-garden {
    color: rgba(254,242,242,0.7);
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
  }
  .nav-link-garden:hover {
    color: white;
    background: rgba(220,38,38,0.15);
  }
  .navbar-toggler-garden {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 8px;
    background: transparent;
  }
  .navbar-toggler-icon-garden {
    width: 20px; height: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 4px;
    display: block;
  }

  /* 通用区块 */
  .section-padding { padding: 80px 0; }
  .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .section-tag {
    display: inline-block;
    background: rgba(220,38,38,0.12);
    border: 1px solid rgba(220,38,38,0.2);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  .section-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .section-subtitle {
    color: rgba(254,242,242,0.6);
    font-size: 1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* 影片卡片 */
  .poster-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(40px);
    animation: cardFadeIn 0.8s ease forwards;
    margin-bottom: 24px;
  }
  .poster-card:nth-child(2) { animation-delay: 0.1s; }
  .poster-card:nth-child(3) { animation-delay: 0.2s; }
  .poster-card:nth-child(4) { animation-delay: 0.3s; }
  .poster-card:nth-child(5) { animation-delay: 0.4s; }
  .poster-card:nth-child(6) { animation-delay: 0.5s; }
  .poster-card:nth-child(7) { animation-delay: 0.6s; }
  .poster-card:nth-child(8) { animation-delay: 0.7s; }
  .poster-card:nth-child(9) { animation-delay: 0.8s; }
  .poster-card:nth-child(10) { animation-delay: 0.9s; }
  .poster-card:nth-child(11) { animation-delay: 1s; }
  .poster-card:nth-child(12) { animation-delay: 1.1s; }
  @keyframes cardFadeIn {
    to { opacity: 1; transform: translateY(0); }
  }
  .poster-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-float);
    border-color: rgba(220,38,38,0.3);
  }
  .poster-wrapper {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(20,16,19,0.6) 0%, rgba(20,16,19,0.9) 100%);
  }
  .poster-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .poster-img.loaded {
    opacity: 1;
  }
  .poster-card:hover .poster-img {
    transform: scale(1.1);
  }
  .poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(20,16,19,0.2) 40%, rgba(20,16,19,0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
  }
  .poster-card:hover .poster-overlay {
    opacity: 1;
  }
  .poster-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--primary), #f87171);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(220,38,38,0.4);
    z-index: 2;
  }
  .poster-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    color: #fbbf24;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .poster-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
  }
  .poster-meta {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
  }
  .poster-overlay-text {
    color: white;
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
  }

  /* 榜单样式 */
  .rank-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .rank-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(220,38,38,0.2);
    transform: translateX(6px);
  }
  .rank-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    min-width: 48px;
    text-align: center;
    font-style: italic;
  }
  .rank-info { flex: 1; }
  .rank-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-light);
  }
  .rank-desc {
    font-size: 0.85rem;
    color: rgba(254,242,242,0.6);
  }

  /* 步骤条 */
  .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
  }
  .step-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .step-item:hover {
    background: rgba(255,255,255,0.04);
    transform: translateY(-4px);
  }
  .step-number {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 24px rgba(220,38,38,0.3);
  }
  .step-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-light);
  }
  .step-desc {
    font-size: 0.9rem;
    color: rgba(254,242,242,0.6);
    line-height: 1.6;
  }

  /* 主题专题 */
  .topic-card {
    background: linear-gradient(135deg, rgba(220,38,38,0.1), rgba(251,146,60,0.05));
    border: 1px solid rgba(220,38,38,0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
  }
  .topic-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
  }
  .topic-desc {
    font-size: 1rem;
    color: rgba(254,242,242,0.7);
    line-height: 1.8;
    margin-bottom: 24px;
  }

  /* 友情链接 */
  .friend-links {
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 60px;
    border: 1px solid rgba(255,255,255,0.05);
  }
  .friend-links-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .friend-links-content {
    color: rgba(254,242,242,0.6);
    font-size: 0.9rem;
  }

  /* 页脚 */
  .footer-garden {
    background: rgba(20,16,19,0.8);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 0 20px;
    margin-top: 60px;
  }
  .footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .footer-text {
    color: rgba(254,242,242,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .footer-links a {
    color: rgba(254,242,242,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin-right: 20px;
  }
  .footer-links a:hover {
    color: var(--accent);
  }

  /* 弹窗 */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 24px;
  }
  .modal-overlay.active {
    display: flex;
  }
  .modal-card {
    background: #1a1518;
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
  }
  .modal-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
  }
  .modal-poster {
    position: relative;
    min-height: 400px;
  }
  .modal-poster img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .modal-info {
    padding: 32px;
  }
  .modal-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
  }
  .modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
  }
  .modal-meta-item {
    background: rgba(255,255,255,0.08);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
  }
  .modal-plot {
    color: rgba(254,242,242,0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .modal-actors {
    font-size: 0.9rem;
    color: rgba(254,242,242,0.6);
    line-height: 1.7;
  }

  /* 工具类 */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
    .hero-title { font-size: 2.8rem; }
    .modal-content { grid-template-columns: 1fr; }
    .modal-poster { min-height: 300px; }
    .navbar-brand-garden { font-size: 1.3rem; }
    .section-padding { padding: 60px 0; }
  }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .about-hero {
            position: relative;
            padding: 120px 0 80px;
            background: linear-gradient(135deg, rgba(20,16,19,0.95) 0%, rgba(30,20,25,0.9) 50%, rgba(220,38,38,0.2) 100%);
            overflow: hidden;
        }
.about-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(220,38,38,0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }
.about-section {
            padding: 80px 0;
            position: relative;
        }
.about-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-lg);
            padding: 40px;
            margin-bottom: 40px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.about-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-float);
        }
.about-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
        }
.about-stats {
            background: linear-gradient(135deg, rgba(220,38,38,0.1) 0%, rgba(251,146,60,0.1) 100%);
            border: 1px solid rgba(220,38,38,0.2);
            border-radius: var(--radius-lg);
            padding: 40px 20px;
            margin: 60px 0;
        }
.stat-item {
            text-align: center;
            padding: 20px;
        }
.stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
            margin-bottom: 8px;
            font-family: 'Inter', sans-serif;
        }
.stat-label {
            color: var(--text-light);
            opacity: 0.8;
            font-size: 0.95rem;
        }
.timeline {
            position: relative;
            padding-left: 30px;
        }
.timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            opacity: 0.3;
        }
.timeline-item {
            position: relative;
            padding: 20px 0 20px 30px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 25px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid var(--bg-dark);
            box-shadow: 0 0 0 2px var(--primary);
        }
.feature-list {
            list-style: none;
            padding: 0;
        }
.feature-list li {
            padding: 10px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--text-light);
            opacity: 0.9;
        }
.feature-list li i {
            color: var(--accent);
            margin-top: 4px;
            font-size: 0.9rem;
        }
.about-hero {
                padding: 100px 0 60px;
            }
.about-card {
                padding: 25px;
            }
.stat-number {
                font-size: 2rem;
            }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .disclaimer-hero {
            position: relative;
            padding: 120px 0 60px;
            background: linear-gradient(135deg, rgba(20,16,19,0.95) 0%, rgba(30,20,25,0.9) 50%, rgba(20,16,19,0.95) 100%);
            overflow: hidden;
        }
.disclaimer-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(220,38,38,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(251,146,60,0.08) 0%, transparent 40%);
            pointer-events: none;
        }
.disclaimer-hero .hero-content {
            position: relative;
            z-index: 2;
        }
.disclaimer-section {
            padding: 40px 0;
        }
.disclaimer-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-md);
            padding: 32px 36px;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }
.disclaimer-card:hover {
            border-color: rgba(220,38,38,0.3);
            box-shadow: var(--shadow-float);
            transform: translateY(-2px);
        }
.disclaimer-card h2 {
            color: var(--accent);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.disclaimer-card h2 i {
            color: var(--primary);
            font-size: 1.2rem;
        }
.disclaimer-card p, .disclaimer-card li {
            color: var(--text-light);
            opacity: 0.85;
            line-height: 1.8;
            font-size: 0.95rem;
        }
.disclaimer-card ul {
            padding-left: 20px;
            margin-bottom: 0;
        }
.disclaimer-card ul li {
            margin-bottom: 10px;
        }
.highlight-text {
            color: var(--accent);
            font-weight: 600;
        }
.text-muted-garden {
            color: rgba(254,242,242,0.5) !important;
            font-size: 0.85rem;
        }
.last-updated {
            display: inline-block;
            background: rgba(220,38,38,0.15);
            border: 1px solid rgba(220,38,38,0.3);
            color: var(--accent);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-bottom: 24px;
        }
.disclaimer-hero { padding: 100px 0 40px; }
.disclaimer-card { padding: 24px; }

/* --- 子页面追加 --- */
background: linear-gradient(135deg, rgba(20,16,19,0.92) 0%, rgba(30,20,22,0.85) 100%), url(' {随机图片}
.guide-section {
            padding: 70px 0;
            border-bottom: 1px solid rgba(220,38,38,0.08);
        }
.guide-section:last-child { border-bottom: none; }
.step-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(220,38,38,0.12);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
.step-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-soft);
            border-color: var(--primary);
        }
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 10px;
            color: var(--accent);
            font-size: 1rem;
        }
.tip-box {
            background: rgba(220,38,38,0.06);
            border-left: 4px solid var(--primary);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            padding: 20px 24px;
            margin: 24px 0;
        }
.tip-box i {
            color: var(--accent);
            margin-right: 10px;
        }
.shortcut-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
            margin-top: 24px;
        }
.shortcut-item {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
.shortcut-item:hover {
            border-color: var(--primary);
            background: rgba(220,38,38,0.04);
        }
.shortcut-item i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 12px;
            display: block;
        }
.shortcut-item .key {
            background: rgba(255,255,255,0.08);
            padding: 4px 12px;
            border-radius: 6px;
            font-family: 'Inter', monospace;
            font-size: 0.85rem;
            color: var(--text-light);
            border: 1px solid rgba(255,255,255,0.1);
        }
.faq-item {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: var(--radius-md);
            padding: 24px;
            margin-bottom: 16px;
        }
.faq-item h4 {
            color: var(--accent);
            font-size: 1.05rem;
            margin-bottom: 12px;
            font-weight: 600;
        }
.faq-item p {
            color: rgba(254,242,242,0.75);
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
        }
.player-settings {
            background: rgba(0,0,0,0.2);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            margin: 16px 0;
            border: 1px solid rgba(255,255,255,0.04);
        }
.player-settings .row {
            align-items: center;
            margin-bottom: 12px;
        }
.player-settings .row:last-child { margin-bottom: 0; }
.player-settings .label {
            color: var(--text-light);
            font-weight: 500;
            font-size: 0.9rem;
        }
.player-settings .value {
            color: rgba(254,242,242,0.7);
            font-size: 0.9rem;
        }
.guide-hero { padding: 70px 0 50px; }
.guide-section { padding: 50px 0; }
.step-card { padding: 20px 18px; }
.shortcut-grid { grid-template-columns: repeat(2, 1fr); }

/* --- 子页面追加 --- */
/* 隐私政策页面专属样式 */
        .privacy-section {
            padding: 40px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
.privacy-section:last-child {
            border-bottom: none;
        }
.privacy-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-md);
            padding: 28px 32px;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }
.privacy-card:hover {
            background: rgba(255,255,255,0.05);
            border-color: rgba(220,38,38,0.3);
            box-shadow: var(--shadow-float);
        }
.privacy-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(220,38,38,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 16px;
        }
.privacy-title {
            color: var(--text-light);
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
.privacy-text {
            color: rgba(254,242,242,0.75);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 12px;
        }
.privacy-list {
            list-style: none;
            padding: 0;
            margin: 0 0 12px 0;
        }
.privacy-list li {
            color: rgba(254,242,242,0.75);
            font-size: 0.95rem;
            line-height: 1.8;
            padding-left: 24px;
            position: relative;
            margin-bottom: 6px;
        }
.privacy-list li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-size: 0.9rem;
        }
.privacy-highlight {
            color: var(--accent);
            font-weight: 600;
        }
.privacy-note {
            background: rgba(251,146,60,0.1);
            border-left: 3px solid var(--accent);
            padding: 14px 20px;
            border-radius: 0 12px 12px 0;
            margin: 16px 0;
            font-size: 0.9rem;
            color: rgba(254,242,242,0.85);
            line-height: 1.7;
        }
.privacy-update {
            text-align: center;
            padding: 20px 0 0;
            color: rgba(254,242,242,0.5);
            font-size: 0.85rem;
        }
.contact-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
.contact-link:hover {
            color: var(--primary);
            text-decoration: underline;
        }