        * { box-sizing: border-box; }
        
        body {
            margin: 0;
            min-height: 100vh;
            font-family: 'Inter', system-ui, sans-serif;
            color: #fff;
            padding: 2rem 1rem;
            background: 
                linear-gradient(135deg, rgba(2, 6, 23, 0.9), rgba(100, 149, 237, 0.4)), 
                url('../images/name.png'); 
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        h1 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            letter-spacing: -1px;
        }

        .grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            color: #1e293b;
        }

        h2 {
            margin: 0 0 1rem;
            color: #0f172a;
            border-bottom: 3px solid #38bdf8;
            display: inline-block;
        }

        .stats-banner {
            background: #f1f5f9;
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            text-align: center;
            border: 1px solid #e2e8f0;
        }

        .stats-banner .label {
            display: block;
            font-size: 0.7rem;
            text-transform: uppercase;
            color: #64748b;
            font-weight: 700;
        }

        .stats-banner .value {
            font-size: 1.8rem;
            font-weight: 800;
            color: #020617;
        }

        h3 {
            font-size: 0.8rem;
            color: #94a3b8;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        table { width: 100%; border-collapse: collapse; }
        td { padding: 10px 5px; border-bottom: 1px solid #f1f5f9; font-size: 0.9rem; }
        .rank { color: #94a3b8; font-weight: bold; width: 40px; }
        .count { text-align: right; font-weight: 700; color: #38bdf8; }
        .empty-state { color: #94a3b8; font-style: italic; text-align: center; }

        @media (max-width: 640px) { h1 { font-size: 1.8rem; } }