body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0b5ed7, #0dcaf0);
    color: #ffffff;
}

/* ====== TÍTULO PRINCIPAL ====== */
h1 {
    text-align: center;
    margin: 40px 0;
    font-size: 36px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1::before {
    content: "⚽ ";
}

h1::after {
    content: " 🏆";
}

/* ====== TABLA ====== */
table {
    width: 90%;
    margin: 30px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* ====== FILAS ====== */
tr {
    transition: background 0.3s ease;
}

tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.08);
}

tr:hover {
    background: rgba(13, 202, 240, 0.35);
}

/* ====== CELDAS ====== */
td {
    padding: 25px;
    vertical-align: top;
    font-size: 17px;
}

/* ====== ENCABEZADOS SIMULADOS ====== */
td h1 {
    font-size: 26px;
    margin: 0 0 15px;
    text-align: left;
}

td h1::before {
    content: "🥅 ";
}

td h1::after {
    content: "";
}

/* ====== TEXTO ====== */
p {
    margin: 0;
    line-height: 1.8;
    text-align: justify;
}

/* ====== IMAGEN ====== */
img {
    display: block;
    margin: auto;
    max-width: 300px;
    width: 100%;
    border-radius: 20px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.5),
        0 0 25px rgba(13, 202, 240, 0.8);
    transition: transform 0.4s ease;
}

img:hover {
    transform: scale(1.08);
}

/* ====== ICONOS DECORATIVOS ====== */
table::before {
    content: "🏟️ HISTORIA DEL FÚTBOL ⚽";
    display: block;
    text-align: center;
    font-size: 24px;
    padding: 20px;
    background: rgba(0,0,0,0.35);
    letter-spacing: 2px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    table, tr, td {
        display: block;
        width: 100%;
    }

    td {
        padding: 20px;
    }

    h1 {
        font-size: 26px;
    }
}