:root {
            --primary-color: #1a5fb4;
            --secondary-color: #e63946;
            --dark-color: #333;
            --light-color: #f8f9fa;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            line-height: 1.8;
            overflow-x: hidden;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color), #0d47a1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: white !important;
            transition: var(--transition);
        }
        .navbar-brand:hover {
            color: var(--secondary-color) !important;
            transform: scale(1.05);
        }
        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 600;
            padding: 0.75rem 1.5rem !important;
            border-radius: 30px;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: white !important;
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        .hero-section {
            background: url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            padding: 150px 0;
            position: relative;
            color: white;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
            margin-bottom: 1.5rem;
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 50px;
            transition: var(--transition);
            font-weight: 700;
        }
        .btn-primary-custom:hover {
            background-color: #c1121f;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--secondary-color);
            border-radius: 5px;
        }
        .card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: var(--transition);
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .card-title {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }
        .stats-box {
            background: linear-gradient(135deg, var(--primary-color), #1e88e5);
            color: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
        }
        .stats-box:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        .stats-number {
            font-size: 3.5rem;
            font-weight: 900;
            display: block;
            margin-bottom: 10px;
        }
        .live-score {
            background-color: #ffcc00;
            color: var(--dark-color);
            padding: 15px;
            border-radius: 15px;
            font-weight: 800;
            font-size: 1.5rem;
            text-align: center;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { background-color: #ffcc00; }
            50% { background-color: #ffdd44; }
            100% { background-color: #ffcc00; }
        }
        .analysis-section {
            background-color: #f1f8ff;
            padding: 80px 0;
        }
        .friendlink {
            background-color: #e9ecef;
            padding: 60px 0;
        }
        .flink {
            display: inline-block;
            background-color: white;
            color: var(--primary-color);
            padding: 12px 25px;
            margin: 10px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-5px);
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        footer a {
            color: #adb5bd;
            transition: var(--transition);
            text-decoration: none;
        }
        footer a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        .social-icons a {
            display: inline-block;
            width: 45px;
            height: 45px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            margin-right: 15px;
            transition: var(--transition);
        }
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: rotate(15deg) scale(1.1);
        }
        .accordion-button {
            font-weight: 700;
            color: var(--primary-color);
            background-color: rgba(26, 95, 180, 0.05);
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .navbar-nav {
                text-align: center;
                background-color: rgba(0,0,0,0.9);
                border-radius: 20px;
                padding: 20px;
            }
        }
