:root {
            --primary-blue: #0056b3;
            --accent-orange: #ff7a00;
            --dark-bg: #1a1a2e;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #e9ecef;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 40, 83, 0.9), rgba(0, 40, 83, 0.8)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
            border-radius: 2px;
        }
        .section-title.text-start:after {
            left: 0;
            transform: none;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            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);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
            color: white;
            font-size: 1.8rem;
        }
        .btn-gradient {
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-gradient:hover {
            color: white;
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,86,179,0.3);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px 10px;
            background: var(--light-bg);
            border-radius: 8px;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding-top: 4rem;
        }
        .footer a {
            color: #b3d4fc;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            height: 300px;
        }
        .stats-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .player-card {
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }
        .player-card img {
            transition: transform 0.5s ease;
        }
        .player-card:hover img {
            transform: scale(1.1);
        }
        .player-card:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
                text-align: center;
                padding-top: 100px;
            }
            .stats-number {
                font-size: 2.8rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
