/* Desktop games route: show one real lobby/provider card per provider. */
@media screen and (min-width: 901px) {
  html body #root .player-shell .game-provider-filter,
  html body #root .guest-shell .game-provider-filter {
    display: none !important;
  }

  html body #root .player-shell .provider-list,
  html body #root .guest-shell .provider-list {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 16px !important;
    min-height: 0 !important;
    padding: 18px 0 36px !important;
    align-items: start !important;
  }

  html body #root .player-shell .provider-list > .provider-section,
  html body #root .guest-shell .provider-list > .provider-section {
    display: grid !important;
    grid-template-rows: auto 1fr !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 10px !important;
    overflow: hidden !important;
    border: 1px solid #dfcfaa !important;
    border-radius: 16px !important;
    background: rgba(255, 253, 247, .94) !important;
    box-shadow: 0 7px 20px rgba(92, 65, 22, .07) !important;
  }

  html body #root .player-shell .provider-section .provider-heading,
  html body #root .guest-shell .provider-section .provider-heading {
    min-width: 0 !important;
    margin: 0 0 8px !important;
    padding: 0 2px !important;
  }

  html body #root .player-shell .provider-section .provider-heading > div,
  html body #root .guest-shell .provider-section .provider-heading > div {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  html body #root .player-shell .provider-section .provider-heading strong,
  html body #root .guest-shell .provider-section .provider-heading strong {
    overflow: hidden !important;
    font-size: 15px !important;
    line-height: 20px !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  html body #root .player-shell .provider-section .provider-heading > button,
  html body #root .guest-shell .provider-section .provider-heading > button {
    display: none !important;
  }

  html body #root .player-shell .provider-section .game-grid,
  html body #root .guest-shell .provider-section .game-grid {
    display: block !important;
    min-width: 0 !important;
  }

  html body #root .player-shell .provider-section .game-card,
  html body #root .guest-shell .provider-section .game-card {
    display: none !important;
  }

  html body #root .player-shell .provider-section .game-card:first-child,
  html body #root .guest-shell .provider-section .game-card:first-child {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: #fffaf0 !important;
    box-shadow: none !important;
    cursor: pointer !important;
  }

  html body #root .player-shell .provider-section .game-card:first-child .cover,
  html body #root .guest-shell .provider-section .game-card:first-child .cover {
    aspect-ratio: 2.25 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #fff8e7, #ead9ad) !important;
  }

  html body #root .player-shell .provider-section .game-card:first-child .cover img,
  html body #root .guest-shell .provider-section .game-card:first-child .cover img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
  }

  html body #root .player-shell .provider-section .game-card:first-child .game-meta,
  html body #root .guest-shell .provider-section .game-card:first-child .game-meta,
  html body #root .player-shell .provider-section .game-card:first-child .status,
  html body #root .guest-shell .provider-section .game-card:first-child .status,
  html body #root .player-shell .provider-section .game-card:first-child .heart,
  html body #root .guest-shell .provider-section .game-card:first-child .heart {
    display: none !important;
  }
}

@media screen and (min-width: 901px) and (max-width: 1280px) {
  html body #root .player-shell .provider-list,
  html body #root .guest-shell .provider-list {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
