:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --dark-color: #0f172a;
            --light-color: #f8fafc;
            --text-color: #334155;
        }
        body {
            font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            color: white;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            opacity: 0.15;
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .section-title {
            color: var(--primary-color);
            border-left: 5px solid var(--secondary-color);
            padding-left: 1rem;
            margin-bottom: 2.5rem;
            font-weight: 700;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .live-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary-color);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .data-stat {
            background: var(--light-color);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            height: 100%;
        }
        .flink {
            display: inline-block;
            background: var(--light-color);
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 8px;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--accent-color);
            transform: scale(1.05);
        }
        footer {
            background: var(--dark-color);
            color: var(--light-color);
        }
        .contact-info i {
            color: var(--accent-color);
            margin-right: 10px;
        }
        .img-fluid {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .analysis-box {
            background: linear-gradient(145deg, #ffffff, #f1f5f9);
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(30, 58, 138, 0.05);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
