.notice-card {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #ffffff, #f1f5ff);
}
.notice-counts { display: flex; gap: 12px; }
.notice-counts > div {
  min-width: 100px;
  text-align: center;
  padding: 14px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
}
.notice-counts strong { display: block; font-size: 1.7rem; }
.notice-counts span { color: var(--muted); font-size: .82rem; }

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.game-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(31,45,76,.08);
}
.game-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #dce5ff, #f5e6ff);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: .12em;
  color: #50617f;
}
.game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-card-body { padding: 18px; }
.game-card-body h3 { margin: 10px 0 8px; }
.team-chip {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef2ff;
  color: #425bd6;
  font-size: .8rem;
  font-weight: 800;
}
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }

@media (max-width: 900px) { .game-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .notice-card { align-items: stretch; flex-direction: column; }
  .notice-counts { width: 100%; }
  .notice-counts > div { flex: 1; min-width: 0; }
  .game-grid { grid-template-columns: 1fr; }
}
