:root {
            --primary-color: #0d47a1;
            --secondary-color: #ff6f00;
            --dark-color: #1a237e;
            --light-color: #e3f2fd;
            --text-dark: #212121;
            --text-light: #757575;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--dark-color);
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary-color);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-color);
            font-size: 30px;
        }
        .match-card {
            background: #f8f9fa;
            border-left: 5px solid var(--secondary-color);
            padding: 20px;
            margin-bottom: 20px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
        }
        .data-table th, .data-table td {
            border: 1px solid #dee2e6;
            padding: 12px;
            text-align: center;
        }
        .data-table th {
            background-color: var(--dark-color);
            color: white;
        }
        .friendlink .flink {
            display: inline-block;
            margin: 10px 15px;
            padding: 10px 20px;
            background: var(--light-color);
            border-radius: 30px;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
        }
        .friendlink .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background-color: var(--dark-color);
            color: white;
        }
        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: var(--secondary-color);
        }
        .analysis-content {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
