/* Game hero wrapper */
.game-hero {
    background: var(--white);
    color: var(--invert-black);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
  }
  
  /* Scoreboard row */
  .game-scoreboard {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
  }
  
  /* Team blocks */
  .game-team-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  
  .game-team-block--home {
    text-align: left;
  }
  
  .game-team-block--away {
    text-align: right;
  }
  
  /* Team info */
  .game-team-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .game-team-info--right {
    flex-direction: row-reverse;
  }
  
  .game-team-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
  }
  
  .game-team-name--right {
    text-align: right;
  }
  
  .game-team-meta {
    margin: 2px 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  /* Logos */
  .scores-team-logo {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: contain;
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.6);
  }
  
  /* Scores */
  .game-team-score {
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 1px;
    min-width: 2.5ch;
    text-align: center;
  }
  
  /* Center VS/status */
  .game-score-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  
  .game-score-vs {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .game-status-pill {
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.7);
  }
  
  /* Meta row under hero */
  .game-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    padding-top: 10px;
  }
  
  .game-meta-item {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
  }
  
  .game-meta-item--right {
    margin-left: auto;
  }
  
  .game-meta-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    opacity: 0.7;
  }
  
  .game-meta-value {
    font-weight: 600;
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .game-scoreboard {
      grid-template-columns: 1fr;
    }
    .game-team-block--home,
    .game-team-block--away {
      justify-content: space-between;
    }
    .game-team-info--right {
      flex-direction: row;
    }
    .game-team-name--right {
      text-align: left;
    }
  }
  