/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0c1426 0%, #1a2332 50%, #0f1419 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* 粒子效果 */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s infinite linear;
    opacity: 0.6;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 15s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 10s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; animation-duration: 18s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 16s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; animation-duration: 11s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; animation-duration: 13s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; animation-duration: 17s; }
.particle:nth-child(10) { left: 15%; animation-delay: 9s; animation-duration: 12s; }
.particle:nth-child(11) { left: 25%; animation-delay: 10s; animation-duration: 15s; }
.particle:nth-child(12) { left: 35%; animation-delay: 11s; animation-duration: 10s; }
.particle:nth-child(13) { left: 45%; animation-delay: 12s; animation-duration: 18s; }
.particle:nth-child(14) { left: 55%; animation-delay: 13s; animation-duration: 14s; }
.particle:nth-child(15) { left: 65%; animation-delay: 14s; animation-duration: 16s; }
.particle:nth-child(16) { left: 75%; animation-delay: 15s; animation-duration: 11s; }
.particle:nth-child(17) { left: 85%; animation-delay: 16s; animation-duration: 13s; }
.particle:nth-child(18) { left: 95%; animation-delay: 17s; animation-duration: 17s; }
.particle:nth-child(19) { left: 5%; animation-delay: 18s; animation-duration: 12s; }
.particle:nth-child(20) { left: 45%; animation-delay: 19s; animation-duration: 15s; }

/* 科技光效 */
.tech-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.tech-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: techLineMove 20s infinite linear;
    opacity: 0.3;
}

.tech-line-1 {
    top: 20%;
    width: 200px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.tech-line-2 {
    top: 60%;
    width: 150px;
    animation-delay: 5s;
    animation-duration: 30s;
}

.tech-line-3 {
    top: 80%;
    width: 180px;
    animation-delay: 10s;
    animation-duration: 22s;
}

.tech-circle {
    position: absolute;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: techCirclePulse 8s infinite ease-in-out;
}

.tech-circle-1 {
    top: 15%;
    right: 10%;
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.tech-circle-2 {
    top: 70%;
    left: 5%;
    width: 60px;
    height: 60px;
    animation-delay: 3s;
}

.tech-circle-3 {
    top: 40%;
    right: 20%;
    width: 80px;
    height: 80px;
    animation-delay: 6s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 10;
}

/* 头部样式 */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: headerGlow 3s ease-in-out infinite;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    position: relative;
}

.header h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    animation: titleUnderline 2s ease-in-out infinite;
}

.header p {
    font-size: 1.1rem;
    color: #b0b8c1;
    opacity: 0.8;
    position: relative;
}

.header p::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: rgba(0, 212, 255, 0.5);
}

/* 统计信息栏样式 */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
    animation: fadeIn 0.6s ease-out;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099cc, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover .stat-icon::before {
    opacity: 1;
    animation: shine 1.5s ease;
}

.stat-content {
    flex: 1;
    text-align: left;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #00d4ff, #0099cc, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #b0b8c1;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* 分类导航样式 */
.category-nav {
    margin-bottom: 30px;
}

.category-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-item:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.category-item.active {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-color: #00d4ff;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.category-item i {
    font-size: 1.1rem;
}

/* 类型筛选样式 */
.type-filter {
    text-align: center;
    margin-top: 20px;
}

.type-filter h3 {
    color: #b0b8c1;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.type-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 15px;
    flex-wrap: wrap;
}

.type-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 400;
}

.type-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.type-item.active {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    color: #00d4ff;
}

.type-item i {
    font-size: 0.9rem;
}

/* 搜索框样式 */
.search-container {
    text-align: center;
    margin-top: 25px;
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 15px;
    color: #b0b8c1;
    font-size: 1.1rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.search-input {
    width: 100%;
    padding: 15px 45px 15px 45px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-input::placeholder {
    color: #b0b8c1;
    opacity: 0.7;
}

.search-input:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.search-input:focus + .search-icon {
    color: #00d4ff;
}

.clear-search {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #b0b8c1;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.clear-search:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.search-tips {
    margin-top: 10px;
    color: #b0b8c1;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* 加载状态样式 */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.loading-spinner {
    text-align: center;
    color: #00d4ff;
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.loading-spinner p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* 智能体容器样式 */
.agents-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* 智能体卡片样式 */
.agent-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out;
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.agent-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.agent-card:hover::before {
    transform: scaleX(1);
}

.agent-card:hover::after {
    opacity: 1;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
}

/* 卡片左上角图片 */
.agent-image {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.agent-card:hover .agent-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.agent-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    padding-left: 70px; /* 为图片留出空间 */
}

.agent-description {
    color: #b0b8c1;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.agent-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00d4ff;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: #b0b8c1;
    margin-top: 2px;
}

.agent-date {
    font-size: 0.85rem;
    color: #b0b8c1;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.agent-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0099cc, #0077a3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

/* 无数据提示样式 */
.no-data {
    text-align: center;
    padding: 60px 20px;
    color: #b0b8c1;
}

.no-data i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-data p {
    font-size: 1.2rem;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a2332 0%, #0c1426 100%);
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #00d4ff;
    font-size: 1.5rem;
}

.close {
    color: #b0b8c1;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #00d4ff;
}

.modal-body {
    padding: 25px;
    color: #ffffff;
}

.modal-body h3 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.modal-body p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #b0b8c1;
}

.modal-body .detail-item {
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.detail-item strong {
    color: #00d4ff;
    display: block;
    margin-bottom: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    /* 移动端粒子效果调整 */
    .particle {
        width: 3px;
        height: 3px;
    }
    
    /* 移动端科技线条调整 */
    .tech-line {
        opacity: 0.2;
    }
    
    .tech-line-1 {
        width: 150px;
    }
    
    .tech-line-2 {
        width: 100px;
    }
    
    .tech-line-3 {
        width: 120px;
    }
    
    /* 移动端科技圆圈调整 */
    .tech-circle-1 {
        width: 60px;
        height: 60px;
    }
    
    .tech-circle-2 {
        width: 40px;
        height: 40px;
    }
    
    .tech-circle-3 {
        width: 50px;
        height: 50px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .header::before {
        width: 150px;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .stat-card {
        padding: 25px 20px;
        gap: 15px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 15px;
    }
    
    .stat-value {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
    
    .category-list {
        gap: 10px;
    }
    
    .category-item {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .type-filter h3 {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .type-list {
        gap: 10px;
    }
    
    .type-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .search-container {
        margin-top: 20px;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .search-input {
        padding: 12px 40px 12px 40px;
        font-size: 0.95rem;
    }
    
    .search-icon {
        left: 12px;
        font-size: 1rem;
    }
    
    .clear-search {
        right: 12px;
    }
    
    .search-tips {
        font-size: 0.8rem;
        margin-top: 8px;
    }
    
    .agents-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .agent-card {
        padding: 20px;
    }
    
    .agent-image {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        top: 12px;
        left: 12px;
    }
    
    .agent-name {
        padding-left: 65px;
        font-size: 1.3rem;
    }
    
    .agent-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .agent-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
        gap: 12px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 12px;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .category-list {
        gap: 8px;
    }
    
    .category-item {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .type-list {
        gap: 8px;
    }
    
    .type-item {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .search-input {
        padding: 10px 35px 10px 35px;
        font-size: 0.9rem;
    }
    
    .search-icon {
        left: 10px;
        font-size: 0.9rem;
    }
    
    .clear-search {
        right: 10px;
    }
    
    .search-tips {
        font-size: 0.75rem;
    }
    
    .agent-image {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: 10px;
        left: 10px;
    }
    
    .agent-name {
        padding-left: 60px;
        font-size: 1.2rem;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes techLineMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

@keyframes techCirclePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
        border-color: rgba(0, 212, 255, 0.3);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
        border-color: rgba(0, 212, 255, 0.6);
    }
}

@keyframes headerGlow {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }
}

@keyframes titleUnderline {
    0%, 100% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(200%) translateY(200%) rotate(45deg); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #0099cc, #0077a3);
}

/* 底部备案信息样式 */
.footer {
    margin-top: 80px;
    padding: 40px 0 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.05) 50%, rgba(0, 212, 255, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: footerGlow 4s ease-in-out infinite;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b8c1;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-link:hover::before {
    left: 100%;
}

.footer-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover i {
    transform: scale(1.2);
}

.footer-divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    margin: 0 auto 25px;
    position: relative;
}

.footer-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    animation: dividerPulse 2s ease-in-out infinite;
}

.footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #b0b8c1;
}

.copyright, .icp-info {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.copyright:hover, .icp-info:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-1px);
}

.icp-info a {
    color: #b0b8c1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icp-info a:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.copyright i, .icp-info i {
    color: #00d4ff;
    font-size: 0.8rem;
}

/* 底部动画 */
@keyframes footerGlow {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }
}

@keyframes dividerPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.5);
    }
}

/* 移动端底部适配 */
@media (max-width: 768px) {
    .footer {
        margin-top: 60px;
        padding: 30px 0 20px;
    }
    
    .footer-links {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .footer-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .footer-info {
        gap: 20px;
        flex-direction: column;
    }
    
    .copyright, .icp-info {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .footer-divider {
        width: 150px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 10px;
    }
    
    .footer-link {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .copyright, .icp-info {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
} 