        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .header {
            background: white;
            border-radius: 12px;
            padding: 25px 30px;
            margin-bottom: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-left: 5px solid #0088cc;
        }
        .header h1 {
            color: #333;
            font-size: 28px;
            margin-bottom: 10px;
        }
        .header h1 span {
            color: #0088cc;
        }
        .header p {
            color: #666;
            font-size: 14px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .stat-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .card-header {
            background: #0088cc;
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .card-header h2 {
            font-size: 20px;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
						color: #ffffff;
        }
        .card-header h2:before {
            content: "🏆";
            font-size: 24px;
        }
        .badge-count {
            background: rgba(255,255,255,0.2);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
        }

        .veteran-table {
            width: 100%;
            border-collapse: collapse;
        }
        .veteran-table thead tr {
            background: #f8f9fa;
            border-bottom: 1px solid #e0e0e0;
        }
        .veteran-table th {
            text-align: left;
            padding: 12px 16px;
            font-weight: 600;
            color: #333;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .veteran-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #eee;
            vertical-align: middle;
            color: #555;
        }
        .veteran-table tbody tr:hover td {
            background: #f8f9fa;
        }
        .veteran-table tbody tr:last-child td {
            border-bottom: none;
        }

        .rank-cell {
            font-weight: 700;
            width: 60px;
            color: #0088cc;
            font-size: 18px;
        }
        .name-cell {
            font-weight: 600;
            color: #333;
        }
        .games-cell {
            font-weight: 800;
            font-size: 18px;
            color: #0088cc;
            text-align: right;
            font-family: monospace;
        }
        .games-label {
            font-size: 11px;
            font-weight: 400;
            color: #999;
            margin-left: 4px;
        }
        .team-status {
            font-size: 11px;
            color: #888;
            display: block;
            margin-top: 3px;
        }
        .empty-row td {
            text-align: center;
            padding: 40px !important;
            color: #999;
        }

        @media (max-width: 880px) {
            body {
                padding: 15px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .header {
                padding: 20px;
            }
            .header h1 {
                font-size: 22px;
            }
            .veteran-table th,
            .veteran-table td {
                padding: 10px 12px;
            }
            .rank-cell {
                font-size: 16px;
                width: 50px;
            }
            .games-cell {
                font-size: 16px;
            }
        }

        .footnote {
            margin-top: 30px;
            background: white;
            border-radius: 12px;
            padding: 15px 20px;
            text-align: center;
            font-size: 12px;
            color: #666;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-left: 5px solid #0088cc;
        }
        .footnote i {
            background: #e8f4f8;
            padding: 3px 8px;
            border-radius: 20px;
            font-style: normal;
            font-family: monospace;
            font-size: 11px;
            color: #0088cc;
        }