:root {
    --gradient-blue: linear-gradient(135deg, #0F4C9E 0%, #2563EB 50%, #22D3EE 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
}
* { scroll-behavior: smooth; }
body { background: #050B1A; color: #E2E8F0; font-family: system-ui, -apple-system, sans-serif; }
.circuit-bg {
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.025) 1px, transparent 1px);
    background-size: 45px 45px;
}
.gradient-text {
    background: var(--gradient-blue);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.glass-card {
    background: linear-gradient(135deg, rgba(15, 32, 62, 0.7) 0%, rgba(20, 42, 82, 0.5) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    backdrop-filter: blur(10px);
}
.nav-link { position: relative; transition: color 0.15s ease-out; }
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--gradient-blue); transition: width 0.15s ease-out; border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: #22D3EE !important; }
.section-divider {
    width: 60px; height: 3px; background: var(--gradient-blue);
    border-radius: 2px; margin: 0 auto;
}
.btn-primary {
    background: var(--gradient-blue);
    transition: all 0.15s ease-out;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}
.news-card {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 32, 62, 0.8) 0%, rgba(20, 42, 82, 0.7) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.15s ease-out;
}
.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
}
.news-cover {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.news-cover > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-cover::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(5, 11, 26, 0.9) 100%);
}
.news-category {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
    backdrop-filter: blur(10px);
}
.news-date-badge {
    position: absolute; bottom: 12px; left: 12px; z-index: 2;
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; color: rgba(255,255,255,0.8);
}
.news-card-body { padding: 1.25rem; }
.news-title {
    font-size: 1.125rem; font-weight: 700; color: #fff;
    margin-bottom: 0.5rem; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s ease-out;
}
.news-card:hover .news-title { color: #22D3EE; }
.news-excerpt {
    font-size: 0.875rem; color: #94A3B8; line-height: 1.7;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; margin-bottom: 1rem;
}
.news-meta {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 0.75rem; border-top: 1px solid rgba(37, 99, 235, 0.1);
}
.news-read-more {
    font-size: 0.8125rem; color: #60A5FA; font-weight: 600;
    display: flex; align-items: center; gap: 4px;
    transition: all 0.15s ease-out;
}
.news-card:hover .news-read-more { color: #22D3EE; gap: 8px; }
.filter-tag {
    padding: 0.5rem 1.25rem; border-radius: 20px;
    font-size: 0.875rem; font-weight: 500; cursor: pointer;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: rgba(15, 32, 62, 0.5);
    color: #94A3B8;
    transition: all 0.15s ease-out;
}
.filter-tag:hover {
    border-color: rgba(34, 211, 238, 0.4);
    color: #22D3EE;
}
.filter-tag.active {
    background: var(--gradient-blue);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.pagination-btn {
    width: 40px; height: 40px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.875rem; font-weight: 600; cursor: pointer;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: rgba(15, 32, 62, 0.5);
    color: #94A3B8;
    transition: all 0.15s ease-out;
}
.pagination-btn:hover {
    border-color: rgba(34, 211, 238, 0.4);
    color: #22D3EE;
}
.pagination-btn.active {
    background: var(--gradient-blue);
    border-color: transparent;
    color: #fff;
}
.pagination-btn.disabled {
    opacity: 0.4; cursor: not-allowed;
}
.hot-news-item {
    display: flex; gap: 0.75rem; padding: 0.75rem 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
    transition: all 0.15s ease-out; cursor: pointer;
}
.hot-news-item:last-child { border-bottom: none; }
.hot-news-item:hover { padding-left: 4px; }
.hot-news-item:hover .hot-news-title { color: #22D3EE; }
.hot-news-rank {
    width: 24px; height: 24px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.hot-news-rank.top3 { background: var(--gradient-gold); color: #fff; }
.hot-news-rank.normal { background: rgba(37, 99, 235, 0.2); color: #60A5FA; }
.hot-news-title {
    font-size: 0.875rem; color: #CBD5E1; font-weight: 500;
    line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
    transition: color 0.15s ease-out;
}
.hot-news-date { font-size: 0.7rem; color: #64748B; margin-top: 2px; }
.footer-nav-col h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.footer-nav-col ul li { margin-bottom: 0.5rem; }
.footer-nav-col ul li a { color: #94A3B8; font-size: 0.875rem; transition: color 0.15s ease-out; }
.footer-nav-col ul li a:hover { color: #22D3EE; }
.anim-fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
.anim-fade-up.visible { opacity: 1; transform: translateY(0); }
.cover-honor { background: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #92400E 100%); }
.cover-finance { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 50%, #4C1D95 100%); }
.cover-coop { background: linear-gradient(135deg, #10B981 0%, #059669 50%, #065F46 100%); }
.cover-product { background: linear-gradient(135deg, #0F4C9E 0%, #2563EB 50%, #22D3EE 100%); }
.cover-platform { background: linear-gradient(135deg, #EC4899 0%, #DB2777 50%, #9D174D 100%); }
.cover-business { background: linear-gradient(135deg, #06B6D4 0%, #0891B2 50%, #155E75 100%); }
.cover-pattern {
    position: absolute; inset: 0; opacity: 0.15;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2) 0%, transparent 40%);
}
.cover-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 3rem; opacity: 0.3; z-index: 1;
}
