body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #e9f7ef;
    color: #222;
}

.fondo-futbol {
    background: linear-gradient(#4CAF50 60%, #ffffff 40%);
    background-size: cover;
    min-height: 100vh;
    padding: 60px 20px;
    position: relative;
}

.container {
    max-width: 900px;
    margin: auto;
    background-color: #ffffffdd;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
}

h2 {
    color: #0b3e91;
    border-left: 5px solid #4CAF50;
    padding-left: 10px;
    margin-top: 1.5em;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.container::before {
    content: '';
    background: url('https://www.scouting-club.com/images/ball.png') no-repeat bottom right;
    background-size: 80px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    opacity: 0.15;
    pointer-events: none;
}
h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}