/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #f59e0b;
    --dark-bg: #0f172a;
    --card-bg: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* 导航栏语言选择器 */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    min-width: 100px;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-toggle i:first-child {
    font-size: 0.9rem;
    color: #94a3b8;
}

.language-toggle i:last-child {
    font-size: 0.8rem;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.language-toggle.active i:last-child {
    transform: rotate(180deg);
}

#currentLang {
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.language-option:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.language-option:last-child {
    border-bottom: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.language-option:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.language-option.active {
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
}

.language-option .flag {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.language-option span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(99, 102, 241, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 0;
    left: 50%;
    animation-delay: 4s;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-card span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* 通用Section样式 */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* 服务区域 */
.services {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* 算力规格 */
.computing-power {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.computing-power::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.computing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.computing-overview,
.performance-metrics {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.computing-overview::before,
.performance-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.computing-overview h3,
.performance-metrics h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid rgba(99, 102, 241, 0.05);
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateX(5px);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon i {
    font-size: 1.25rem;
    color: white;
}

.spec-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.spec-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metric-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid rgba(99, 102, 241, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-5px);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.metric-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.computing-advantages {
    position: relative;
    z-index: 1;
}

.computing-advantages h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.advantages-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.comparison-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.comparison-item:hover::before {
    transform: scaleX(1);
}

.comparison-item:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-lg);
}

.comparison-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.comparison-icon i {
    font-size: 1.75rem;
    color: white;
}

.comparison-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.comparison-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 动态算力监控 */
.computing-monitor {
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.computing-monitor h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.monitor-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.monitor-panel,
.temperature-panel {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
    overflow: hidden;
    position: relative;
}

.panel-header {
    background: rgba(99, 102, 241, 0.1);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.panel-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.monitor-stats {
    padding: 1.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.05);
    transition: all 0.3s ease;
}

.stat-row:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateX(3px);
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    animation: numberFlicker 3s infinite;
}

.stat-unit {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

@keyframes numberFlicker {
    0%, 90%, 100% { color: var(--primary-color); }
    95% { color: var(--accent-color); }
}

.power-bar {
    padding: 0 1.5rem 1.5rem;
}

.power-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.power-progress {
    position: relative;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 20px;
    height: 20px;
    overflow: hidden;
}

.power-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    transition: width 0.5s ease;
    animation: progressGlow 2s infinite alternate;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 5px rgba(99, 102, 241, 0.5); }
    100% { box-shadow: 0 0 15px rgba(99, 102, 241, 0.8); }
}

.power-percentage {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.temp-grid {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.temp-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.05);
    transition: all 0.3s ease;
}

.temp-item:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: scale(1.02);
}

.temp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.temp-icon.cold {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.temp-icon.normal {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.temp-icon.hot {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.temp-info {
    display: flex;
    flex-direction: column;
}

.temp-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.temp-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Hashcat性能展示 */
.hashcat-performance {
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.hashcat-performance h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.hashcat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.hashcat-overview,
.hashcat-visual {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
    overflow: hidden;
    position: relative;
}

.hashcat-header {
    background: rgba(245, 158, 11, 0.1);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.hashcat-icon {
    width: 24px;
    height: 24px;
}

.hashcat-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hashcat-stats {
    padding: 1.5rem;
}

.hash-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.hash-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.hash-value {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
    animation: hashFlicker 2s infinite;
}

@keyframes hashFlicker {
    0%, 90%, 100% { color: var(--accent-color); }
    95% { color: var(--primary-color); }
}

.hash-unit {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

.hash-algorithms {
    margin-top: 1.5rem;
}

.hash-algorithms h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.algo-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.algo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.2);
    border-radius: 6px;
    border: 1px solid rgba(245, 158, 11, 0.05);
    transition: all 0.3s ease;
}

.algo-item:hover {
    border-color: rgba(245, 158, 11, 0.2);
    transform: translateX(3px);
}

.algo-name {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
}

.algo-speed {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.performance-chart {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.performance-chart h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.chart-container {
    display: flex;
    justify-content: center;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 8px;
    padding: 1rem;
}

.crack-progress {
    padding: 1.5rem;
}

.crack-progress h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.progress-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.05);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.task-name {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.progress-percent {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.progress-bar {
    height: 8px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 4px;
    transition: width 0.5s ease;
    animation: progressPulse 2s infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.progress-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* 算法分类样式 */
.algo-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.algo-category {
    background: rgba(15, 23, 42, 0.2);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.algo-category h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.algo-category h6 i {
    color: var(--accent-color);
    font-size: 1rem;
}

.algo-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.algo-desc {
    color: var(--text-secondary);
    font-size: 0.75rem;
    opacity: 0.8;
}

/* 任务优先级样式 */
.progress-item.high-priority {
    border-left: 4px solid #ef4444;
}

.progress-item.medium-priority {
    border-left: 4px solid #f59e0b;
}

.progress-item.low-priority {
    border-left: 4px solid #10b981;
}

.progress-item.completed {
    border-left: 4px solid #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.task-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.task-meta {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.progress-percent.success {
    color: #10b981;
    font-weight: 700;
}

.progress-fill.completed {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* 破解统计样式 */
.crack-statistics {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.crack-statistics h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1rem;
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* 专业基准测试样式 */
.benchmark-section {
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.benchmark-section h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.report-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    position: relative;
    animation: pulse 2s infinite;
}

.benchmark-overview {
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.overview-item {
    text-align: center;
    padding: 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.overview-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview-label {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.benchmark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.benchmark-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.benchmark-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.benchmark-header {
    background: rgba(99, 102, 241, 0.1);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.benchmark-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.benchmark-header h4 i {
    color: var(--primary-color);
}

.test-status {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 复杂度表格 */
.complexity-table {
    padding: 1.5rem;
}

.table-header, .table-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1fr 1fr 0.8fr;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.05);
}

.table-header {
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(15, 23, 42, 0.3);
    margin: -1.5rem -1.5rem 0;
    padding: 0.75rem 1.5rem;
}

.table-row {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(99, 102, 241, 0.05);
    color: var(--text-primary);
}

.table-row .success {
    color: #10b981;
    font-weight: 600;
}

.table-row .warning {
    color: #f59e0b;
    font-weight: 600;
}

.table-row .critical {
    color: #ef4444;
    font-weight: 600;
}

.table-row .boost {
    color: #10b981;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.table-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-style: italic;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 8px;
    margin-top: 1rem;
}

.table-note i {
    color: var(--primary-color);
}

/* 成功率样式 */
.success-rates {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rate-item {
    background: rgba(15, 23, 42, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.05);
}

.rate-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.wallet-type {
    color: var(--text-primary);
    font-weight: 500;
}

.rate-percentage {
    color: var(--primary-color);
    font-weight: 700;
}

.rate-bar {
    height: 8px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.rate-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.rate-details {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 5px;
}

.detail-row span {
    font-size: 0.75rem;
}

.complexity-breakdown {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.complexity-item {
    background: rgba(99, 102, 241, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--primary-color);
}

.rate-fill.bitcoin {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.rate-fill.ethereum {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.rate-fill.electrum {
    background: linear-gradient(135deg, #10b981, #059669);
}

.rate-fill.metamask {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.rate-fill.trust {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.rate-fill.exodus {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* 性能对比样式 */
.performance-comparison {
    padding: 1.5rem;
}

.comparison-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hardware-name {
    min-width: 120px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.performance-bar {
    flex: 1;
    height: 24px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.perf-fill {
    height: 100%;
    border-radius: 12px;
    transition: width 0.5s ease;
    position: relative;
}

.perf-fill.h100 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.perf-fill.rtx4090 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.perf-fill.rtx3090 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.perf-fill.a100 {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.perf-value {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.comparison-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-style: italic;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 8px;
}

.comparison-note i {
    color: var(--primary-color);
}

/* 案例研究样式 */
.case-studies {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.case-item {
    background: rgba(15, 23, 42, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.05);
    transition: all 0.3s ease;
}

.case-item:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateX(3px);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.case-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.case-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.case-badge.record {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.case-badge.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.case-badge.efficient {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.case-badge.enterprise {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.case-main {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    margin-bottom: 0.75rem !important;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 6px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-value {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 700;
}

.case-item.record-holder {
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.05);
}

.case-item.complex-case {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.case-item.batch-processing {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
}

.case-item.enterprise-case {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.05);
}

.case-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.case-detail {
    color: var(--primary-color) !important;
    font-weight: 500 !important;
}

/* 算法性能基准测试样式 */
.algorithm-benchmark {
    padding: 1.5rem;
}

.algo-category {
    margin-bottom: 2rem;
}

.algo-category h5 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.algo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.algo-test-item {
    background: rgba(15, 23, 42, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.05);
    transition: all 0.3s ease;
}

.algo-test-item:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.algo-test-item .algo-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.algo-performance {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.perf-number {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.perf-bar {
    height: 6px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 3px;
    overflow: hidden;
}

.perf-bar .perf-fill {
    height: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.perf-detail {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* 成本效益分析样式 */
.cost-efficiency {
    padding: 1.5rem;
}

.efficiency-comparison {
    margin-bottom: 2rem;
}

.comparison-header h5 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.comparison-row.header {
    background: rgba(99, 102, 241, 0.2);
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.comparison-row.our-solution {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--text-primary);
}

.comparison-row.competitor {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--text-secondary);
}

.solution-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.solution-name i {
    color: #fbbf24;
}

.total-cost {
    color: var(--accent-color);
    font-weight: 700;
}

.success-rate {
    color: #10b981;
    font-weight: 600;
}

.roi-analysis {
    margin-top: 2rem;
}

.roi-header h5 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.roi-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.roi-item {
    background: rgba(15, 23, 42, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.roi-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.roi-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.roi-icon i {
    color: white;
    font-size: 1.2rem;
}

.roi-content {
    flex: 1;
}

.roi-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.roi-value {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.roi-desc {
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.3;
}

/* 硬件性能深度对比样式 */
.hardware-comparison-card {
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.3);
    overflow-x: hidden; /* 防止水平溢出 */
    max-width: 100%; /* 确保不超出父容器 */
}

/* 强制显示类 - 修复显示问题 */
.force-display {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 1 !important;
}

/* 确保硬件对比卡片显示 */
.benchmark-card.hardware-comparison-card {
    display: block !important;
    min-height: 200px !important;
}

.hardware-comparison-card * {
    display: initial !important;
    visibility: visible !important;
}

/* 简化硬件规格对比样式 */
.hardware-specs-simple {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.hardware-specs-simple h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.specs-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.spec-card {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.spec-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.spec-card.our-card {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.card-header i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.card-header h6 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.card-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

.spec-value {
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 600;
}

.spec-value.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

/* 性能优势简化展示样式 */
.performance-highlights {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.performance-highlights h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.highlight-item {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.highlight-icon i {
    color: white;
    font-size: 1.5rem;
}

.highlight-content h6 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-value {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight-desc {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
}

/* 核心技术优势简化样式 */
.tech-advantages-simple {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.tech-advantages-simple h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tech-simple-item {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tech-simple-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.tech-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

.tech-value {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* 应用场景成果样式 */
.scenario-results {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.scenario-results h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.result-item {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
}

.result-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.result-value {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.result-improvement {
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 600;
}

.hardware-specs-comparison h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.specs-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 8px;
    overflow: hidden;
    overflow-x: auto; /* 添加横向滚动 */
    min-width: 0; /* 确保能够收缩 */
}

.specs-header, .specs-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 0.8fr 1fr;
    gap: 0.75rem;
    padding: 0.9rem 0.8rem;
    font-size: 0.75rem; /* 减小字体 */
    line-height: 1.2; /* 调整行高 */
    min-width: 700px; /* 设置最小宽度，超出时滚动 */
    white-space: nowrap; /* 防止文字换行 */
    align-items: center; /* 垂直居中 */
}

.specs-header {
    background: rgba(99, 102, 241, 0.2);
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.specs-row.our-hardware {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--text-primary);
}

.specs-row.competitor {
    background: rgba(15, 23, 42, 0.3);
    color: var(--text-secondary);
}

.hw-name {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.75rem; /* 与父元素字体大小一致 */
}

.hw-name i {
    color: #fbbf24;
    font-size: 0.7rem; /* 图标稍小 */
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.75rem; /* 高亮文字大小 */
}

/* 多算法性能对比样式 */
.multi-algorithm-comparison {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.multi-algorithm-comparison h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.algo-chart-section h6 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.algo-performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.algo-perf-item {
    background: rgba(15, 23, 42, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.algo-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 6px;
}

.perf-comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.perf-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hw-label {
    min-width: 80px;
    font-size: 0.75rem; /* 与specs表格字体大小一致 */
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.2;
}

.perf-bar-container {
    flex: 1;
    height: 24px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.perf-bar-fill {
    height: 100%;
    border-radius: 12px;
    transition: width 0.5s ease;
    position: relative;
}

.perf-bar-fill.h100 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.perf-bar-fill.rtx4090 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.perf-bar-fill.a100 {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.perf-bar-fill.rtx3090 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.perf-bar-container .perf-value {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 0.7rem; /* 稍微减小字体 */
    font-weight: 600;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 架构优势分析样式 */
.architecture-advantages {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.architecture-advantages h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.arch-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
}

.arch-feature {
    background: rgba(15, 23, 42, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.arch-feature:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.arch-feature h6 {
    color: var(--text-primary);
    font-size: 0.8rem; /* 减小字体 */
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.feature-icon i {
    color: white;
    font-size: 0.9rem;
}

.feature-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.our-advantage {
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.our-advantage .label {
    color: var(--text-primary);
    font-weight: 600;
}

.our-advantage .value {
    color: var(--accent-color);
    font-weight: 700;
    margin: 0 0.5rem;
}

.our-advantage .benefit {
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 500;
}

.competitor-data {
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 4px;
}

/* 实际应用场景对比样式 */
.application-scenarios {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.application-scenarios h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.scenario-item {
    background: rgba(15, 23, 42, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.scenario-item h6 {
    color: var(--text-primary);
    font-size: 0.8rem; /* 减小字体 */
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    text-align: center;
    padding: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 6px;
}

.scenario-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 4px;
    font-size: 0.75rem; /* 减小字体 */
    line-height: 1.2;
}

.metric-row.best {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--text-primary);
}

.metric-row .hw-name {
    font-weight: 600;
}

.metric-row .metric-value {
    color: var(--accent-color);
    font-weight: 600;
}

.metric-row .efficiency {
    color: #10b981;
    font-weight: 600;
}

/* 成本效益总结样式 */
.cost-efficiency-summary {
    padding: 1.5rem;
}

.cost-efficiency-summary h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.efficiency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.efficiency-metric {
    background: rgba(15, 23, 42, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.efficiency-metric:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.efficiency-metric .metric-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.efficiency-metric .metric-icon i {
    color: white;
    font-size: 1.2rem;
}

.efficiency-metric .metric-content {
    flex: 1;
}

.efficiency-metric .metric-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.8rem; /* 减小字体 */
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.efficiency-metric .metric-value {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.efficiency-metric .metric-desc {
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.3;
}

/* 技术优势 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.advantage-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 关于我们 */
.about {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.about-stat .stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tech-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tech-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.tech-item span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* 联系我们 */
.contact {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--border-radius);
    background: rgba(15, 23, 42, 0.5);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

/* 页脚 */
.footer {
    background: var(--dark-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-section h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--text-secondary);
}

/* 技术优势 */
.advantages {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0z'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--text-secondary);
}

/* 商业模式整体样式 */
.business {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.business::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0 5.5-4.5 10-10 10s-10-4.5-10-10 4.5-10 10-10 10 4.5 10 10zm10 0c0 5.5-4.5 10-10 10s-10-4.5-10-10 4.5-10 10-10 10 4.5 10 10z'/%3E%3C/g%3E%3C/svg%3E");
}

/* 商业模式和分润结构样式 */
.business-model {
    position: relative;
    z-index: 2;
}

/* 成功恢复收费样式 */
.pricing-section {
    margin-bottom: 4rem;
}

.pricing-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-tier {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.pricing-tier.basic::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.pricing-tier.premium::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.pricing-tier.gold::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.pricing-tier:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.tier-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.pricing-tier.basic .tier-price {
    color: #10b981;
}

.pricing-tier.premium .tier-price {
    color: #3b82f6;
}

.pricing-tier.gold .tier-price {
    color: #f59e0b;
}

.tier-features {
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #e2e8f0;
}

.feature-item i {
    color: #10b981;
    font-size: 0.9rem;
    width: 16px;
}

.pricing-notes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.note-item i {
    color: #6366f1;
}

/* KOL推荐分润样式 */
.commission-section {
    margin-bottom: 4rem;
}

.commission-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.commission-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.commission-level {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 200px;
}

.commission-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.level-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.commission-level h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.level-rate {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.commission-level p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.commission-arrow {
    font-size: 1.5rem;
    color: #6366f1;
    display: flex;
    align-items: center;
}

.commission-notes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* 客户实际到手样式 */
.customer-section {
    margin-bottom: 4rem;
}

.customer-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.customer-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.customer-tier {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.customer-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 16px 16px 0 0;
}

.customer-tier.premium::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.customer-tier.gold::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.customer-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.customer-tier h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.tier-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 1rem;
}

.customer-tier.premium .tier-percentage {
    color: #3b82f6;
}

.customer-tier.gold .tier-percentage {
    color: #f59e0b;
}

.customer-tier p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.4;
}

.customer-notes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* 合作流程样式 */
.process-section {
    margin-bottom: 4rem;
}

.process-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* 分润计算示例样式 */
.example-section {
    margin-bottom: 2rem;
}

.example-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.example-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 1000px;
    margin: 0 auto;
}

.example-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.example-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.example-header p {
    color: #94a3b8;
    font-size: 1rem;
}

.example-breakdown {
    margin-bottom: 2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #6366f1;
}

.breakdown-item.positive {
    border-left-color: #10b981;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    border: 2px solid rgba(16, 185, 129, 0.4);
    font-weight: 600;
    font-size: 1.1rem;
}

.item-label {
    color: #e2e8f0;
}

.item-value {
    font-weight: 700;
    color: white;
}

.breakdown-total .item-value {
    color: #10b981;
    font-size: 1.3rem;
}

.example-distribution {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.distribution-item {
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 4px solid #6366f1;
}

.distribution-item:last-child {
    margin-bottom: 0;
}

.distribution-item span {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.4;
}



/* 成功案例展示样式 */
.success-cases {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.success-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M30 30c0 8.28-6.72 15-15 15s-15-6.72-15-15 6.72-15 15-15 15 6.72 15 15zm15 0c0 8.28-6.72 15-15 15s-15-6.72-15-15 6.72-15 15-15 15 6.72 15 15z'/%3E%3C/g%3E%3C/svg%3E");
}

.success-cases .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.success-cases .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-cases .section-header p {
    font-size: 1.2rem;
    color: #94a3b8;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.case-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.case-card.featured::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.case-card.highlight::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.case-icon.bitcoin {
    background: linear-gradient(135deg, #f7931a, #ff8c00);
    color: white;
}

.case-icon.ethereum {
    background: linear-gradient(135deg, #627eea, #8b5cf6);
    color: white;
}

.case-icon.enterprise {
    background: linear-gradient(135deg, #374151, #6b7280);
    color: white;
}

.case-icon.complex {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
}

.case-icon.speed {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.case-icon.global {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.case-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.case-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-badge.record {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.case-badge.fast {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.case-badge.enterprise {
    background: rgba(107, 114, 128, 0.2);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.case-badge.technical {
    background: rgba(220, 38, 38, 0.2);
    color: #ef4444;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.case-badge.speed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.case-badge.global {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.case-value {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.value-label {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.value-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.25rem;
}

.value-usd {
    font-size: 1rem;
    color: #fbbf24;
    font-weight: 500;
}

.case-specs {
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.spec-value {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.case-feedback {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #6366f1;
}

.case-feedback p {
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.feedback-author {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.case-stats .stat-item {
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-stats .stat-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.25rem;
}

.case-stats .stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.success-statistics {
    position: relative;
    z-index: 2;
    text-align: center;
}

.success-statistics h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.overview-stat {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.stat-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    position: relative;
}

.circle-progress {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#10b981 0% 96.8%, rgba(255, 255, 255, 0.1) 96.8% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-progress::before {
    content: '';
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.9);
    position: absolute;
}

.percent-text {
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
    position: relative;
    z-index: 1;
}

.stat-number-big {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.overview-stat .stat-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.overview-stat .stat-info p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--card-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    /* 移动端语言选择器样式 */
    .nav-actions {
        order: -1;
        margin-right: 1rem;
    }
    
    .language-toggle {
        min-width: 80px;
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .language-toggle i:first-child {
        font-size: 0.8rem;
    }
    
    .language-toggle i:last-child {
        font-size: 0.7rem;
    }
    
    #currentLang {
        font-size: 0.85rem;
    }
    
    .language-dropdown {
        min-width: 140px;
        right: 0;
        left: auto;
    }
    
    .language-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .language-option .flag {
        font-size: 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        justify-content: center;
    }

    .computing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .advantages-comparison {
        grid-template-columns: 1fr;
    }

    .monitor-grid {
        grid-template-columns: 1fr;
    }

    .hashcat-grid {
        grid-template-columns: 1fr;
    }

    .temp-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .temp-item {
        flex: 1;
        min-width: 120px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .algo-categories {
        gap: 1rem;
    }

    .algo-category {
        padding: 0.75rem;
    }

    .progress-details {
        flex-direction: column;
        gap: 0.25rem;
        font-size: 0.7rem;
    }

    .task-info {
        gap: 0.125rem;
    }

    .stat-box {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .stat-icon {
        width: 35px;
        height: 35px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .benchmark-grid {
        grid-template-columns: 1fr;
    }

    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .overview-number {
        font-size: 2rem;
    }

    .table-header, .table-row {
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 0.7rem;
        gap: 0.3rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
        padding: 0.5rem;
    }

    .comparison-row.header {
        background: rgba(99, 102, 241, 0.3);
        font-weight: 700;
    }

    .roi-metrics {
        grid-template-columns: 1fr;
    }

    .algo-grid {
        grid-template-columns: 1fr;
    }

    .case-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .detail-row {
        flex-direction: column;
        gap: 5px;
    }

    .complexity-breakdown {
        gap: 5px;
    }

    .complexity-item {
        font-size: 0.65rem;
    }

    /* 新的简化组件移动端响应式 */
    .specs-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .spec-card {
        padding: 0.75rem;
    }
    
    .card-header h6 {
        font-size: 0.8rem;
    }
    
    .spec-label, .spec-value {
        font-size: 0.75rem;
    }
    
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .highlight-content h6 {
        font-size: 0.8rem;
    }
    
    .highlight-value {
        font-size: 1rem;
    }
    
    .highlight-desc {
        font-size: 0.7rem;
    }
    
    .tech-simple-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .tech-simple-item {
        padding: 0.75rem;
    }
    
    .tech-label, .tech-value {
        font-size: 0.75rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .result-item {
        padding: 1rem;
    }
    
    .result-label {
        font-size: 0.75rem;
    }
    
    .result-value {
        font-size: 1.1rem;
    }
    
    .result-improvement {
        font-size: 0.7rem;
    }
    
    .specs-header, .specs-row {
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 0.65rem; /* 移动端进一步减小字体 */
        line-height: 1.1; /* 紧凑行高 */
        gap: 0.4rem;
        min-width: 500px; /* 移动端减少最小宽度 */
        padding: 0.6rem 0.4rem; /* 调整内边距 */
    }
    
    /* 为移动端添加滚动提示 */
    .hardware-specs-comparison::after {
        content: "← 左右滑动查看更多数据 →";
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.7rem;
        color: var(--text-secondary);
        opacity: 0.7;
        white-space: nowrap;
    }

    .algo-performance-grid {
        grid-template-columns: 1fr;
    }

    .arch-comparison-grid {
        grid-template-columns: 1fr;
    }

    .scenario-grid {
        grid-template-columns: 1fr;
    }

    .efficiency-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .perf-bar-item {
        flex-direction: column;
        gap: 0.25rem;
        align-items: flex-start;
    }

    .hw-label {
        min-width: auto;
        font-size: 0.7rem; /* 移动端减小字体 */
    }

    .metric-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.25rem;
    }

    .chart-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .hardware-name {
        min-width: auto;
        text-align: center;
    }

    .performance-bar {
        height: 20px;
    }

    .case-studies {
        padding: 1rem;
    }

    .case-item {
        padding: 0.75rem;
    }

    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-card {
        position: static;
        margin: 1rem;
    }

    .hero-visual {
        flex-direction: column;
        margin-top: 2rem;
    }

    .overview-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .overview-number {
        font-size: 1.8rem;
    }

    .table-header, .table-row {
        grid-template-columns: 1fr 1fr;
        font-size: 0.65rem;
        gap: 0.25rem;
    }

    .case-stats {
        grid-template-columns: 1fr;
    }

    .roi-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .comparison-row {
        font-size: 0.75rem;
    }

    /* 新的简化组件超小屏幕响应式 */
    .specs-cards {
        gap: 0.5rem;
    }
    
    .spec-card {
        padding: 0.5rem;
    }
    
    .card-header h6 {
        font-size: 0.75rem;
    }
    
    .spec-label, .spec-value {
        font-size: 0.7rem;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .highlight-item {
        padding: 0.75rem;
    }
    
    .highlight-content h6 {
        font-size: 0.75rem;
    }
    
    .highlight-value {
        font-size: 0.9rem;
    }
    
    .tech-simple-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .tech-simple-item {
        padding: 0.5rem;
    }
    
    .tech-label, .tech-value {
        font-size: 0.7rem;
    }
    
    .result-item {
        padding: 0.75rem;
    }
    
    .result-value {
        font-size: 1rem;
    }

    .efficiency-grid {
        grid-template-columns: 1fr;
    }

    .efficiency-metric {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .perf-bar-container {
        height: 20px;
    }

    .arch-feature h6 {
        font-size: 0.75rem; /* 超小屏幕进一步减小 */
    }

    .scenario-item h6 {
        font-size: 0.75rem; /* 超小屏幕进一步减小 */
    }
}

/* 硬件性能深度对比分析 - 新设计样式 */
/* 硬件规格对比 - 参考spec-item设计 */
.hardware-comparison-new {
    margin-bottom: 30px;
}

.hardware-comparison-new h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
}

.comparison-item.our-gpu {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

.comparison-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: white;
}

.comparison-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.comparison-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.comparison-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comparison-stats .stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #6366f1;
}

.comparison-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* 性能优势 - 参考metric-card设计 */
.performance-metrics-new {
    margin-bottom: 30px;
}

.performance-metrics-new h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.performance-metrics-new .metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.performance-metrics-new .metric-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performance-metrics-new .metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.performance-metrics-new .metric-value {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.performance-metrics-new .metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.performance-metrics-new .metric-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* 技术优势 - 参考service-card设计 */
.tech-advantages-new {
    margin-bottom: 30px;
}

.tech-advantages-new h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.tech-advantages-new .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.tech-advantages-new .advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-advantages-new .advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.tech-advantages-new .advantage-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: white;
}

.tech-advantages-new .advantage-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 600;
}

.tech-advantages-new .advantage-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* 部分已知密码破解分析 - 独立section样式 */
.partial-known-analysis {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-top: 2px solid rgba(99, 102, 241, 0.3);
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.partial-known-analysis::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(99,102,241,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.partial-known-analysis .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.partial-known-analysis .section-header h2 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.partial-known-analysis .section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* 主要内容区域 */
.analysis-main-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* 性能对比表格 */
.analysis-performance-table {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.3);
    margin-bottom: 1.5rem;
}

.analysis-performance-table .table-header,
.analysis-performance-table .table-row {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.3fr 1fr 1fr 0.8fr;
    gap: 1rem;
    padding: 1.2rem 1rem;
    font-size: 0.9rem;
    align-items: center;
    text-align: center;
    line-height: 1.4;
}

.analysis-performance-table .table-header {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 1.5rem 1rem;
    line-height: 1.5;
}

.analysis-performance-table .table-row {
    background: rgba(15, 23, 42, 0.6);
    color: var(--text-primary);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.analysis-performance-table .table-row:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: scale(1.02);
}

.analysis-performance-table .table-row:last-child {
    border-bottom: none;
}

.analysis-note {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
}

.analysis-note i {
    color: #fbbf24;
    margin-right: 0.5rem;
}

/* 场景和策略section */
.known-scenarios-section,
.optimization-strategies-section {
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.known-scenarios-section h3,
.optimization-strategies-section h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.known-scenarios {
    margin: 20px 0;
}

.known-scenarios h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.scenario-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.scenario-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: white;
}

.scenario-card h4,
.scenario-card h6 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.scenario-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.scenario-example {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 6px;
    padding: 8px 12px;
    font-family: 'Courier New', monospace;
}

.known-part {
    color: #10b981;
    font-weight: bold;
}

.unknown-part {
    color: #f59e0b;
    font-weight: bold;
}

.pattern-part {
    color: #8b5cf6;
    font-weight: bold;
    font-size: 0.8rem;
}

.length-part {
    color: #06b6d4;
    font-weight: bold;
}

.combo-part {
    color: #ec4899;
    font-weight: bold;
}

.time-saved {
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
}

/* 优化策略样式 */
.optimization-strategies {
    margin: 20px 0;
}

.optimization-strategies h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.optimization-strategies-section .strategies-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.strategies-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.strategy-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.strategy-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.strategy-content {
    flex: 1;
}

.strategy-content h4,
.strategy-content h6 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.strategy-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.efficiency {
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* 新设计组件响应式优化 */
@media (max-width: 768px) {
    .comparison-grid,
    .performance-metrics-new .metrics-grid,
    .tech-advantages-new .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .comparison-icon,
    .tech-advantages-new .advantage-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .performance-metrics-new .metric-value {
        font-size: 1.6rem;
    }
    
    .scenarios-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .strategy-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    /* 独立section响应式 */
    .partial-known-analysis .section-header h2 {
        font-size: 2rem;
    }
    
    .analysis-performance-table .table-header,
    .analysis-performance-table .table-row {
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 0.75rem;
        gap: 0.5rem;
        padding: 0.8rem 0.5rem;
    }
    
    .optimization-strategies-section .strategies-list {
        grid-template-columns: 1fr;
    }
    
    .known-scenarios-section h3,
    .optimization-strategies-section h3 {
        font-size: 1.5rem;
    }

    /* 商业模式响应式 */
    .business-model {
        padding: 4rem 0;
    }

    .business-model .section-title {
        font-size: 2rem;
    }

    .business-model .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .business-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .business-card {
        padding: 1.5rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .business-card h3 {
        font-size: 1.3rem;
    }

    .fee-item {
        padding: 0.6rem 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .fee-value {
        font-size: 1.1rem;
    }

    .cooperation-process h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        max-width: 300px;
    }

    .process-step {
        width: 100%;
        min-width: auto;
        padding: 1.5rem 1rem;
    }

    .process-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    /* 分润计算示例响应式 */
    .profit-example h3 {
        font-size: 1.6rem;
    }

    .example-card {
        padding: 1.5rem;
    }

    .calculation-flow {
        flex-direction: column;
        align-items: center;
    }

    .calc-step {
        width: 100%;
        min-width: auto;
        padding: 1rem;
    }

    .calc-arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
        margin: 0.5rem 0;
    }

    .other-distribution {
        padding: 1rem;
    }

    .distribution-item {
        padding: 0.6rem;
    }

    .distribution-item span {
        font-size: 0.85rem;
    }

    /* 成功案例响应式 */
    .success-cases {
        padding: 4rem 0;
    }

    .success-cases .section-header h2 {
        font-size: 2rem;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .case-card {
        padding: 1.5rem;
    }

    .case-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .case-title h3 {
        font-size: 1.2rem;
    }

    .case-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .value-amount {
        font-size: 1.3rem;
    }

    .case-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .case-stats .stat-item {
        padding: 0.5rem;
    }

    .case-stats .stat-number {
        font-size: 1rem;
    }

    .case-stats .stat-label {
        font-size: 0.75rem;
    }

    .success-statistics h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .stats-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .overview-stat {
        padding: 1.5rem;
    }

    .stat-circle {
        width: 60px;
        height: 60px;
    }

    .circle-progress {
        width: 60px;
        height: 60px;
    }

    .circle-progress::before {
        width: 45px;
        height: 45px;
    }

    .percent-text {
        font-size: 0.9rem;
    }

    .stat-number-big {
        font-size: 1.8rem;
    }

    .overview-stat .stat-info h4 {
        font-size: 1rem;
    }

    .overview-stat .stat-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .comparison-grid,
    .performance-metrics-new .metrics-grid,
    .tech-advantages-new .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-icon,
    .tech-advantages-new .advantage-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .performance-metrics-new .metric-value {
        font-size: 1.4rem;
    }
    
    .comparison-stats .stat-value {
        font-size: 1.1rem;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .scenario-card {
        padding: 16px;
    }
    
    .strategy-item {
        padding: 12px;
    }
    
    .strategy-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* 独立section超小屏幕响应式 */
    .partial-known-analysis .section-header h2 {
        font-size: 1.8rem;
    }
    
    .partial-known-analysis .section-header p {
        font-size: 1rem;
    }
    
    .analysis-main-content {
        padding: 1.5rem;
    }
    
    .analysis-performance-table .table-header,
    .analysis-performance-table .table-row {
        grid-template-columns: 1fr 1fr;
        font-size: 0.7rem;
        gap: 0.25rem;
        padding: 0.6rem 0.3rem;
    }
    
    .known-scenarios-section h3,
    .optimization-strategies-section h3 {
        font-size: 1.3rem;
    }

    /* 商业模式超小屏幕响应式 */
    .business-model {
        padding: 3rem 0;
    }

    .business-model .section-title {
        font-size: 1.8rem;
    }

    .business-model .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .business-card {
        padding: 1.2rem;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .business-card h3 {
        font-size: 1.2rem;
    }

    .fee-item {
        padding: 0.5rem 0.6rem;
        font-size: 0.9rem;
    }

    .fee-value {
        font-size: 1rem;
    }

    .business-note {
        padding: 0.8rem;
    }

    .business-note p {
        font-size: 0.8rem;
    }

    .cooperation-process h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .process-step {
        padding: 1.2rem 0.8rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.8rem;
    }

    .process-arrow {
        font-size: 1.2rem;
        margin: 0.3rem 0;
    }

    /* 分润计算示例超小屏幕响应式 */
    .profit-example h3 {
        font-size: 1.4rem;
    }

    .example-card {
        padding: 1.2rem;
    }

    .example-scenario h4 {
        font-size: 1.3rem;
    }

    .example-scenario p {
        font-size: 0.9rem;
    }

    .calc-step {
        padding: 0.8rem;
    }

    .step-label {
        font-size: 0.8rem;
    }

    .step-value {
        font-size: 1.1rem;
    }

    .step-value.highlight {
        font-size: 1.2rem;
    }

    .other-distribution {
        padding: 0.8rem;
    }

    .distribution-item {
        padding: 0.5rem;
    }

    .distribution-item span {
        font-size: 0.8rem;
    }

    /* 成功案例超小屏幕响应式 */
    .success-cases {
        padding: 3rem 0;
    }

    .success-cases .section-header h2 {
        font-size: 1.8rem;
    }

    .success-cases .section-header p {
        font-size: 1rem;
    }

    .case-card {
        padding: 1.2rem;
    }

    .case-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .case-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .case-title h3 {
        font-size: 1.1rem;
    }

    .case-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }

    .case-value {
        padding: 0.8rem;
    }

    .value-amount {
        font-size: 1.2rem;
    }

    .value-usd {
        font-size: 0.9rem;
    }

    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        padding: 0.5rem 0;
    }

    .spec-label, .spec-value {
        font-size: 0.85rem;
    }

    .case-feedback {
        padding: 1rem;
    }

    .case-feedback p {
        font-size: 0.9rem;
    }

    .feedback-author {
        font-size: 0.8rem;
    }

    .case-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .case-stats .stat-item {
        padding: 0.8rem 0.5rem;
    }

    .case-stats .stat-number {
        font-size: 0.95rem;
    }

    .case-stats .stat-label {
        font-size: 0.7rem;
    }

    .success-statistics h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .stats-overview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .overview-stat {
        padding: 1.2rem;
    }

    .stat-circle {
        width: 50px;
        height: 50px;
    }

    .circle-progress {
        width: 50px;
        height: 50px;
    }

    .circle-progress::before {
        width: 38px;
        height: 38px;
    }

    .percent-text {
        font-size: 0.8rem;
    }

    .stat-number-big {
        font-size: 1.6rem;
    }

    .overview-stat .stat-info h4 {
        font-size: 0.95rem;
    }

    .overview-stat .stat-info p {
        font-size: 0.8rem;
    }
} 