.wsnn-games-archive {
  background: #f5f6f8;
  padding-top: 0;
}

.wsnn-games-archive .wsnn-game-card {
  display: grid !important;
  grid-template-columns: 220px 1fr 160px !important;
  align-items: center !important;
  gap: 28px !important;
  padding: 24px 28px !important;
  margin-bottom: 18px !important;
  background: #fff !important;
  border: 1px solid #d9dde3 !important;
  border-left: 5px solid #d1d5db !important;
  border-radius: 14px !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05) !important;
  transition: all 0.2s ease;
}

.wsnn-games-archive .wsnn-game-card.is-final {
  border-left-color: #111827 !important;
}

.wsnn-games-archive .wsnn-game-card.is-live {
  border-left-color: #d71920 !important;
}

.wsnn-games-archive .wsnn-game-card.is-upcoming {
  border-left-color: #9ca3af !important;
}

.wsnn-games-archive .wsnn-game-card:hover,
.wsnn-games-archive .wsnn-game-card:focus-within {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,0.09) !important;
}

.wsnn-games-archive .wsnn-game-meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  min-width: 180px;
  font-size: 12px;
  color: #6b7280;
}

.wsnn-games-archive .wsnn-game-date {
  font-weight: 600;
  margin-bottom: 4px;
}

.wsnn-games-archive .wsnn-game-league {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 700;
  text-transform: uppercase;
}

.wsnn-games-archive .wsnn-status {
  display: inline-block !important;
  width: fit-content;
  padding: 4px 10px !important;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 6px;
}

.wsnn-games-archive .wsnn-status.final {
  background: #111 !important;
  color: #fff !important;
}

.wsnn-games-archive .wsnn-status.live {
  background: #d71920 !important;
  color: #fff !important;
  font-weight: 800 !important;
  box-shadow: 0 0 0 0 rgba(215, 25, 32, .42);
  animation: wsnn-live-pulse 1.8s ease-in-out infinite;
}

.wsnn-games-archive .wsnn-status.upcoming {
  background: #9ca3af !important;
  color: #fff !important;
}

.wsnn-games-archive .wsnn-game-main {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 28px !important;
  width: 100%;
}

.wsnn-games-archive .wsnn-team {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #111827;
  white-space: nowrap;
}

.wsnn-games-archive .wsnn-team.home {
  text-align: right !important;
}

.wsnn-games-archive .wsnn-team.away {
  text-align: left !important;
}

.wsnn-games-archive .wsnn-team.is-winner {
  color: #d71920 !important;
  font-weight: 900 !important;
}

.wsnn-games-archive .wsnn-team.is-winner::after {
  content: " WIN";
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #d71920;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  vertical-align: middle;
}

.wsnn-games-archive .wsnn-team.is-loser {
  color: #6b7280 !important;
}

.wsnn-games-archive .wsnn-score {
  font-size: 36px !important;
  font-weight: 900 !important;
  letter-spacing: 1px;
  color: #111827;
  text-align: center !important;
  white-space: nowrap;
}

.wsnn-games-archive .wsnn-score-home.is-winner,
.wsnn-games-archive .wsnn-score-away.is-winner {
  color: #d71920 !important;
  font-weight: 950 !important;
}

.wsnn-games-archive .wsnn-score-home.is-loser,
.wsnn-games-archive .wsnn-score-away.is-loser {
  color: #9ca3af !important;
}

.wsnn-games-archive .wsnn-score-separator {
  color: #111827;
}

.wsnn-games-archive .wsnn-game-cta {
  min-width: 160px;
  text-align: right !important;
}

.wsnn-games-archive .wsnn-read-report {
  display: inline-block !important;
  padding: 10px 16px !important;
  border: 1px solid #d71920 !important;
  border-radius: 999px !important;
  background: #d71920 !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.wsnn-games-archive .wsnn-read-report:hover,
.wsnn-games-archive .wsnn-read-report:focus-visible {
  background: #b9151b !important;
  border-color: #b9151b !important;
  color: #fff !important;
}

@keyframes wsnn-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(215, 25, 32, .42);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(215, 25, 32, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(215, 25, 32, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wsnn-games-archive .wsnn-status.live {
    animation: none;
  }
}

@media (max-width: 768px) {
  .wsnn-games-archive .wsnn-game-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 20px !important;
  }

  .wsnn-games-archive .wsnn-game-main {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 12px !important;
    width: 100%;
  }

  .wsnn-games-archive .wsnn-team {
    font-size: 15px !important;
    white-space: normal;
    text-align: center !important;
  }

  .wsnn-games-archive .wsnn-team.home,
  .wsnn-games-archive .wsnn-team.away {
    text-align: center !important;
  }

  .wsnn-games-archive .wsnn-score {
    font-size: 24px !important;
  }

  .wsnn-games-archive .wsnn-game-cta {
    width: 100%;
    text-align: right !important;
  }
}

.wsnn-games-archive .wsnn-game-card {
  display: grid !important;
  grid-template-columns: 220px minmax(0, 1fr) 160px !important;
  align-items: center !important;
  gap: 28px !important;
  width: 100%;
  box-sizing: border-box;
  padding: 24px 28px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid #d9dde3;
  border-left: 5px solid #111827;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.wsnn-games-archive .wsnn-game-card.is-live {
  border-left-color: #d71920 !important;
}

.wsnn-games-archive .wsnn-game-card.is-upcoming {
  border-left-color: #9ca3af !important;
}

.wsnn-games-archive .wsnn-game-main {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 28px !important;
}

.wsnn-games-archive .wsnn-team.home {
  text-align: right !important;
}

.wsnn-games-archive .wsnn-team.away {
  text-align: left !important;
}

.wsnn-games-archive .wsnn-score {
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 8px !important;
  font-size: 36px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.wsnn-games-archive .wsnn-score-home.is-winner,
.wsnn-games-archive .wsnn-score-away.is-winner {
  color: #d71920 !important;
  font-weight: 900 !important;
}

.wsnn-games-archive .wsnn-score-home.is-loser,
.wsnn-games-archive .wsnn-score-away.is-loser {
  color: #6b7280 !important;
}

.wsnn-games-archive .wsnn-read-report {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #d71920 !important;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .wsnn-games-archive .wsnn-game-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .wsnn-games-archive .wsnn-game-main {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .wsnn-games-archive .wsnn-team.home,
  .wsnn-games-archive .wsnn-team.away {
    text-align: center !important;
  }
}
