/* PS Formazioni lineup field */
.ps-lineup-wrapper{
  background:#0b1f3a;
  padding:16px;
  border-radius:16px;
  color:#fffcf4;
  font-family:-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
  max-width:900px;
  margin:0 auto 24px;
}
.ps-lineup-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.ps-team{display:flex;align-items:center;gap:8px;flex:1;}
.ps-team-logo{width:40px;height:40px;object-fit:contain;}
.ps-team-info{font-size:12px;line-height:1.3;}
.ps-team-name{font-weight:700;font-size:14px;}
.ps-team-formation{font-size:12px;opacity:.9;}
.ps-team-coach{font-size:11px;opacity:.8;}
.ps-vs{font-weight:700;font-size:16px;padding:0 6px;}
.ps-pitch{
  background:var(--ps-pitch-bg,#357a38);
  border-radius:14px;
  padding:8px;
  position:relative;
  overflow:hidden;
}
.ps-pitch-inner{
  position:relative;
  width:100%;
  padding-top:55%;
  border:2px solid rgba(255,255,255,.4);
  border-radius:10px;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);
}
.ps-pitch-inner::before{
  content:'';
  position:absolute;
  left:50%;top:0;bottom:0;width:0;
  border-left:2px solid var(--ps-pitch-line,#ffffff);
}
.ps-player{
  position:absolute;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
}
.ps-player-kit{
  width:var(--ps-kit-size,26px);
  height:var(--ps-kit-size,26px);
  border-radius:50%;
  background:var(--ps-kit-bg,#ffffff);
  color:var(--ps-kit-color,#000000);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 2px;
  box-shadow:0 0 0 2px rgba(0,0,0,.15);
}
.ps-player--shape-shield .ps-player-kit{
  border-radius:8px;
}
.ps-player--shape-shirt .ps-player-kit{
  border-radius:6px 6px 10px 10px;
}
.ps-player-number{
  font-weight:700;
  font-size:calc(var(--ps-font-size,10px)*1.1);
}
.ps-player-name{
  font-size:var(--ps-font-size,10px);
  white-space:nowrap;
  max-width:70px;
  overflow:hidden;
  text-overflow:ellipsis;
}
.ps-player--name-right .ps-player-name{
  position:absolute;
  left:110%;
  top:50%;
  transform:translateY(-50%);
  text-align:left;
}
.ps-player--shadow .ps-player-kit{
  box-shadow:0 2px 4px rgba(0,0,0,.35);
}
@media(max-width:600px){
  .ps-lineup-wrapper{padding:12px;}
  .ps-team-name{font-size:13px;}
  .ps-player-name{font-size:9px;max-width:56px;}
}

/* Desktop: allinea la squadra ospite a destra */
.ps-team--away {
  justify-content: flex-end;
  text-align: right;
}

/* Mobile: proporzioni più equilibrate e maggiore leggibilità */
@media(max-width:600px){
  .ps-pitch-inner{
    padding-top:70% !important;
  }
  .ps-player{
    transform:translate(-50%,-50%) scale(0.88);
  }
  .ps-player-name{
    font-size:11px !important;
    max-width:80px;
  }
}
