.tailgate-schedule {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
  font-family: system-ui, sans-serif;
}

.game {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.game:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.game-date {
  font-weight: 600;
  color: #333;
  padding-right: .5rem;
}

.game-opponent {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.game-opponent img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
}

.opponent-name {
  font-weight: 600;
  color: #333;
}

/* Past games */
.game.past {
  background-color: #f3f3f3;
  color: #666;
}

.game.past .game-opponent img {
  opacity: 0.6;
}

.badge-final {
  background: #000;
  color: #f1b82d;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-right: 6px;
}

/* Upcoming (default) */
.game.upcoming {
  background-color: #fff;
}

/* Next upcoming game */
.game.next {
  background-color: #e8f4ff;
  border: 2px solid #f1b82d;
  transform: scale(1.02);
  padding: 1.5rem;
}

.game.next .game-date,
.game.next .opponent-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #666;
}

.game.next .game-opponent img {
  width: 64px;
  height: 64px;
}

/* Game results column */
.game-result {
  text-align: right;
  color: #666;
  font-weight: 600;
}

/* Hide opponent logos on mobile */
@media (max-width: 600px) {
  .tailgate-schedule .game-opponent img {
    display: none;
  }
}