/* EL ESTADIO Y EL PASTO CORREGIDOS */
.bg-stadium { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 55%; 
    background-color: #0d131a; 
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.9)), url('../assets/estadio.jpg');
    background-position: center;
    background-size: cover;
    z-index: 1; 
}

.bg-grass { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 45%; 
    background-color: #166534; 
    background-image: url('../assets/cesped.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2; 
    border-top: 3px solid #00f3ff; 
    box-shadow: 0 -5px 15px rgba(0,243,255,0.4); 
}

/* LAS VALLAS PUBLICITARIAS MÁS ALTAS IMPONENTES */
.led-board { 
    position: absolute; 
    bottom: 45%; 
    left: 0; 
    width: 100%; 
    height: 12vh; /* SUBIDO DE 8vh A 12vh PARA MAYOR IMPACTO VISUAL */
    background: #000; 
    border-top: 3px solid #111; 
    border-bottom: 3px solid #111; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 3; 
}
.sponsor-img { height: 100%; width: 50%; object-fit: cover; border-right: 2px solid #111;}
.led-overlay { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.4) 3px); pointer-events: none; }