
        * {
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
        }
        body {
            background: #f0f2f5;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 30px 20px;
        }
        .type-chart {
            max-width: 1100px;
            width: 100%;
            background: white;
            border-radius: 28px;
            box-shadow: 0 20px 40px -12px rgba(0,0,0,0.25);
            padding: 30px 20px 25px 20px;
        }
        h2 {
            text-align: center;
            margin: 0 0 12px 0;
            font-weight: 500;
            font-size: 1.9rem;
            letter-spacing: 1px;
            color: #2c3e50;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .table-wrapper {
            overflow-x: auto;
            margin: 0 5px;
            border-radius: 18px;
            border: 1px solid #d0d9e8;
            background: #fafcff;
        }
        table {
            border-collapse: collapse;
            min-width: 780px;
            width: 100%;
            font-size: 0.9rem;
            box-shadow: 0 2px 6px rgba(0,0,0,0.03);
        }
        th {
            background: #1e2b3c;
            color: white;
            font-weight: 500;
            padding: 16px 6px;
            font-size: 0.9rem;
            text-align: center;
            border: 1px solid #314b66;
            white-space: nowrap;
        }
        td {
            border: 1px solid #bdc9db;
            padding: 10px 6px;
            text-align: center;
            background-color: white;
            font-weight: 500;
            min-width: 48px;
        }
        /* célula de canto com inclinação */
        .corner-cell {
            background: #0f1a24;
            color: #e1e9f2;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.3px;
            border: 1px solid #2f4055;
            white-space: nowrap;
            padding: 14px 6px;
            text-transform: uppercase;
            background: #192b39;
            background: linear-gradient(145deg, #1f3342 0%, #14222e 100%);
        }
        .corner-cell small {
            display: block;
            font-size: 0.7rem;
            font-weight: 300;
            opacity: 0.8;
            margin-top: 3px;
            text-transform: none;
        }

        /* coluna fixa de atacantes */
        td:first-child, th:first-child {
            position: sticky;
            left: 0;
            background-color: #e3edf5;
            background: #e9f0f7;
            font-weight: 600;
            color: #102331;
            border-right: 2px solid #8fa5c2;
            text-transform: capitalize;
            box-shadow: 2px 0 5px -3px rgba(0,0,0,0.1);
            z-index: 10;
        }
        th:first-child {
            background: #17212b;
            color: #cbd9ea;
            border-right: 2px solid #536f8a;
            z-index: 20;
        }

        /* estilos de efetividade */
        .efetivo {
            background-color: #2ecc71;
            color: #003d1f;
            font-weight: 700;
            font-size: 1.15rem;
            text-shadow: 0 1px 2px rgba(255,255,255,0.4);
        }
        .fraco {
            background-color: #e74c3c;
            color: #3b0d06;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .imune {
            background-color: #11181f;
            color: #f0f3f8;
            font-weight: 800;
            font-size: 1.1rem;
            border: 1px solid #2b3a4b;
        }
        .neutro {
            background-color: #fefefe;
            color: #676f7c;
        }

        /* tooltip leve */
        td[title] {
            cursor: help;
        }
        footer {
            margin-top: 20px;
            text-align: center;
            font-size: 0.75rem;
            color: #5e7188;
        }
        .legenda {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 20px 10px 5px;
            padding: 10px 16px;
            background: #edf3fa;
            border-radius: 46px;
            font-size: 0.85rem;
        }
        .legenda-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .bolinha {
            display: inline-block;
            width: 28px;
            height: 28px;
            border-radius: 30px;
            text-align: center;
            line-height: 28px;
            font-weight: 700;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .bolinha.verde { background: #2ecc71; color: #003d1f; }
        .bolinha.vermelha { background: #e74c3c; color: #3b0d06; }
        .bolinha.preta { background: #11181f; color: white; }
        .bolinha.branca { background: #f5f7fa; border: 1px solid #a3b5cc; color: #2c3e50; }

       .pika
       {
        width: 100px;
       }

       /*JAVA SCRIPT PARA FICAR BONITO :)*/
       .bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    
        background-image: url("vetor.png");
        background-repeat: repeat;
        background-size: 3000px 3000px;
    
        .conteudo {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-top: 20vh;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 10px;
        }
    }