/* Global Styles */
:root {
    --primary-color: #0c7ff2;
    --primary-dark: #0a64c2;
    --background-color: #0A1017;
    --surface-color: #0c141c;
    --border-color: #1c2834;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-primary);
    font-family: "Space Grotesk", "Noto Sans", sans-serif;
    overflow-x: hidden;
    opacity: 1 !important; /* 确保主体可见 */
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0A1017;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0 !important;
    display: none !important;
}

.loading-logo {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-frame {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-sequence {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-svg {
    width: 80%;
    height: 80%;
    opacity: 0;
}

.loading-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background-color: rgba(12, 127, 242, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-bar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary-color);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-tertiary);
    transition: color 0.3s ease;
    cursor: pointer;
}

.lang-btn:hover {
    color: var(--primary-color);
}

.lang-btn.active {
    color: var(--primary-color);
}

/* Wave Animation */
.wave-container {
    position: relative;
    overflow: hidden;
    height: 24px !important;
    background-color: transparent;
}

.waves {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
}

.parallax > use {
    animation: wave 15s cubic-bezier(.55,.5,.45,.5) infinite;
    animation-duration: 15s !important;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes wave {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero h1 {
    position: relative;
    z-index: 5;
    text-shadow: 0 0 15px rgba(12, 127, 242, 0.5);
}

.gradient-text {
    background: linear-gradient(90deg, #0c7ff2, #60a5fa, #0a68c4, #0c7ff2);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: gradientAnimation 8s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header styles */
header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

header .flex.items-center.gap-3.text-white {
    width: 25% !important; /* 减小logo区域宽度到25% */
}

header a.flex.items-center {
    width: 100% !important;
}

header .size-20.sm\:size-24.md\:size-28 {
    width: 100% !important;
    max-width: 480px !important; /* 增大logo最大宽度为原来的2倍 */
    height: auto !important;
    transition: all 0.5s ease;
}

header .size-20.sm\:size-24.md\:size-28 img {
    filter: drop-shadow(0 0 8px rgba(12, 127, 242, 0.5));
    animation: logo-pulse 3s infinite alternate;
}

header nav.hidden.lg\:flex {
    display: flex !important;
    width: 60% !important; /* 增加导航栏宽度 */
    justify-content: space-between !important;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* 新增下拉菜单样式 */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-content {
    position: absolute;
    display: none;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 250px;
    background-color: rgba(15, 23, 32, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color, #1A2C3A);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(12, 127, 242, 0.2);
    padding: 1rem 0;
    z-index: 99;
    margin-top: 20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
    visibility: hidden;
    pointer-events: none;
}

/* 菜单项前的三角形指示器 */
.nav-dropdown-content::before {
    content: '';
    position: absolute;
    top: -12px; /* 调整位置 */
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: rgba(15, 23, 32, 0.95);
    border-left: 1px solid rgba(26, 44, 58, 0.7);
    border-top: 1px solid rgba(26, 44, 58, 0.7);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.1); /* 添加微妙阴影 */
}

/* 在菜单和子菜单之间添加一个不可见的桥梁区域，确保鼠标移动时不会失去悬停状态 */
.nav-dropdown::after {
    content: '';
    position: absolute;
    height: 20px; /* 与margin-top相同 */
    width: 100%;
    left: 0;
    top: 100%;
    background: transparent;
    z-index: 90;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible; /* 悬停时显示 */
    pointer-events: auto; /* 悬停时可点击 */
    transform: translateX(-50%) translateY(0);
    animation: fadeInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 给子菜单增加留存时间，使用户有更多时间点击 */
.nav-dropdown-content {
    transition: opacity 0.4s ease, visibility 0s linear 0.5s; /* 延迟隐藏 */
}

.nav-dropdown:hover .nav-dropdown-content {
    transition: opacity 0.4s ease, visibility 0s linear 0s; /* 立即显示 */
}

/* 当用户移动到子菜单上时，确保子菜单保持可见 */
.nav-dropdown-content:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.4s ease, visibility 0s linear 0s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-15px); /* 增大动画幅度 */
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* 优化子菜单项 */
.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.5rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.dropdown-item .menu-icon {
    margin-right: 12px;
    font-size: 1.2rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    transition: all 0.3s ease;
}

.dropdown-item:hover .menu-icon {
    color: var(--text-primary, #ffffff);
    transform: scale(1.1);
}

.dropdown-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--primary-color, #0c7ff2);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item:hover {
    color: var(--text-primary, #ffffff);
    background-color: rgba(12, 127, 242, 0.15);
    padding-left: 1.8rem;
}

.dropdown-item:hover:before {
    transform: scaleY(1);
}

.dropdown-icon {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* 移动端下拉菜单样式 */
.mobile-submenu {
    padding-left: 1rem;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-submenu.open {
    max-height: 200px;
}

/* 修复移动菜单图标样式 */
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-dropdown-icon {
    transition: transform 0.3s ease-in-out;
}

.mobile-dropdown-toggle.open .mobile-dropdown-icon {
    transform: rotate(180deg);
}

/* Animated SVG */
.animated-svg {
    position: relative;
}

.animated-svg path, .animated-svg circle {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* Cards */
.solution-card, .value-card, .location-card, .ecosystem-card, .strategy-card, .advantage-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(12, 127, 242, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #0A1017;
    z-index: 100;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu.active {
    transform: translateX(0);
    display: block !important;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 移动菜单样式优化 */
.mobile-menu a {
    display: block;
    width: 100%;
    padding: 8px 0;
}

.mobile-dropdown-toggle {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-icon {
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.open .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-submenu {
    padding-left: 1rem;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-submenu.open {
    max-height: 200px;
}

/* 修复全屏动画效果 */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.1;
    pointer-events: none;
}

@keyframes matrixDrop {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

.matrix-column {
    position: absolute;
    top: -100px;
    width: 20px;
    color: #0c7ff2;
    font-family: 'Space Grotesk', monospace;
    font-size: 14px;
    text-align: center;
    opacity: 0.7;
    text-shadow: 0 0 8px #0c7ff2;
}

/* Make sure logo is properly sized and centered */
.size-8 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Language display */
.en, .zh {
    display: block;
}

.hidden {
    display: none;
}

/* Location Markers */
.location-marker {
    position: absolute;
    transform: translate(-50%, -50%);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(12, 127, 242, 0.7);
    }
    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(12, 127, 242, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(12, 127, 242, 0);
    }
}

.location-marker div {
    box-shadow: 0 0 0 0 rgba(12, 127, 242, 1);
    animation: pulse 2s infinite;
}

/* Data Flow Animation */
.data-flow {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.node {
    transform-origin: center;
}

/* Timeline Styles */
.timeline-item:before {
    transition: all 0.3s ease;
}

/* Section Title Animations */
.section-title, .section-description {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-description {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Links */
.footer-link {
    position: relative;
    transition: all 0.3s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Logo Animation */
.logo-sequence {
    position: absolute;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    opacity: 0;
}

/* 修复导航栏上方留白问题 */
.layout-container {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    opacity: 1 !important;
    display: block !important;
}

.relative.flex.size-full.min-h-screen.flex-col {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}

/* 确保没有额外div导致间隔 */
.layout-container > header {
    margin-top: 0 !important;
}

/* 酷炫的Logo动效 */
@keyframes logo-pulse {
    0% {
        filter: drop-shadow(0 0 8px rgba(12, 127, 242, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 16px rgba(12, 127, 242, 0.6));
    }
}

/* 添加logo加载动画 */
.loading-logo img {
    animation: loading-logo-glow 3s infinite alternate;
}

@keyframes loading-logo-glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(12, 127, 242, 0.5));
        transform: scale(0.95);
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(12, 127, 242, 0.9));
        transform: scale(1.05);
    }
}

/* Logo tech effects */
.logo-scan-line {
    animation: scan-line 2s linear infinite;
}

@keyframes scan-line {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

.logo-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: particle-float 3s ease-in-out infinite;
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    25% {
        opacity: 0.8;
    }
    50% {
        transform: translate(var(--x, 20px), var(--y, 20px)) scale(1.5);
        opacity: 0.5;
    }
    75% {
        opacity: 0.8;
    }
}

/* 当导航链接处于激活状态的样式 */
.nav-link.active {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(12, 127, 242, 0.5); /* 添加文字发光效果 */
}

/* 强化数据流效果 */
.data-packet {
    box-shadow: 0 0 10px rgba(12, 127, 242, 0.5);
    animation-duration: 4s !important;
}

/* 移除系统性能监控 */
.performance-monitor {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
}

/* 增强视觉光晕效果 */
.particle-float {
    box-shadow: 0 0 35px rgba(12, 127, 242, 0.8);
    animation: particleGlow 6s ease-in-out infinite alternate;
}

@keyframes particleGlow {
    0%, 100% { box-shadow: 0 0 35px rgba(12, 127, 242, 0.8); }
    50% { box-shadow: 0 0 55px rgba(12, 127, 242, 0.9); }
}

/* 增强背景效果 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(12, 127, 242, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(12, 127, 242, 0.15) 0%, transparent 40%);
    z-index: 1;
    animation: bgPulse 10s ease-in-out infinite alternate;
}

/* 增强量子计算效果 */
.quantum-gate {
    box-shadow: 0 0 15px rgba(12, 127, 242, 0.9);
}

/* 增强神经网络效果 */
.neural-node {
    box-shadow: 0 0 15px rgba(12, 127, 242, 0.9);
}

/* 数字指标增强 */
.text-\[\#0c7ff2\].text-5xl {
    position: relative;
    text-shadow: 0 0 18px rgba(12, 127, 242, 0.8);
}

.text-\[\#0c7ff2\].text-5xl::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0c7ff2, transparent);
    animation: lineWidth 3s ease-in-out infinite;
}

@keyframes lineWidth {
    0%, 100% { width: 50%; left: 25%; }
    50% { width: 70%; left: 15%; }
}

/* 解决加载问题 */
#main-content {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

/* 增强卡片动画效果 */
.solution-card {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.solution-card:hover {
    transform: translateZ(20px) scale(1.05) !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(12, 127, 242, 0.5) !important;
    z-index: 2;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(12, 127, 242, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.solution-card:hover::after {
    opacity: 1;
}

/* 增强图标效果 */
.material-icons-outlined {
    filter: drop-shadow(0 0 5px rgba(12, 127, 242, 0.7));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.solution-card:hover .material-icons-outlined {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(12, 127, 242, 0.9));
}

/* 增强标题闪光效果 */
h1, h2, h3 {
    position: relative;
    z-index: 1;
}

h1::before, h2::before, h3::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: rgba(12, 127, 242, 0.1);
    filter: blur(8px);
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { opacity: 0.3; transform: scale(1.01); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* 增强按钮效果 */
a.flex.justify-center.items-center.bg-\[\#0c7ff2\] {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(12, 127, 242, 0.3);
    box-shadow: 0 0 15px rgba(12, 127, 242, 0.3);
}

a.flex.justify-center.items-center.bg-\[\#0c7ff2\]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(12, 127, 242, 0) 0%,
        rgba(12, 127, 242, 0.1) 40%,
        rgba(12, 127, 242, 0.3) 50%,
        rgba(12, 127, 242, 0.1) 60%,
        rgba(12, 127, 242, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.3s ease;
    z-index: 0;
    animation: btnSweep 3s infinite linear;
}

@keyframes btnSweep {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

a.flex.justify-center.items-center.bg-\[\#0c7ff2\]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(12, 127, 242, 0.5);
}

/* 增强滚动效果 */
::-webkit-scrollbar {
    width: 8px;
    background-color: rgba(10, 16, 23, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, rgba(12, 127, 242, 0.3), rgba(12, 127, 242, 0.7));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, rgba(12, 127, 242, 0.5), rgba(12, 127, 242, 0.9));
}

/* 动态底部边框 */
footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(12, 127, 242, 0.7), 
        transparent);
    animation: borderFlow 8s infinite linear;
}

@keyframes borderFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 数据效果增强 */
.ticker-item {
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 5px rgba(12, 127, 242, 0.5);
}

.ticker-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(12, 127, 242, 0.5);
    animation: tickerLine 2s infinite ease-in-out;
}

@keyframes tickerLine {
    0%, 100% { transform: scaleX(0.3); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 0.8; }
}

/* 更酷炫的加载效果 */
.loading-title {
    letter-spacing: 3px;
    animation: loadingText 2s infinite alternate;
}

@keyframes loadingText {
    0% { letter-spacing: 1px; filter: blur(0px); }
    100% { letter-spacing: 5px; filter: blur(1px); }
}

/* 高级背景效果 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 10%, rgba(12, 127, 242, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 40%, rgba(12, 127, 242, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(12, 127, 242, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 70% 90%, rgba(12, 127, 242, 0.05) 0%, transparent 30%);
    z-index: -1;
    animation: bgPulse 15s infinite alternate ease-in-out;
}

@keyframes bgPulse {
    0% { background-size: 100% 100%; }
    100% { background-size: 120% 120%; }
}

/* 标题内发光效果 */
.gradient-text {
    text-shadow: 
        0 0 5px rgba(12, 127, 242, 0.5),
        0 0 15px rgba(12, 127, 242, 0.3);
    animation: glowText 3s infinite alternate ease-in-out;
}

@keyframes glowText {
    0% { filter: drop-shadow(0 0 5px rgba(12, 127, 242, 0.5)); }
    100% { filter: drop-shadow(0 0 15px rgba(12, 127, 242, 0.8)); }
}

/* 强调卡片边框效果 */
.solution-card {
    border: 1px solid rgba(26, 44, 58, 0.5);
    position: relative;
}

.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    background: linear-gradient(45deg, 
        rgba(12, 127, 242, 0.1), 
        rgba(12, 127, 242, 0.5), 
        rgba(12, 127, 242, 0.1)) 
        border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover::before {
    opacity: 1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { background-position: 0% 0%; }
    100% { background-position: 130% 0%; }
}

/* 增强边框发光效果 */
.solution-card, .value-card, .location-card, .ecosystem-card, .strategy-card, .advantage-card, .stats-highlight {
    position: relative;
    border: 1px solid rgba(12, 127, 242, 0.3);
    overflow: hidden;
}

.solution-card::before, .value-card::before, .location-card::before, .ecosystem-card::before, .strategy-card::before, .advantage-card::before, .stats-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(12, 127, 242, 0.5), transparent 50%, rgba(12, 127, 242, 0.5)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    animation: borderRotate 8s linear infinite;
    pointer-events: none;
}

.solution-card:hover::before, .value-card:hover::before, .location-card:hover::before, .ecosystem-card:hover::before, .strategy-card:hover::before, .advantage-card:hover::before, .stats-highlight:hover::before {
    opacity: 0.7;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 增强统计数据的样式 */
.stats-highlight {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    background: rgba(10, 16, 23, 0.7);
    border: 1px solid rgba(12, 127, 242, 0.3);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 15px rgba(12, 127, 242, 0.15);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.stats-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(12, 127, 242, 0.3);
}

.stats-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #0c7ff2;
    text-shadow: 0 0 15px rgba(12, 127, 242, 0.6);
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: numberPulse 3s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { text-shadow: 0 0 15px rgba(12, 127, 242, 0.6); }
    50% { text-shadow: 0 0 25px rgba(12, 127, 242, 0.8); }
}

.stats-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive design */
@media (max-width: 1024px) {
    .nav-link {
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .language-switcher {
        margin-left: 1rem;
    }
    
    .footer-link {
        font-size: 0.875rem;
    }
} 