:root {
            --primary: #0d6efd;
            --secondary: #6c757d;
            --success: #198754;
            --dark: #212529;
            --light: #f8f9fa;
            --warning: #ffc107;
            --danger: #dc3545;
            --scotland-blue: #005eb8;
            --morocco-red: #c1272d;
        }
        body {
            font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
            background: linear-gradient(90deg, var(--scotland-blue), var(--morocco-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1536939459926-301728717817?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            margin-bottom: 3rem;
        }
        .match-badge {
            background: linear-gradient(90deg, var(--scotland-blue), var(--morocco-red));
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: bold;
            display: inline-block;
            margin: 1rem 0;
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 1.5rem;
            border-radius: 12px;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            border: 2px solid #eee;
        }
        .live-score {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--danger);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .stat-bar {
            height: 10px;
            border-radius: 5px;
            margin: 10px 0;
        }
        .stat-bar.scotland {
            background-color: var(--scotland-blue);
        }
        .stat-bar.morocco {
            background-color: var(--morocco-red);
        }
        .article-content h3 {
            color: var(--dark);
            border-left: 4px solid var(--primary);
            padding-left: 15px;
            margin-top: 2rem;
        }
        .article-content p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .footer {
            background-color: var(--dark);
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .friendlink a.flink {
            display: inline-block;
            background: #f1f1f1;
            padding: 8px 20px;
            margin: 5px 10px;
            border-radius: 30px;
            color: #444;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #ddd;
        }
        .friendlink a.flink:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
            border-color: var(--primary);
            text-decoration: none;
        }
        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), #0b5ed7);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }
        .nav-link {
            font-weight: 500;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s;
        }
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        .btn-prediction {
            background: linear-gradient(90deg, var(--scotland-blue), var(--morocco-red));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-prediction:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .live-score {
                font-size: 1.8rem;
            }
        }
