.cosplay-games-main {
  max-width: 650px;
  margin: 0 auto;
  padding: 28px 0 18px 0;
}

.cosplay-games-desc {
  color: #32096c;
  margin-bottom: 20px;
  font-size: 1.01em;
}

.cosplay-games-yearblock {
  margin-bottom: 28px;
}

.cosplay-games-yearblock h2 {
  color: #6c2eb6;
  font-size: 1.13em;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-shadow: 0 0 2px #b47cff, 0 0 8px #fff200;
}

.cosplay-games-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 18px;
  margin-bottom: 12px;
  justify-content: flex-start;
}

.cosplay-games-card {
  width: 180px;
  background: #ffe066;
  border: 2px dashed #6c2eb6;
  border-radius: 12px;
  box-shadow: 0 1px 8px #b47cff22;
  padding: 8px 6px 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 7px;
  transition: border 0.18s, box-shadow 0.18s;
}
.cosplay-games-card img {
  width: 160px;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid #b47cff;
  margin-bottom: 6px;
  background: #fffde7;
  box-shadow: 0 0 5px #b47cff33;
}
.cosplay-games-caption {
  color: #32096c;
  font-size: 0.97em;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .cosplay-games-card img {
    width: 90%;
    height: auto;
    max-height: 350px;
    min-height: 200px;
  }
  .cosplay-games-card {
    width: 47vw;
    min-width: 120px;
    max-width: 210px;
  }
  .cosplay-games-card img {
    width: 90%;
    height: auto;
    min-height: 200px;
    max-height: 350px;
  }
}