header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

main {
    padding: 100px;
}

table {
    margin: 40px auto;
    border-collapse: collapse;
    width: 70%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 2px 15px rgba(0, 0, 50, 0.4);
    border-radius: 12px;
    overflow: hidden;
    background-color: #0a1033; /* Azul escuro Champions */
    color: #f5f5f5;
}

/* Cabeçalho dourado */
thead {
    background: linear-gradient(90deg, #c7a008, #e0c060);
    color: #0a1033;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.1em;
}

th, td {
    text-align: center;
    padding: 14px 20px;
}

tbody tr:nth-child(even) {
    background-color: #111a4b; /* Azul um pouco mais claro */
}

tbody tr:hover {
    background-color: #192a6b;
    transition: background 0.3s ease;
}

/* Primeira coluna (temporadas) */
tbody th {
    text-align: left;
    padding-left: 25px;
    color: #ffd700; /* Dourado elegante */
}

/* Borda sutil nas células */
td, th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 600px) {
    table {
        width: 100%;
        font-size: 0.8em;
    }

    th, td {
        padding: 8px;
    }
}

