:root {
            --primary: #0a3d62;
            --secondary: #f9ca24;
            --accent: #eb2f06;
            --light: #f7f7f7;
            --dark: #222f3e;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--secondary) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(34, 47, 62, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--secondary);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
        }
        .btn-primary:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: var(--dark);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.8rem;
        }
        .footer {
            background-color: var(--dark);
            color: #ccc;
            padding: 60px 0 20px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--secondary);
        }
        .friendlink a.flink {
            background: var(--light);
            padding: 10px 20px;
            border-radius: 6px;
            margin: 5px;
            display: inline-block;
            border: 1px solid #ddd;
            transition: all 0.3s;
            color: var(--primary);
            font-weight: 500;
        }
        .friendlink a.flink:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
        }
        .player-card {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }
        .player-card img {
            transition: transform 0.5s ease;
        }
        .player-card:hover img {
            transform: scale(1.05);
        }
        .player-overlay {
            position: absolute;
            bottom: 0;
            background: linear-gradient(transparent, rgba(10, 61, 98, 0.95));
            width: 100%;
            padding: 20px;
            color: white;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        .player-card:hover .player-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                min-height: 70vh;
                text-align: center;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
