:root {
            --primary-blue: #1a365d;
            --secondary-gold: #d4af37;
            --accent-red: #c53030;
            --light-bg: #f8f9fa;
            --dark-text: #2d3748;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(to right, var(--secondary-gold), var(--accent-red));
            border-radius: 2px;
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .stat-card {
            background: linear-gradient(135deg, var(--primary-blue), #2c5282);
            color: white;
            border-radius: 12px;
            padding: 25px;
        }
        .prediction-badge {
            display: inline-block;
            padding: 6px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .badge-uruguay {
            background: linear-gradient(to right, #0038a8, #ffffff);
            color: #000;
        }
        .badge-spain {
            background: linear-gradient(to right, #c60b1e, #ffc400);
            color: #000;
        }
        .live-indicator {
            width: 12px;
            height: 12px;
            background-color: var(--accent-red);
            border-radius: 50%;
            display: inline-block;
            animation: pulse 1.5s infinite;
            margin-right: 8px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        .fixture-card {
            border-left: 5px solid var(--secondary-gold);
            background-color: #fffbf0;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 8px;
            background-color: #f1f5f9;
            border-radius: 8px;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }
        .footer {
            background-color: var(--primary-blue);
            color: #cbd5e0;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background-color: var(--secondary-gold);
            color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .analysis-tab {
            border-bottom: none;
        }
        .analysis-tab .nav-link {
            color: var(--dark-text);
            font-weight: 600;
            border-radius: 8px 8px 0 0;
            margin-right: 5px;
            border: 1px solid #e2e8f0;
            border-bottom: none;
            background-color: #f8fafc;
        }
        .analysis-tab .nav-link.active {
            background-color: white;
            color: var(--primary-blue);
            border-bottom: 3px solid var(--secondary-gold);
            margin-bottom: -1px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
        .content-text {
            text-align: justify;
            hyphens: auto;
        }
