 /* ===== Mini “beautify pack” sin tocar tu CSS global ===== */
  .games-wrap{
    max-width: 1200px;
    margin: 0 auto;
  }

  .games-header{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 14px;
  }

  .games-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
  }
  .games-badge img{ width:18px; height:18px; }

  .games-title{
    font-family: inherit;
    letter-spacing: .2px;
    opacity: .95;
  }

  .game-card{
    position:relative;
    width:100%;
    max-width: 980px;
    border-radius: 22px;
    overflow:hidden;
  }

  .game-card-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 14px 16px;
  }

  .topbar-left{
    display:flex;
    align-items:center;
    gap:10px;
    min-width: 0;
  }

  .dot{
    width:10px; height:10px; border-radius:50%;
  }

  .game-name{
    font-weight: 700;
    font-size: 14px;
    color: rgba(255,255,255,.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .game-hint{
    font-size: 12px;
    color: rgba(255,255,255,.7);
    margin-left: 10px;
    white-space: nowrap;
  }

  .game-frame{
    position:relative;
    width:100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 768px){
    .game-frame{ aspect-ratio: 9/16; }
  }

  .game-frame iframe{
    width:310px;
    height:100%;
    border:0;
    display:block;
    border-radius: 20px;
  }

  .game-mascot{
    position:absolute;
    right: -12px;
    top: -28px;
    width: 170px;
    max-width: 35vw;
    pointer-events:none;
    filter: drop-shadow(0 14px 24px rgba(0,0,0,.45));
    opacity: .95;
  }
  @media (max-width: 576px){
    .game-mascot{
      width: 120px;
      top: -18px;
      right: -10px;
      opacity: .9;
    }
  }

  .games-footer{
    display:flex;
    justify-content:center;
    padding: 18px 0 8px;
    color: rgba(255,255,255,.75);
    font-size: 12px;
  }

  .games-footer a{
    color: rgba(255,255,255,.9);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,.35);
  }
  .games-footer a:hover{
    border-bottom-color: rgba(255,255,255,.75);
  }

  .bg-campo{
    background: url('/main/assets/img/Fondo-Stadium.jpg') no-repeat center center fixed;
    background-size: cover;
  }
  