:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --light-bg: #f8fafc;
            --dark-text: #1f2937;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            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%, #2d4ba3 100%);
            color: white;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2.5rem; }
            .hero-section { padding: 4rem 0; }
        }
        .section-title {
            color: var(--primary-color);
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin-bottom: 2.5rem;
            font-weight: 700;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .flink {
            display: inline-block;
            background: var(--light-bg);
            padding: 12px 25px;
            margin: 10px;
            border-radius: 50px;
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--accent-color);
        }
        .friendlink {
            background: linear-gradient(to right, #f0f9ff, #e0f2fe);
            padding: 4rem 0;
        }
        .live-score {
            background: #0f172a;
            color: white;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 30px;
        }
        .live-score h3 i {
            color: #ff6b6b;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        footer {
            background: var(--dark-text);
            color: #d1d5db;
            padding: 3rem 0 1.5rem;
        }
        .contact-info li {
            margin-bottom: 10px;
        }
        .contact-info i {
            color: var(--accent-color);
            width: 25px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .analysis-article {
            background: white;
            border-left: 4px solid var(--accent-color);
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .btn-primary-custom {
            background: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: background 0.3s;
        }
        .btn-primary-custom:hover {
            background: #b91c1c;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 3px solid var(--primary-color);
            margin-left: 15px;
        }
        .timeline-item {
            margin-bottom: 30px;
            position: relative;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary-color);
        }
