a{color: cornflowerblue!important;}
h3{font-size: 18px !important;font-weight: 600 !important;}
/* 自定义动画和样式 */

/* 建设中标题动画 */
@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 0.6);
        transform: scale(1.02);
    }
}

.construction-title {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* 导航链接激活状态 */
.menu a.active {
    background-color: hsl(var(--p));
    color: hsl(var(--pc));
    font-weight: 600;
}

/* 倒计时数字动画 */
.countdown span {
    transition: all 0.3s ease;
}

/* 卡片悬停效果 */
.card:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .construction-title {
        font-size: 2.5rem;
    }
    
    .countdown {
        font-size: 2rem !important;
    }
}

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

.card {
    animation: fadeInUp 0.6s ease-out;
}

.card:nth-child(2) {
    animation-delay: 0.1s;
}

.card:nth-child(3) {
    animation-delay: 0.2s;
}

.card:nth-child(4) {
    animation-delay: 0.3s;
}

/* 图标旋转动画 */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.icon-rotate:hover {
    animation: rotate 0.5s ease-in-out;
}

/* 打印样式 */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
}