body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0b5ed7, #0dcaf0);
    color: #ffffff;
}

/* ====== TÍTULOS ====== */
h1 {
    text-align: center;
    margin: 40px auto 20px;
    font-size: 36px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

/* ⚽ Icono fútbol en títulos */
h1::before {
    content: "⚽ ";
}

h1::after {
    content: " ⚽";
}

/* ====== PÁRRAFOS ====== */
p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 18px;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.25);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    text-align: justify;
}

/* ====== SECCIONES CON ESTILO TARJETA ====== */
p:hover {
    transform: scale(1.02);
    transition: 0.3s ease;
}

/* ====== IMAGEN ====== */
img {
    display: block;
    margin: 40px auto;
    max-width: 450px;
    width: 90%;
    border-radius: 20px;
    box-shadow:
        0 15px 35px rgba(0,0,0,0.5),
        0 0 30px rgba(13, 202, 240, 0.9);
    transition: transform 0.4s ease;
}

img:hover {
    transform: scale(1.1) rotate(-1deg);
}

/* ====== ICONOS DECORATIVOS ====== */
body::before {
    content: "🏆 ⚽ 🥅 ⚽ 🏆";
    display: block;
    text-align: center;
    font-size: 28px;
    margin-top: 15px;
    opacity: 0.8;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    h1 {
        font-size: 26px;
    }

    p {
        font-size: 16px;
        margin: 15px;
    }
}