<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: #0A0C15;
            color: #F1F5F9;
            line-height: 1.5;
        }
        ::-webkit-scrollbar { width: 6px; height: 6px; }
        ::-webkit-scrollbar-track { background: #1E293B; border-radius: 10px; }
        ::-webkit-scrollbar-thumb { background: #3B4B66; border-radius: 10px; }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 20px 0;
            border-bottom: 1px solid #1F2937;
            margin-bottom: 32px;
        }
        .logo { display: flex; align-items: center; gap: 12px; }
        .logo-icon { font-size: 32px; color: #10B981; }
        .logo-text { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; background: linear-gradient(135deg, #FFFFFF 0%, #A7F3D0 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
        .logo-badge { background: #10B98120; border: 1px solid #10B98140; border-radius: 40px; padding: 4px 12px; font-size: 12px; font-weight: 500; color: #10B981; }
        .nav-links { display: flex; gap: 28px; font-weight: 500; }
        .nav-links a { transition: color 0.2s; }
        .nav-links a:hover, .nav-links a.active { color: #10B981; }
        .user-area { display: flex; gap: 20px; align-items: center; }
        .search-icon, .user-icon { font-size: 20px; cursor: pointer; transition: color 0.2s; }
        .search-icon:hover, .user-icon:hover { color: #10B981; }
        .hero {
            background: linear-gradient(135deg, #0F121E 0%, #0A0C15 100%);
            border-radius: 32px;
            padding: 28px 36px;
            margin-bottom: 36px;
            border: 1px solid #262E40;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .hero-text h1 { font-size: 1.9rem; font-weight: 800; margin-bottom: 8px; }
        .hero-text p { color: #9CA3AF; }
        .hero-icon { font-size: 48px; color: #10B981; opacity: 0.8; }
        .breadcrumb { margin-bottom: 20px; font-size: 0.85rem; color: #8B9BB0; }
        .breadcrumb a:hover { color: #10B981; }
        .league-selector {
            background: #0F121E;
            border-radius: 60px;
            padding: 8px 20px;
            display: inline-flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
            border: 1px solid #262E40;
        }
        .league-selector label { font-weight: 600; }
        .league-selector select {
            background: #1E293B;
            border: none;
            padding: 8px 20px;
            border-radius: 40px;
            color: #F1F5F9;
            font-family: inherit;
            font-weight: 500;
            cursor: pointer;
        }
        .data-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin-bottom: 40px;
        }
        .data-card {
            background: #0F121E;
            border-radius: 28px;
            border: 1px solid #262E40;
            overflow: hidden;
        }
        .card-header {
            background: #0B0E17;
            padding: 18px 24px;
            border-bottom: 1px solid #1F2937;
            font-weight: 700;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card-header i { color: #10B981; }
        .table-wrapper { overflow-x: auto; padding: 0 0 12px 0; }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
        }
        th, td { padding: 12px 12px; text-align: left; border-bottom: 1px solid #1A1F2C; }
        th { color: #9CA3AF; font-weight: 600; background: #0A0D16; }
        tr:hover td { background: #131927; }
        .rank { font-weight: 700; width: 50px; color: #10B981; }
        .team-name { display: flex; align-items: center; gap: 8px; font-weight: 500; }
        .team-icon-small {
            width: 24px;
            height: 24px;
            background: #1F2A3E;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        .points, .goals { font-weight: 700; text-align: center; }
        .player-name { font-weight: 600; }
        .club { font-size: 0.7rem; color: #8B9BB0; }
        .full-width { margin-top: 28px; }
        .footer {
            border-top: 1px solid #1F2937;
            padding: 32px 0;
            margin-top: 40px;
            text-align: center;
            font-size: 13px;
            color: #6C7A91;
        }
        .footer-links a { margin: 0 10px; transition: color 0.2s; }
        .footer-links a:hover { color: #10B981; }
        @media (max-width: 1000px) {
            .data-grid { grid-template-columns: 1fr; }
            .navbar { flex-direction: column; gap: 16px; }
            .nav-links { justify-content: center; }
            .hero { flex-direction: column; text-align: center; }
        }
    </style>