:root {
            --primary-blue: #0038a8;
            --secondary-red: #bf0d3e;
            --accent-gold: #ffd700;
            --neutral-dark: #1a1a2e;
            --neutral-light: #f8f9fa;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', sans-serif;
            color: #333;
            background-color: #fefefe;
            line-height: 1.7;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #0056b3 50%, var(--secondary-red) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-gradient::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="white" opacity="0.03"/>');
            background-size: cover;
        }
        .nav-shadow {
            box-shadow: 0 4px 12px rgba(0, 56, 168, 0.15);
        }
        .prediction-card {
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: none;
            border-top: 4px solid var(--accent-gold);
            overflow: hidden;
        }
        .prediction-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        .live-badge {
            animation: pulse 2s infinite;
            background: linear-gradient(90deg, #dc3545, #ff6b6b);
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
        }
        .stat-item {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary-blue);
        }
        .friendlink {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-radius: 12px;
        }
        .flink {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            margin: 8px;
            background: white;
            border-radius: 50px;
            color: #555;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
            font-weight: 500;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
            border-color: var(--primary-blue);
            text-decoration: none;
        }
        .flink i {
            margin-right: 8px;
            font-size: 1.2em;
        }
        .article-content h3 {
            color: var(--primary-blue);
            border-left: 4px solid var(--accent-gold);
            padding-left: 15px;
            margin-top: 2rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .footer {
            background: var(--neutral-dark);
            color: #ccc;
            padding-top: 3rem;
            border-top: 5px solid var(--accent-gold);
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.3rem;
            color: var(--accent-gold);
        }
        .mobile-optimized img {
            max-width: 100%;
            height: auto;
        }
        @media (max-width: 768px) {
            .hero-gradient h1 {
                font-size: 1.8rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .flink {
                width: calc(50% - 16px);
                justify-content: center;
            }
        }
