/* ========================================
   新荣誉墙统计卡片样式
   基于参考图片设计，包含霓虹灯边框效果
======================================== */

/* 荣誉统计区域容器 */
.honors-stats-new {
    padding: 40px 0;
    margin: 40px 0;
    position: relative;
}

/* 统计网格布局 */
.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 统计卡片基础样式 */
.stat-card-new {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 霓虹灯边框基础 */
    border-top: 4px solid transparent;
}

/* 悬停效果 */
.stat-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* 图标样式 */
.stat-icon-new {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon-new i {
    font-size: 24px;
    color: white;
}

/* 内容区域 */
.stat-content-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* 数字样式 */
.stat-number-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2E7BFF;
    line-height: 1;
    margin-bottom: 5px;
}

/* 标签样式 */
.stat-label-new {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 每个卡片的特色图标颜色和霓虹灯边框 */
.stat-card-new:nth-child(1) .stat-icon-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-card-new:nth-child(1) {
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #667eea, #764ba2, #667eea) 1;
    animation: neon-glow-purple 2s ease-in-out infinite alternate;
}

.stat-card-new:nth-child(2) .stat-icon-new {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.stat-card-new:nth-child(2) {
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #4ecdc4, #44a08d, #4ecdc4) 1;
    animation: neon-glow-teal 2s ease-in-out infinite alternate;
}

.stat-card-new:nth-child(3) .stat-icon-new {
    background: linear-gradient(135deg, #ffd89b 0%, #f093fb 100%);
}

.stat-card-new:nth-child(3) {
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #ffd89b, #f093fb, #ffd89b) 1;
    animation: neon-glow-gold 2s ease-in-out infinite alternate;
}

.stat-card-new:nth-child(4) .stat-icon-new {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.stat-card-new:nth-child(4) {
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #ff9a9e, #fecfef, #ff9a9e) 1;
    animation: neon-glow-pink 2s ease-in-out infinite alternate;
}

/* 霓虹灯动画效果 */
@keyframes neon-glow-purple {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(102, 126, 234, 0.3);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 30px rgba(102, 126, 234, 0.6);
    }
}

@keyframes neon-glow-teal {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(78, 205, 196, 0.3);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 30px rgba(78, 205, 196, 0.6);
    }
}

@keyframes neon-glow-gold {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 216, 155, 0.3);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 30px rgba(255, 216, 155, 0.6);
    }
}

@keyframes neon-glow-pink {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 154, 158, 0.3);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 30px rgba(255, 154, 158, 0.6);
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .stat-card-new {
        padding: 25px 20px;
        min-height: 140px;
    }
    
    .stat-icon-new {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .stat-icon-new i {
        font-size: 20px;
    }
    
    .stat-number-new {
        font-size: 2rem;
    }
    
    .stat-label-new {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-grid-new {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .honors-stats-new {
        padding: 30px 0;
        margin: 30px 0;
    }
}
