/* 全局样式 - 深色主题优化 */
:root {
    --primary-color: #ff6e6c;   /* Button & Highlight */
    --secondary-color: #67568c; /* Secondary */
    --accent-color: #fbdd74;    /* Tertiary */
    --background-color: #0f1419; /* 深色背景 */
    --card-bg-color: #1a1f2e;    /* 卡片背景 */
    --text-color: #ffffff;       /* 白色主文字 */
    --text-muted: #b8c5d1;       /* 浅灰色副文字 */
    --border-color: #2d3748;     /* 深色边框 */
    --spacing-unit: 8px;
    --transition-speed: 0.3s;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-color);
}

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

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 calc(2 * var(--spacing-unit));
}

ul {
    list-style: none;
}

.section {
    padding: calc(12 * var(--spacing-unit)) 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: calc(8 * var(--spacing-unit));
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* 多语言文字优化 */
html[lang="en"],
html[lang="de"],
html[lang="es"],
html[lang="fr"],
html[lang="ja"],
html[lang="ko"] {
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 亚洲语言特殊优化 */
html[lang="ja"],
html[lang="ko"] {
    font-feature-settings: "kern" 1;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* 英语优化 */
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4,
html[lang="en"] h5,
html[lang="en"] h6 {
    font-weight: 600;
    letter-spacing: -0.015em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

html[lang="en"] p {
    line-height: 1.75;
    font-weight: 400;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
}

/* 德语优化 */
html[lang="de"] h1,
html[lang="de"] h2,
html[lang="de"] h3,
html[lang="de"] h4,
html[lang="de"] h5,
html[lang="de"] h6 {
    font-weight: 600;
    letter-spacing: -0.015em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

html[lang="de"] p {
    line-height: 1.75;
    font-weight: 400;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
}

/* 西班牙语优化 */
html[lang="es"] h1,
html[lang="es"] h2,
html[lang="es"] h3,
html[lang="es"] h4,
html[lang="es"] h5,
html[lang="es"] h6 {
    font-weight: 600;
    letter-spacing: -0.015em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

html[lang="es"] p {
    line-height: 1.75;
    font-weight: 400;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
}

/* 法语优化 */
html[lang="fr"] h1,
html[lang="fr"] h2,
html[lang="fr"] h3,
html[lang="fr"] h4,
html[lang="fr"] h5,
html[lang="fr"] h6 {
    font-weight: 600;
    letter-spacing: -0.015em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

html[lang="fr"] p {
    line-height: 1.75;
    font-weight: 400;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
}

/* 日语优化 */
html[lang="ja"] h1,
html[lang="ja"] h2,
html[lang="ja"] h3,
html[lang="ja"] h4,
html[lang="ja"] h5,
html[lang="ja"] h6 {
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

html[lang="ja"] p {
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
    letter-spacing: 0.01em;
}

/* 韩语优化 */
html[lang="ko"] h1,
html[lang="ko"] h2,
html[lang="ko"] h3,
html[lang="ko"] h4,
html[lang="ko"] h5,
html[lang="ko"] h6 {
    font-weight: 600;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

html[lang="ko"] p {
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
    letter-spacing: 0.005em;
}

/* 所有语言的按钮优化 */
html[lang="en"] .btn,
html[lang="de"] .btn,
html[lang="es"] .btn,
html[lang="fr"] .btn,
html[lang="ja"] .btn,
html[lang="ko"] .btn {
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.01em;
}

/* 所有语言的导航链接优化 */
html[lang="en"] .nav-links a,
html[lang="de"] .nav-links a,
html[lang="es"] .nav-links a,
html[lang="fr"] .nav-links a,
html[lang="ja"] .nav-links a,
html[lang="ko"] .nav-links a {
    font-weight: 500;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.01em;
}

/* 所有语言的section-title优化 */
html[lang="en"] .section-title,
html[lang="de"] .section-title,
html[lang="es"] .section-title,
html[lang="fr"] .section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 亚洲语言的section-title特殊优化 */
html[lang="ja"] .section-title,
html[lang="ko"] .section-title {
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 亚洲语言的按钮特殊优化 */
html[lang="ja"] .btn,
html[lang="ko"] .btn {
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.02em;
}

/* 亚洲语言的导航链接特殊优化 */
html[lang="ja"] .nav-links a,
html[lang="ko"] .nav-links a {
    font-weight: 500;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.02em;
}

/* 字体加载优化 */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

/* 所有语言的通用文字清晰度增强 */
html[lang="en"] *,
html[lang="de"] *,
html[lang="es"] *,
html[lang="fr"] *,
html[lang="ja"] *,
html[lang="ko"] * {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 移动端文字优化 */
@media (max-width: 768px) {
    html[lang="en"] h1,
    html[lang="de"] h1,
    html[lang="es"] h1,
    html[lang="fr"] h1,
    html[lang="ja"] h1,
    html[lang="ko"] h1 {
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        font-weight: 700;
    }
    
    html[lang="en"] p,
    html[lang="de"] p,
    html[lang="es"] p,
    html[lang="fr"] p,
    html[lang="ja"] p,
    html[lang="ko"] p {
        line-height: 1.8;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }
}

/* 自定义光标 */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    pointer-events: none;
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
    z-index: 9999;
    opacity: 0.9;
}

/* 导航栏 */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(2 * var(--spacing-unit)) calc(4 * var(--spacing-unit));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: padding var(--transition-speed) ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
    padding: var(--spacing-unit) calc(4 * var(--spacing-unit));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: calc(2 * var(--spacing-unit));
}

.logo img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: calc(4 * var(--spacing-unit));
}

.nav-links li a {
    font-weight: 500;
    position: relative;
    color: var(--text-color);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.01em;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.github-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--card-bg-color);
    padding: 8px 16px;
    border-radius: 30px;
    transition: all var(--transition-speed) ease;
    color: var(--text-color);
}

.github-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all var(--transition-speed) ease;
}

/* 英雄区 */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #2d3748 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 110, 108, 0.1) 0%, rgba(15, 20, 25, 0) 70%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    display: flex;
    padding: 80px calc(12 * var(--spacing-unit)) calc(8 * var(--spacing-unit));
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: calc(6 * var(--spacing-unit));
    padding-bottom: calc(4 * var(--spacing-unit));
}

.hero-text {
    flex: 0 0 45%;
    max-width: 45%;
    text-align: left;
    margin-top: calc(6 * var(--spacing-unit));
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-unit);
    line-height: 1.1;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: calc(3 * var(--spacing-unit));
    color: var(--text-muted);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.01em;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: calc(4 * var(--spacing-unit));
    color: var(--text-muted);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: calc(2 * var(--spacing-unit));
    margin-top: calc(4 * var(--spacing-unit));
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.01em;
}

.btn.primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn.primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn.secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn.secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* 故障文字效果 */
.glitch {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.glitch::before,
.glitch::after {
    content: none;
}

.hero-animation {
    flex: 1;
    max-width: 600px;
    z-index: 1;
    position: relative;
}

.frame-container {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: all var(--transition-speed) ease;
}

.frame-container:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: var(--card-bg-color);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.1));
    z-index: 1;
    pointer-events: none;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 新增：Hero区域视频容器样式 */
.hero-video-container {
    flex: 1 1 50%;
    max-width: 50%;
    height: auto;
    margin-top: calc(3 * var(--spacing-unit));
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-color: #1f1235;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero Media Wrapper Styles */
.hero-media-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.game-screenshot {
    flex: none;
    max-width: 100%;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.game-screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.game-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.game-screenshot:hover img {
    transform: scale(1.02);
}

/* Hero Video Wrapper Styles */
.hero-video-wrapper {
    position: relative;
    flex: none;
    max-width: 100%;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio for full width layout */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(112, 224, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(112, 224, 0, 0.4);
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
}



/* 概述部分 - 游戏主题优化 */
.section-overview {
    position: relative;
    overflow: hidden;
    padding: calc(16 * var(--spacing-unit)) 0;
    background: linear-gradient(135deg, var(--background-color) 0%, rgba(26, 31, 46, 0.8) 100%);
}

.section-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 110, 108, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 221, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(103, 86, 140, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.overview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(8 * var(--spacing-unit));
    max-width: 1200px;
    margin: 0 auto;
}

.overview-text {
    width: 100%;
    text-align: center;
}

.overview-text p {
    margin-bottom: calc(6 * var(--spacing-unit));
    font-size: 1.2rem;
    line-height: 1.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 400;
    color: var(--text-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 calc(2 * var(--spacing-unit));
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(4 * var(--spacing-unit));
    margin-top: calc(6 * var(--spacing-unit));
    padding: calc(4 * var(--spacing-unit));
    background: rgba(26, 31, 46, 0.3);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 110, 108, 0.2);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: calc(3 * var(--spacing-unit));
    font-size: 1.1rem;
    padding: calc(3 * var(--spacing-unit));
    background: rgba(45, 55, 72, 0.4);
    border-radius: calc(var(--border-radius) / 2);
    transition: all var(--transition-speed) ease;
    border: 1px solid transparent;
}

.feature-list li:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 110, 108, 0.2);
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1.4rem;
    min-width: 24px;
    text-shadow: 0 0 10px rgba(255, 110, 108, 0.3);
}



.overview-image {
    width: 50%;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
}

.overview-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.overview-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 特性部分 - 游戏主题增强 */
.section-features {
    position: relative;
    background: linear-gradient(180deg, var(--background-color) 0%, var(--card-bg-color) 100%);
    padding: calc(20 * var(--spacing-unit)) 0;
}

.section-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 110, 108, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(103, 86, 140, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(3 * var(--spacing-unit));
}

.feature-card {
    background: linear-gradient(145deg, rgba(26, 31, 46, 0.8), rgba(45, 55, 72, 0.6));
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    margin-bottom: calc(2 * var(--spacing-unit));
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: calc(1 * var(--spacing-unit));
    color: #ffffff;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-card p {
    color: #f0f0f0;
    font-size: 1rem;
    line-height: 1.8;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    font-weight: 400;
    margin-bottom: calc(2 * var(--spacing-unit));
}

/* 技术内容区域 - 游戏主题 */
.technology-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(6 * var(--spacing-unit));
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: calc(6 * var(--spacing-unit));
    margin-top: calc(8 * var(--spacing-unit));
}

.tech-item {
    background: linear-gradient(145deg, rgba(26, 31, 46, 0.8), rgba(45, 55, 72, 0.6));
    border-radius: var(--border-radius);
    padding: calc(6 * var(--spacing-unit));
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 110, 108, 0.2);
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 110, 108, 0.05), rgba(251, 221, 116, 0.05));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 110, 108, 0.2);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: calc(3 * var(--spacing-unit));
    text-shadow: 0 0 15px rgba(255, 110, 108, 0.4);
}

.tech-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: calc(3 * var(--spacing-unit));
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.tech-item p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* 演示部分 */
.section-demos {
    padding: calc(16 * var(--spacing-unit)) 0;
    position: relative;
    overflow: hidden;
}

.section-demos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at left bottom, rgba(99, 102, 241, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
}

.demos-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: calc(2 * var(--spacing-unit));
    margin-bottom: calc(6 * var(--spacing-unit));
}

.demo-tab {
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.demo-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.demo-tab.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.demo-content {
    position: relative;
}

.demo-panel {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.demo-panel.active {
    display: block;
    opacity: 1;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: calc(6 * var(--spacing-unit));
}

.demo-item {
    border-radius: var(--border-radius);
    overflow: visible;
    background-color: var(--card-bg-color);
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
}

.demo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.demo-video {
    width: 100%;
}

.demo-video video {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.demo-info {
    padding: calc(3 * var(--spacing-unit));
}

.demo-info h3 {
    margin-bottom: var(--spacing-unit);
    font-size: 1.3rem;
}

.demo-info p {
    color: var(--text-muted);
}

/* Demo Note Styles */
.demo-note {
    font-size: 0.9em;
    color: #4b5563; /* Consider using a CSS variable */
    margin-top: calc(4 * var(--spacing-unit)); /* Adjusted from negative margin */
    margin-bottom: calc(4 * var(--spacing-unit));
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 安装部分 */
.section-installation {
    background-color: var(--card-bg-color);
    padding: calc(16 * var(--spacing-unit)) 0;
}

.installation-content {
    max-width: 800px;
    margin: 0 auto;
}

.installation-tabs {
    display: flex;
    justify-content: center;
    gap: calc(2 * var(--spacing-unit));
    margin-bottom: calc(4 * var(--spacing-unit));
}

.installation-tab {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.installation-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.installation-tab.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.installation-panel {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.installation-panel.active {
    display: block;
    opacity: 1;
}

.code-block {
    background-color: #0f172a;
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    margin-top: calc(2 * var(--spacing-unit));
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.code-block pre {
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.code-block code {
    font-family: 'Source Code Pro', monospace;
    color: var(--text-color);
    line-height: 1.8;
}

/* 论文部分 */
.section-paper {
    padding: calc(16 * var(--spacing-unit)) 0;
    position: relative;
    overflow: hidden;
}

.section-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at right center, rgba(99, 102, 241, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
}

.paper-content {
    display: flex;
    align-items: center;
    gap: calc(8 * var(--spacing-unit));
}

.paper-image {
    flex: 1;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    transform: perspective(1000px) rotateY(5deg);
}

.paper-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.paper-info {
    flex: 1;
}

.paper-info h3 {
    font-size: 1.8rem;
    margin-bottom: calc(3 * var(--spacing-unit));
}

.paper-info p {
    color: var(--text-muted);
    margin-bottom: calc(4 * var(--spacing-unit));
}

.paper-links {
    display: flex;
    gap: calc(2 * var(--spacing-unit));
}

/* 页脚 */
.footer {
    background-color: var(--card-bg-color);
    padding: calc(8 * var(--spacing-unit)) 0 calc(4 * var(--spacing-unit));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: calc(6 * var(--spacing-unit));
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: calc(2 * var(--spacing-unit));
}

.footer-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: calc(8 * var(--spacing-unit));
}

.footer-column h3 {
    margin-bottom: calc(3 * var(--spacing-unit));
    font-size: 1.2rem;
    color: var(--text-color);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--spacing-unit));
}

.footer-column ul li a {
    color: var(--text-muted);
    transition: color var(--transition-speed) ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: calc(4 * var(--spacing-unit));
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* 语言切换器 */
.lang-switcher {
    display: flex;
    align-items: center;
    margin-left: calc(2 * var(--spacing-unit));
    position: relative;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background-color: var(--card-bg-color);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
    color: var(--text-color);
}

.lang-switcher-btn:hover {
    background-color: rgba(30, 41, 59, 0.8);
}

.lang-switcher-icon {
    font-size: 1rem;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    min-width: 120px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-speed) ease;
    z-index: 1001;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 8px 16px;
    display: block;
    text-align: left;
    transition: all var(--transition-speed) ease;
}

.lang-option:hover {
    background-color: rgba(99, 102, 241, 0.1);
}

.lang-option.active {
    background-color: rgba(99, 102, 241, 0.2);
}

/* 404页面 */
.error-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.error-code {
    font-size: 10rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.error-message {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.home-button {
    margin-top: 2rem;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero-content {
        flex-direction: column;
        padding-top: 100px; /* Adjusted from 120px, can be tweaked further if text is too high/low */
        text-align: center;
        align-items: center;
        padding-left: calc(4 * var(--spacing-unit)); /* Adjusted for tighter mobile padding */
        padding-right: calc(4 * var(--spacing-unit)); /* Adjusted for tighter mobile padding */
        padding-bottom: calc(6 * var(--spacing-unit));
    }

    .hero-text {
        /* Reset PC top margin that might push it down too much or cause alignment issues with video */
        margin-top: 0;
        /* Space below the text block, before the video */
        margin-bottom: calc(4 * var(--spacing-unit)); /* e.g., 32px if unit is 8px */
        width: 100%; /* Ensure it takes full width for centering its content */
        max-width: 500px; /* Constrain text block width for readability on mobile */
    }

    .hero-video-container {
        /* Reset PC top margin */
        margin-top: 0; /* Space above video is controlled by .hero-text's margin-bottom */
        width: 100%;   /* Video container takes full available width */
        max-width: 400px; /* Example: Constrain video width on mobile. Adjust as needed. */
                       /* Could also be something like 90vw or similar percentage */
        /* Aspect-ratio and other styles are global and should apply */
    }

    .paper-content {
        flex-direction: column;
    }

    .paper-info {
        order: 2;
    }

    .paper-image {
        order: 1;
        margin-bottom: calc(6 * var(--spacing-unit));
    }

    .frame-container,
    .paper-image {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content {
        padding-top: 80px; /* Further fine-tune for very small screens */
        padding-left: calc(2 * var(--spacing-unit));
        padding-right: calc(2 * var(--spacing-unit));
    }

    .hero-text h1 {
        font-size: 2.5rem; /* Adjusted for smaller screens */
    }

    .hero-text h2 {
        font-size: 1.3rem; /* Adjusted for smaller screens */
    }

    .hero-video-container {
        max-width: 90%; /* More relative width for smaller screens */
    }
    
    .hero-media-wrapper {
        flex-direction: column;
    }
    
    .game-screenshot,
    .hero-video-wrapper {
        max-width: 100%;
        flex: none;
    }
    
    .hero-video-wrapper {
        padding-bottom: 56.25%; /* 16:9 aspect ratio for mobile */
    }

    .demo-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: calc(6 * var(--spacing-unit));
    }

    .footer-logo {
        align-items: center;
        margin-bottom: calc(4 * var(--spacing-unit));
    }

    .footer-links {
        justify-content: center;
    }

    .overview-content {
        flex-direction: column; /* Stack items vertically */
        align-items: center;    /* Center items horizontally */
        gap: calc(4 * var(--spacing-unit)); /* Adjust gap for vertical stacking */
    }

    .overview-text {
        text-align: center; /* Center align text within this block */
        width: 100%;        /* Allow it to take full width to center its content */
        max-width: 500px;   /* Optional: constrain width for readability */
    }

    .feature-list {
        display: inline-flex; /* Allows centering of the list itself if text-align:center on parent */
        flex-direction: column; /* Stack list items vertically */
        align-items: center;    /* Center list items if they have varying widths */
                                /* Or use align-items: flex-start; if you want text to align left within each item */
        gap: var(--spacing-unit); /* Adjust gap between list items */
    }

    .feature-list li {
        justify-content: center; /* Center content (icon and text) within each list item */
        /* If icons and text are misaligned, ensure they are vertically aligned too */
        /* display: flex; align-items: center; is already on .feature-list li globally */
    }

    .overview-image {
        width: 90%;         /* Adjust image width for mobile */
        max-width: 400px;   /* Max width for image */
        margin-top: calc(2 * var(--spacing-unit)); /* Add some space above image if it's below text */
    }
}

.hero-gif {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: calc(4 * var(--spacing-unit));
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: calc(3 * var(--spacing-unit));
    }
}

.how-it-works-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: calc(4 * var(--spacing-unit));
}

/* Style for the iframe and its wrapper */
#online-run-iframe-anchor {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: calc(4 * var(--spacing-unit));
}

#main-iframe {
    width: 100%;
    height: 2100px; /* Further increased height for mobile, with scrolling="no" */
    border: none;
    border-radius: var(--border-radius, 12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* Desktop layout for hero */
@media (min-width: 1024px) {
    .hero {
        min-height: auto; 
        padding-bottom: calc(4 * var(--spacing-unit)); /* MODIFIED: Significantly reduced bottom padding */
    }

    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start; 
        gap: calc(6 * var(--spacing-unit));
        padding-bottom: calc(4 * var(--spacing-unit)); /* ADDED: Explicitly set a small bottom padding for PC */
    }

    .hero-text {
        flex: 0 0 45%; /* 左侧文本区域占比 */
        max-width: 45%;
        text-align: left; /* 确保文本在桌面端左对齐 */
    }

    /* 新增：桌面端Hero视频容器样式 */
    .hero-video-container {
        flex: 1 1 50%; /* 右侧视频区域占比，允许伸缩 */
        max-width: 50%; /* 最大宽度 */
        height: auto; /* 高度自适应，由aspect-ratio控制 */
    }

    #online-run-iframe-anchor {
        /* 移除之前的flex布局，因为它不再是hero-content的子元素 */
        /* flex: 1 1 50%; */ /*  被移除 */
        /* max-width: 50%; */ /* 被移除 */
        /* 以下为移到页面下方后的样式，确保其在新位置正常展示 */
        width: 100%; /* 在其新的父容器（如.container）中占据全部宽度 */
        max-width: 1100px; /* 可以根据需要设置最大宽度，与.container一致 */
        margin-left: auto;
        margin-right: auto;
    }

    #main-iframe {
        height: 1350px;
    }
}

/* 新增：为包含移出iframe的新section的样式 (如果按建议添加了section) */
#online-run-section {
    padding-top: calc(4 * var(--spacing-unit)); /* MODIFIED: Further reduced top padding */
    /* padding-bottom will inherit from .section or can be set here if different */
}

#online-run-section .section-title {
    margin-bottom: calc(6 * var(--spacing-unit));
}

/* === Enhancements for Flowchart-like Sections === */

/* Adjust spacing for main flow containers */
.installation-flow,
.technical-flow {
    display: flex;
    flex-direction: column;
    gap: 0; /* Gap will be controlled by margin on steps */
}

.flow-step,
.tech-step {
    background-color: #f8f9fa; /* Slightly lighter card background */
    border: 1px solid #dee2e6; /* Softer border color */
    border-radius: 8px;
    padding: 20px 25px; /* Adjusted padding */
    box-shadow: 0 2px 4px rgba(0,0,0,0.04); /* Softer shadow */
    position: relative;
    margin-bottom: 35px; /* Increased space for dashed line and separation */
}

/* Dashed line separator for all but the last step/category */
.flow-step:not(:last-child)::after,
.tech-step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -18px; /* Position line in the margin space */
    left: 20%;   /* Start line a bit from the left */
    width: 60%;  /* Width of the dashed line */
    height: 1px; /* Thickness of the line */
    background-image: linear-gradient(to right, #adb5bd 60%, transparent 40%); /* Dashed line effect */
    background-size: 12px 1px; /* Dash length and gap */
    background-repeat: repeat-x;
}

/* Remove bottom margin from the very last card in each flow */
.installation-flow > .flow-step:last-child,
.technical-flow > .tech-step:last-child {
    margin-bottom: 0;
}
/* Ensure no dashed line for the last child */
.installation-flow > .flow-step:last-child::after,
.technical-flow > .tech-step:last-child::after {
    display: none;
}


/* Headings within steps/categories */
.flow-step h4,
.tech-step h4 {
    margin-top: 0;
    color: #212529; /* Darker heading color */
    display: flex;
    align-items: center;
    margin-bottom: 20px; /* More space below heading */
    font-size: 1.15em; /* Slightly larger heading */
}

.flow-step h4 i,
.tech-step h4 i {
    margin-right: 12px;
    color: #7c5dfa; /* Adjusted icon color to be a bit brighter */
    font-size: 1.35em; /* Slightly larger icon */
    min-width: 25px; /* Ensure icons align well if text wraps */
}

/* List items (the "要点") */
.flow-step ul, .tech-step ul {
    list-style-type: none; /* Remove default bullets if we add custom ones or just want spacing */
    padding-left: 5px; /* Slight overall indent for the list */
}

.flow-step ul li,
.tech-step ul li {
    margin-bottom: 16px; /* Increased space BETWEEN bullet points */
    line-height: 1.7;   /* Increased line height for multi-line bullet points */
    padding-left: 0px; /* Adjust if using custom bullets with ::before */
    color: #495057; /* Slightly softer text color for list items */
}

.flow-step ul li strong,
.tech-step ul li strong {
    color: #343a40; /* Make bolded text more distinct */
    font-weight: 600; /* Slightly bolder */
}


/* Code blocks styling within installation guide */
.installation-flow .code-block-inline pre,
.installation-flow .code-block pre {
    padding: 12px 15px;
    background-color: #2d2d2d; /* Dark background for code */
    color: #e6e6e6; /* Light text for dark background */
    border: 1px solid #444;
    border-radius: 6px;
    overflow-x: auto; /* Horizontal scroll for long code lines */
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    font-size: 0.9em;
    margin-top: 8px;
    margin-bottom: 15px; /* More space after code block */
    white-space: pre; /* Preserve spaces and line breaks, use with overflow-x */
}
/* For inline code within list items if any */
.flow-step ul li code,
.tech-step ul li code {
    background-color: #e9ecef;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #2c3e50;
}


/* Specific to Technical Highlights Diagram */
.tech-diagram {
    max-width: 160px; /* Adjusted size */
    float: right;
    margin-left: 25px;
    margin-top: 5px; /* Align better with the start of the list */
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 4px;
    background-color: #ffffff;
}

/* Clearfix for floated diagram - applies to .tech-step */
.tech-step::after { /* This was for the dashed line, let's ensure clearfix is also handled */
    /* The dashed line pseudo-element is already here */
    /* For clearfix, if the diagram is the only floated element: */
    /* content: ""; clear: both; display: table; */
    /* Simpler is to ensure the parent .tech-step has overflow: hidden or auto if needed, but float usually works with subsequent block elements */
}
.tech-step > ul { /* Ensure list below diagram clears it if diagram is tall */
    /* clear: right; */ /* Can be too aggressive, usually natural flow is okay */
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .tech-diagram {
        float: none;
        display: block;
        max-width: 60%;
        margin: 10px auto 20px auto;
    }

    .flow-step:not(:last-child)::after,
    .tech-step:not(:last-child)::after {
        width: 75%; /* Wider dashed line on mobile */
        left: 12.5%;
    }

    .flow-step h4, .tech-step h4 {
        font-size: 1.1em;
    }
    .flow-step h4 i, .tech-step h4 i {
        font-size: 1.25em;
    }
}

/* 视频展示区块样式 */
.section-video-showcase {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.section-video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: calc(8 * var(--spacing-unit));
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: calc(6 * var(--spacing-unit));
    margin-top: calc(8 * var(--spacing-unit));
}

.video-container {
    background: var(--card-bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
    position: relative;
}

.video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: calc(4 * var(--spacing-unit));
}

.video-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: calc(2 * var(--spacing-unit));
}

.video-info p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: calc(4 * var(--spacing-unit));
    }
    
    .video-container {
        margin: 0 calc(2 * var(--spacing-unit));
    }
    
    .video-info {
        padding: calc(3 * var(--spacing-unit));
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        margin: 0;
    }
}

/* Products区块样式 */
.section-products {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.section-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.section-products .section-title {
    color: white;
}

.section-products .section-title::after {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: calc(6 * var(--spacing-unit));
    margin-top: calc(8 * var(--spacing-unit));
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    border-radius: var(--border-radius);
    padding: calc(6 * var(--spacing-unit));
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(4 * var(--spacing-unit));
    transition: all var(--transition-speed) ease;
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: calc(3 * var(--spacing-unit));
    color: var(--text-color);
}

.product-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: calc(4 * var(--spacing-unit));
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: calc(1 * var(--spacing-unit)) 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: calc(4 * var(--spacing-unit));
    color: var(--text-muted);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: calc(1 * var(--spacing-unit));
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: calc(4 * var(--spacing-unit));
    }
    
    .product-card {
        padding: calc(4 * var(--spacing-unit));
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
    }
    
    .product-icon i {
        font-size: 1.5rem;
    }
}

/* 指南部分样式 */
.section-guides {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--card-bg-color) 100%);
    position: relative;
}

.guides-content {
    max-width: 1200px;
    margin: 0 auto;
}

.guide-intro {
    text-align: center;
    margin-bottom: calc(8 * var(--spacing-unit));
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guide-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(4 * var(--spacing-unit));
    margin-top: calc(6 * var(--spacing-unit));
}

.guide-category {
    background: linear-gradient(145deg, rgba(26, 31, 46, 0.8), rgba(45, 55, 72, 0.6));
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 110, 108, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.guide-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 110, 108, 0.1), rgba(255, 110, 108, 0));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.guide-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.guide-category:hover::before {
    opacity: 1;
}

.guide-category h3 {
    font-size: 1.2rem;
    margin-bottom: calc(3 * var(--spacing-unit));
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: calc(2 * var(--spacing-unit));
}

.guide-category h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
    background: rgba(255, 110, 108, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.guide-category:hover h3 i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.guide-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-category ul li {
    padding: calc(1.5 * var(--spacing-unit)) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: calc(3 * var(--spacing-unit));
    transition: all var(--transition-speed) ease;
}

.guide-category ul li:last-child {
    border-bottom: none;
}

.guide-category ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: calc(1.5 * var(--spacing-unit));
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: all var(--transition-speed) ease;
}

.guide-category ul li:hover {
    color: #ffffff;
    padding-left: calc(4 * var(--spacing-unit));
}

.guide-category ul li:hover::before {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .guides-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: calc(3 * var(--spacing-unit));
    }
}

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
        gap: calc(3 * var(--spacing-unit));
    }
    
    .guide-category {
        padding: calc(3 * var(--spacing-unit));
    }
    
    .guide-category h3 {
        font-size: 1.1rem;
    }
    
    .guide-category ul li {
        font-size: 0.9rem;
        padding: calc(1 * var(--spacing-unit)) 0;
        padding-left: calc(2.5 * var(--spacing-unit));
    }
}

@media (max-width: 576px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-category h3 {
        flex-direction: column;
        text-align: center;
        gap: calc(1 * var(--spacing-unit));
    }
}

/* 游戏机制网格样式 */
.mechanics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(4 * var(--spacing-unit));
    margin-top: calc(6 * var(--spacing-unit));
}

.mechanic-section {
    background: linear-gradient(145deg, rgba(26, 31, 46, 0.8), rgba(45, 55, 72, 0.6));
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(251, 221, 116, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mechanic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(251, 221, 116, 0.1), rgba(251, 221, 116, 0));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.mechanic-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.mechanic-section:hover::before {
    opacity: 1;
}

.mechanic-section h3 {
    font-size: 1.3rem;
    margin-bottom: calc(3 * var(--spacing-unit));
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: calc(2 * var(--spacing-unit));
}

.mechanic-section h3 i {
    color: var(--accent-color);
    font-size: 1.4rem;
    background: rgba(251, 221, 116, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.mechanic-section:hover h3 i {
    background: var(--accent-color);
    color: var(--background-color);
    transform: scale(1.1);
}

.mechanic-section p {
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: calc(3 * var(--spacing-unit));
    font-size: 1rem;
}

.mechanic-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mechanic-section ul li {
    padding: calc(1.5 * var(--spacing-unit)) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: calc(3 * var(--spacing-unit));
    transition: all var(--transition-speed) ease;
}

.mechanic-section ul li:last-child {
    border-bottom: none;
}

.mechanic-section ul li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    top: calc(1.5 * var(--spacing-unit));
    color: var(--accent-color);
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
}

.mechanic-section ul li:hover {
    color: #ffffff;
    padding-left: calc(4 * var(--spacing-unit));
}

.mechanic-section ul li:hover::before {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* 阴谋类型网格样式 */
.conspiracy-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(3 * var(--spacing-unit));
    margin-top: calc(4 * var(--spacing-unit));
}

.conspiracy-item {
    background: linear-gradient(145deg, rgba(45, 55, 72, 0.7), rgba(26, 31, 46, 0.9));
    border-radius: calc(var(--border-radius) / 2);
    padding: calc(3 * var(--spacing-unit));
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 110, 108, 0.3);
    position: relative;
    overflow: hidden;
}

.conspiracy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 110, 108, 0.1), rgba(255, 110, 108, 0));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.conspiracy-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.conspiracy-item:hover::before {
    opacity: 1;
}

.conspiracy-item h4 {
    font-size: 1.1rem;
    margin-bottom: calc(2 * var(--spacing-unit));
    color: var(--primary-color);
    font-weight: 600;
}

.conspiracy-item p {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* 优化特性网格样式 */
.optimization-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(3 * var(--spacing-unit));
    margin-top: calc(4 * var(--spacing-unit));
}

.opt-feature {
    background: linear-gradient(145deg, rgba(26, 31, 46, 0.8), rgba(45, 55, 72, 0.6));
    border-radius: var(--border-radius);
    padding: calc(3 * var(--spacing-unit));
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(251, 221, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.opt-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(251, 221, 116, 0.1), rgba(251, 221, 116, 0));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.opt-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.opt-feature:hover::before {
    opacity: 1;
}

.opt-feature h4 {
    font-size: 1.1rem;
    margin-bottom: calc(2 * var(--spacing-unit));
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: calc(1.5 * var(--spacing-unit));
}

.opt-feature h4 i {
    color: var(--accent-color);
    font-size: 1.2rem;
    background: rgba(251, 221, 116, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.opt-feature:hover h4 i {
    background: var(--accent-color);
    color: var(--background-color);
    transform: scale(1.1);
}

.opt-feature p {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* 安全列表样式 */
.security-list {
    list-style: none;
    padding: 0;
    margin: calc(4 * var(--spacing-unit)) 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(2 * var(--spacing-unit));
}

.security-list li {
    background: linear-gradient(145deg, rgba(45, 55, 72, 0.7), rgba(26, 31, 46, 0.9));
    border-radius: calc(var(--border-radius) / 2);
    padding: calc(2.5 * var(--spacing-unit));
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 110, 108, 0.2);
    color: #f0f0f0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: calc(2 * var(--spacing-unit));
}

.security-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    color: #ffffff;
}

.security-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    background: rgba(255, 110, 108, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
    flex-shrink: 0;
}

.security-list li:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .mechanics-grid,
    .optimization-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: calc(3 * var(--spacing-unit));
    }
    
    .conspiracy-types {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .security-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mechanics-grid,
    .optimization-features,
    .conspiracy-types {
        grid-template-columns: 1fr;
        gap: calc(2.5 * var(--spacing-unit));
    }
    
    .mechanic-section,
    .opt-feature {
        padding: calc(3 * var(--spacing-unit));
    }
    
    .mechanic-section h3,
    .opt-feature h4 {
        font-size: 1.1rem;
    }
    
    .security-list li {
        padding: calc(2 * var(--spacing-unit));
        font-size: 0.9rem;
    }
}

/* 下载部分样式 */
.section-download {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--card-bg-color) 100%);
    position: relative;
}

.download-content {
    display: flex;
    flex-direction: column;
    gap: calc(4 * var(--spacing-unit));
    align-items: center;
}

.download-info {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    margin-bottom: calc(4 * var(--spacing-unit));
}

.download-main-content {
    background: linear-gradient(145deg, rgba(26, 31, 46, 0.8), rgba(45, 55, 72, 0.6));
    border-radius: var(--border-radius);
    padding: calc(6 * var(--spacing-unit));
    border: 1px solid rgba(255, 110, 108, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-bottom: calc(4 * var(--spacing-unit));
}

.download-bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(4 * var(--spacing-unit));
    width: 100%;
    max-width: 1000px;
}

.download-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 110, 108, 0.1), rgba(255, 110, 108, 0));
    opacity: 0.5;
}

.download-info h3 {
    font-size: 1.8rem;
    margin-bottom: calc(3 * var(--spacing-unit));
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.download-info p {
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: calc(4 * var(--spacing-unit));
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.download-features {
    margin: calc(4 * var(--spacing-unit)) 0;
    position: relative;
    z-index: 1;
}

.download-features h4 {
    font-size: 1.2rem;
    margin-bottom: calc(2 * var(--spacing-unit));
    color: #ffffff;
    font-weight: 600;
}

.download-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.download-features ul li {
    padding: calc(1 * var(--spacing-unit)) 0;
    color: #e0e0e0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: calc(2 * var(--spacing-unit));
}

.download-features ul li i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.security-notice {
    background: linear-gradient(145deg, rgba(0, 255, 100, 0.12), rgba(0, 200, 80, 0.06));
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    border: 2px solid rgba(0, 255, 100, 0.3);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    height: fit-content;
}

.security-notice h4 {
    font-size: 1.1rem;
    margin-bottom: calc(2 * var(--spacing-unit));
    color: #00ff64;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: calc(1 * var(--spacing-unit));
}

.security-notice h4 i {
    color: #00ff64;
    font-size: 1.2rem;
}

.security-verification {
    margin-bottom: calc(2 * var(--spacing-unit));
}

.verification-item {
    display: flex;
    align-items: center;
    gap: calc(1 * var(--spacing-unit));
    margin-bottom: calc(1 * var(--spacing-unit));
    color: #00ff64;
    font-size: 0.95rem;
}

.verification-item i {
    color: #00ff64;
    font-size: 1rem;
}

.scan-date {
    color: #e0e0e0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.security-notice p {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: calc(3 * var(--spacing-unit));
    align-items: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, rgba(26, 31, 46, 0.8), rgba(45, 55, 72, 0.6));
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    border: 2px solid rgba(255, 110, 108, 0.2);
    backdrop-filter: blur(10px);
    height: fit-content;
}

.download-buttons .btn {
    padding: calc(3 * var(--spacing-unit)) calc(5 * var(--spacing-unit));
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: calc(var(--border-radius) / 2);
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    gap: calc(2 * var(--spacing-unit));
    min-width: 250px;
    justify-content: center;
}

.download-buttons .btn.primary {
    background: linear-gradient(135deg, var(--primary-color), #e53e3e);
    border: 2px solid var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 110, 108, 0.3);
}

.download-buttons .btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 110, 108, 0.4);
    background: linear-gradient(135deg, #e53e3e, var(--primary-color));
}

.download-buttons .btn.secondary {
    background: rgba(45, 55, 72, 0.8);
    border: 2px solid rgba(251, 221, 116, 0.5);
    color: var(--accent-color);
}

.btn-version-info {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-left: 8px;
    color: #e0e0e0;
}

.download-buttons .btn.secondary:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    background: rgba(251, 221, 116, 0.1);
    box-shadow: 0 8px 25px rgba(251, 221, 116, 0.2);
}

.system-requirements {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.15), rgba(0, 100, 200, 0.08));
    border-radius: 25px;
    padding: 50px 50px 40px 50px;
    border: 3px solid rgba(0, 150, 255, 0.3);
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.requirements-transition {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 100, 0.1), rgba(0, 200, 80, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 100, 0.3);
    position: relative;
    z-index: 2;
}

.requirements-transition .check-icon {
    font-size: 2rem;
    color: #00ff64;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 255, 100, 0.4);
}

.requirements-transition .transition-text {
    color: #00ff64;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.requirements-transition .guide-text {
    color: #ffffff;
    font-size: 0.95rem;
    opacity: 0.9;
}

.requirements-transition .arrow-down {
    font-size: 1.5rem;
    color: #00ff64;
    margin-top: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.system-requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0));
    opacity: 0.6;
}

.system-requirements h3 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #00d4ff;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
    letter-spacing: 0.5px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.req-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-radius: 25px;
    padding: 40px 30px;
    border: 2px solid rgba(0, 150, 255, 0.3);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.req-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.req-item:hover::before {
    left: 100%;
}

.req-item:hover {
    border-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.25), rgba(0, 100, 200, 0.15));
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.25);
}

.req-item .req-icon {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 212, 255, 0.4);
}

.req-item .req-label {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.req-item .req-value {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .download-bottom-section {
        grid-template-columns: 1fr;
        gap: calc(3 * var(--spacing-unit));
    }
    
    .download-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .download-buttons .btn {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .download-info {
        padding: calc(4 * var(--spacing-unit));
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .download-buttons .btn {
        min-width: auto;
        width: 100%;
    }
    
    .system-requirements {
        padding: 30px 20px;
    }
    
    .system-requirements h3 {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
    }
    
    .req-item {
        padding: 30px 25px;
        min-height: 160px;
    }
    
    .req-item .req-icon {
        font-size: 2.2rem;
    }
    
    .req-item .req-value {
        font-size: 1.2rem;
    }
}

/* Community & Reviews 部分样式 */
.section-community {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--card-bg-color) 100%);
    position: relative;
}

.section-community .section-intro {
    text-align: center;
    margin-bottom: calc(6 * var(--spacing-unit));
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-community .section-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: calc(4 * var(--spacing-unit));
    max-width: 900px;
    margin: 0 auto;
}

.review-item {
    background: linear-gradient(145deg, rgba(26, 31, 46, 0.8), rgba(45, 55, 72, 0.6));
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    border: 1px solid rgba(255, 110, 108, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 110, 108, 0.1), rgba(255, 110, 108, 0));
    opacity: 0.5;
}

.review-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 110, 108, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(3 * var(--spacing-unit));
    position: relative;
    z-index: 1;
}

.review-rating {
    display: flex;
    gap: calc(0.5 * var(--spacing-unit));
}

.review-rating i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.reviewer-info {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.reviewer-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.review-content {
    position: relative;
    z-index: 1;
}

.review-content p {
    color: #f0f0f0;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

/* Installation Guide 部分样式 */
.section-installation {
    background: linear-gradient(135deg, var(--card-bg-color) 0%, var(--background-color) 100%);
    position: relative;
}

.installation-content {
    max-width: 900px;
    margin: 0 auto;
}

.installation-intro {
    text-align: center;
    margin-bottom: calc(6 * var(--spacing-unit));
}

.installation-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.installation-steps {
    display: flex;
    flex-direction: column;
    gap: calc(4 * var(--spacing-unit));
}

.installation-steps .step-item {
    background: linear-gradient(145deg, rgba(45, 55, 72, 0.7), rgba(26, 31, 46, 0.9));
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    border: 1px solid rgba(251, 221, 116, 0.2);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.installation-steps .step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(251, 221, 116, 0.1), rgba(251, 221, 116, 0));
    opacity: 0.5;
}

.installation-steps .step-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(251, 221, 116, 0.2);
}

.step-header {
    display: flex;
    align-items: center;
    gap: calc(3 * var(--spacing-unit));
    margin-bottom: calc(3 * var(--spacing-unit));
    position: relative;
    z-index: 1;
}

.installation-steps .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #d69e2e);
    border-radius: 50%;
    color: var(--background-color);
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    flex-shrink: 0;
}

.installation-steps .step-number i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    opacity: 0.7;
}

.installation-steps .step-number span {
    position: relative;
    z-index: 1;
}

.step-header h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.installation-steps .step-content {
    position: relative;
    z-index: 1;
    margin-left: calc(9 * var(--spacing-unit));
}

.installation-steps .step-content p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: calc(2 * var(--spacing-unit));
    font-size: 1rem;
}

.installation-steps .step-content p:last-child {
    margin-bottom: 0;
}

.installation-steps .step-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(2 * var(--spacing-unit));
    }
    
    .installation-steps .step-content {
        margin-left: 0;
        margin-top: calc(2 * var(--spacing-unit));
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .installation-steps .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* FAQ 部分样式 */
.section-faq {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--card-bg-color) 100%);
    position: relative;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: calc(6 * var(--spacing-unit));
}

.faq-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: calc(4 * var(--spacing-unit));
}

.faq-item {
    background: linear-gradient(145deg, rgba(26, 31, 46, 0.8), rgba(45, 55, 72, 0.6));
    border-radius: var(--border-radius);
    padding: calc(4 * var(--spacing-unit));
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0));
    opacity: 0.5;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: calc(3 * var(--spacing-unit));
    margin-bottom: calc(3 * var(--spacing-unit));
    position: relative;
    z-index: 1;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #7c3aed);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    position: relative;
    z-index: 1;
    margin-left: calc(8 * var(--spacing-unit));
}

.faq-answer p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: calc(2 * var(--spacing-unit));
    font-size: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .faq-answer {
        margin-left: 0;
        margin-top: calc(2 * var(--spacing-unit));
    }
    
    .faq-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
    }
}