/* JBT-RAMOS 超级豪华版样式表 */
/* 技术含量爆表！ */

/* ==== 基础变量 ==== */
:root {
    --primary-color: #00ff88;
    --secondary-color: #0088ff;
    --accent-color: #ff0088;
    --warning-color: #ff8c00;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: #1a1a2e;
    --text-color: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --gradient-1: linear-gradient(135deg, #00ff88 0%, #0088ff 100%);
    --gradient-2: linear-gradient(135deg, #ff0088 0%, #00ff88 100%);
    --gradient-3: linear-gradient(135deg, #ff8c00 0%, #ff0088 100%);
    --shadow-1: 0 10px 40px rgba(0, 255, 136, 0.3);
    --shadow-2: 0 5px 20px rgba(0, 136, 255, 0.2);
    --shadow-3: 0 15px 50px rgba(255, 0, 136, 0.3);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    background: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==== Matrix Canvas背景 ==== */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.15;
}

/* ==== 粒子背景 ==== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1a1a2e 0%, #0a0a0f 100%);
}

/* ==== 导航栏 ==== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand .logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.version-badge {
    padding: 0.3rem 0.8rem;
    background: var(--gradient-2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--dark-bg);
    animation: pulse 2s infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
}

.nav-menu a:hover::before {
    width: 80%;
}

/* ==== ASCII艺术区域 ==== */
.ascii-hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
}

.ascii-art {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    line-height: 1.2;
    color: var(--primary-color);
    text-align: center;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: glowText 3s ease-in-out infinite;
}

@keyframes glowText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; text-shadow: 0 0 20px rgba(0, 255, 136, 0.8); }
}

/* ==== 终端样式 ==== */
.terminal-box {
    max-width: 900px;
    margin: 3rem auto;
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.terminal-header {
    background: #2d2d2d;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-button.red { background: #ff5f56; }
.terminal-button.yellow { background: #ffbd2e; }
.terminal-button.green { background: #27c93f; }

.terminal-title {
    flex: 1;
    text-align: center;
    color: #999;
    font-size: 12px;
}

.terminal-body {
    padding: 20px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.5;
    min-height: 200px;
}

.prompt {
    color: var(--primary-color);
    font-weight: bold;
}

.command {
    color: var(--secondary-color);
    font-weight: bold;
}

.output {
    color: var(--text-secondary);
}

.status-active {
    color: var(--primary-color);
    font-weight: bold;
    animation: blink 1s infinite;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.typed-text {
    color: var(--secondary-color);
    font-weight: bold;
}

/* ==== 英雄区域增强 ==== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.glitch {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch 3s infinite;
}

.hero-subtitle {
    font-size: 2rem;
    margin: 1rem 0;
    color: var(--warning-color);
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.hero-tagline {
    font-size: 1.8rem;
    margin: 2rem 0;
}

.highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* ==== 统计卡片网格 ==== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-unit {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: bold;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ==== 按钮样式 ==== */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--dark-bg);
    box-shadow: var(--shadow-1);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.6);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
}

.btn-accent {
    background: var(--gradient-3);
    color: var(--dark-bg);
}

.btn-accent:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==== 汇编代码展示 ==== */
.assembly-section {
    padding: 5rem 0;
    background: rgba(26, 26, 46, 0.5);
}

.code-showcase {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.code-panel {
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.code-header {
    background: #2d2d2d;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.code-lang {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 12px;
}

.code-file {
    color: var(--text-secondary);
    font-size: 12px;
}

.code-content {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    line-height: 1.5;
}

.code-content code {
    color: var(--text-color);
}

/* 代码语法高亮 */
.code-content code {
    display: block;
}

/* ==== 技术规格详解 ==== */
.tech-specs {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spec-category {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: var(--transition);
}

.spec-category:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-1);
    transform: translateY(-5px);
}

.spec-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 0.8rem 0;
    color: var(--text-secondary);
}

.spec-table td:first-child {
    color: var(--text-color);
    font-weight: bold;
    width: 40%;
}

.spec-table td:last-child {
    color: var(--primary-color);
}

.spec-table code {
    background: rgba(0, 255, 136, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Consolas', monospace;
    font-size: 0.9em;
}

/* ==== 性能基准测试 ==== */
.benchmark-section {
    padding: 5rem 0;
    background: rgba(26, 26, 46, 0.5);
}

.benchmark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benchmark-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.benchmark-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.benchmark-data {
    margin-top: 1.5rem;
}

.data-row {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-row:last-child {
    border-bottom: none;
}

.data-row.winner {
    background: rgba(0, 255, 136, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

.progress-bar {
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--gradient-2);
    border-radius: 10px;
    transition: width 1s ease-out;
}

.benchmark-stats {
    margin-top: 1rem;
}

.stat-item {
    margin-bottom: 1.5rem;
}

.stat-label {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat-bar {
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.stat-fill {
    height: 100%;
    border-radius: 12px;
    transition: width 1s ease-out;
    position: relative;
    overflow: hidden;
}

.stat-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.stat-value {
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 0.3rem;
}

.benchmark-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--primary-color);
    border-radius: 5px;
}

/* CPU使用率圆环 */
.cpu-usage {
    text-align: center;
}

.cpu-meter {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
}

.cpu-circle {
    transform: rotate(-90deg);
}

.cpu-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 延迟测试 */
.latency-test {
    margin: 2rem 0;
}

.latency-bar {
    position: relative;
    height: 60px;
    background: linear-gradient(to right, 
        rgba(0, 255, 0, 0.3) 0%, 
        rgba(255, 255, 0, 0.3) 50%, 
        rgba(255, 0, 0, 0.3) 100%);
    border-radius: 30px;
    margin-bottom: 1rem;
}

.latency-marker {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
}

.marker-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 20px currentColor;
}

.marker-dot.green { background: #00ff00; }
.marker-dot.yellow { background: #ffff00; }
.marker-dot.orange { background: #ff8800; }
.marker-dot.red { background: #ff0000; }

.marker-label {
    text-align: center;
    color: var(--text-color);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-weight: bold;
}

.latency-scale {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* 稳定性测试 */
.stability-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stability-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.stability-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stability-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stability-value {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* 跑分展示 */
.benchmark-scores {
    margin-top: 4rem;
}

.benchmark-scores h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.score-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(0, 255, 136, 0.3);
    transition: var(--transition);
}

.score-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.5);
}

.score-title {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.score-value {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.score-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* 全局样式 */
:root {
    --primary-color: #00ff88;
    --secondary-color: #0088ff;
    --accent-color: #ff0088;
    --dark-bg: #0a0a0f;
    --card-bg: #1a1a2e;
    --text-color: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-1: linear-gradient(135deg, #00ff88 0%, #0088ff 100%);
    --gradient-2: linear-gradient(135deg, #ff0088 0%, #00ff88 100%);
    --shadow-1: 0 10px 40px rgba(0, 255, 136, 0.3);
    --shadow-2: 0 5px 20px rgba(0, 136, 255, 0.2);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 粒子背景 */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1a1a2e 0%, #0a0a0f 100%);
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s;
}

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

/* 英雄区域 */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.glitch {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 136, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 136, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 136, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 136, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 136, 0.75),
                    0.05em 0.025em 0 rgba(0, 255, 136, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 136, 0.75),
                    0.05em 0.025em 0 rgba(0, 255, 136, 0.75);
    }
    50% {
        text-shadow: 0.05em 0.025em 0 rgba(255, 0, 136, 0.75),
                    0.05em 0 0 rgba(0, 255, 136, 0.75);
    }
    99% {
        text-shadow: 0.05em 0.025em 0 rgba(255, 0, 136, 0.75),
                    0.05em 0 0 rgba(0, 255, 136, 0.75);
    }
}

.hero-subtitle {
    font-size: 2rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.hero-tagline {
    font-size: 1.8rem;
    margin: 2rem 0;
}

.highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 2rem 0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--dark-bg);
    box-shadow: var(--shadow-1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.5);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* 特性区域 */
.features {
    padding: 5rem 0;
    background: rgba(26, 26, 46, 0.5);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-1);
    color: var(--dark-bg);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 1rem;
}

.feature-badge.glow {
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
    }
}

/* 对比表格 */
.compare {
    padding: 5rem 0;
}

.comparison-table {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: rgba(0, 255, 136, 0.1);
    font-weight: bold;
}

.comparison-cell {
    padding: 1.5rem;
    text-align: center;
}

.highlight-col {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    font-weight: bold;
}

/* 使用场景 */
.use-cases {
    padding: 5rem 0;
    background: rgba(26, 26, 46, 0.5);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s;
}

.use-case:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-2);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.use-case h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.use-case p {
    color: var(--text-secondary);
}

/* 下载区域 */
.download {
    padding: 5rem 0;
}

.download-box {
    background: var(--card-bg);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-1);
}

.download-box h2 {
    font-size: 2.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.download-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.download-buttons {
    margin: 2rem 0;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--gradient-1);
    color: var(--dark-bg);
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: var(--shadow-1);
}

.btn-download:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.6);
}

.btn-icon {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.info-item {
    color: var(--text-secondary);
}

.info-item strong {
    color: var(--primary-color);
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* 社区区域 */
.community {
    padding: 5rem 0;
    background: rgba(26, 26, 46, 0.5);
}

.community-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.community-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s;
}

.community-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-1);
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.community-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.community-card p {
    color: var(--text-secondary);
}

/* 页脚 */
.footer {
    background: rgba(10, 10, 15, 0.95);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-slogan {
    color: var(--primary-color) !important;
    font-weight: bold;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.footer-note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* 回到顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .glitch {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

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

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .download-info {
        flex-direction: column;
        gap: 1rem;
    }

    .download-box {
        padding: 2rem;
    }
}

/* 额外的炫酷效果 */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

/* 登陆太阳实录区域 */
.sun-journey {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 69, 0, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.sun-journey::before {
    content: '☀️';
    position: absolute;
    top: -100px;
    right: -100px;
    font-size: 400px;
    opacity: 0.05;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.journey-timeline {
    margin-top: 3rem;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    animation: pulse 2s infinite;
}

.timeline-item.highlight .timeline-badge {
    background: var(--gradient-2);
    box-shadow: 0 0 40px rgba(255, 0, 136, 0.6);
    animation: pulse 1s infinite, glow 2s infinite;
}

.timeline-content {
    flex: 1;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-1);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.evidence-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.evidence-image {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.evidence-caption {
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
}

.evidence-caption strong {
    color: var(--primary-color);
}

.fun-fact {
    background: rgba(255, 140, 0, 0.1);
    padding: 1rem;
    border-left: 4px solid #ff8c00;
    border-radius: 5px;
    margin-top: 1rem;
    color: var(--text-secondary);
}

.fun-fact strong {
    color: #ff8c00;
}

.hero-landing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
    align-items: center;
}

.hero-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.landing-description {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
}

.landing-description h4 {
    color: #ff8c00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.landing-details {
    list-style: none;
    margin: 1rem 0;
}

.landing-details li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-details li:last-child {
    border-bottom: none;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-1);
    color: var(--dark-bg);
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
    animation: glow 2s infinite;
}

.badge-icon {
    font-size: 1.5rem;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.video-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.journey-video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.video-caption {
    text-align: center;
    color: var(--primary-color);
    margin-top: 0.5rem;
    font-weight: bold;
}

.warning-box {
    background: rgba(255, 140, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff8c00;
    margin-top: 2rem;
}

.warning-box p {
    color: var(--text-secondary);
    margin: 0;
}

.warning-box strong {
    color: #ff8c00;
}

.journey-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-1);
}

.journey-cta h3 {
    font-size: 2.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.journey-cta > p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-note {
    color: var(--text-secondary);
    margin-top: 2rem;
    font-size: 1.1rem;
}

.cta-note strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-item::before {
        display: none;
    }

    .hero-landing {
        grid-template-columns: 1fr;
    }

    .video-gallery {
        grid-template-columns: 1fr;
    }

    .sun-journey::before {
        font-size: 200px;
    }

    .journey-cta h3 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
