body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #0f172a;
  color: #e5e7eb;
}

h1 {
  text-align: center;
  padding: 20px;
}

.year-section { padding: 20px; }
.year-title { font-size: 24px; margin-bottom: 10px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.card {
  background: #1e293b;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
}

.card:hover { transform: scale(1.05); }

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-info { padding: 10px; font-size: 12px; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #1e293b;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  display: flex;
  align-items: flex-start;
  padding: 20px;
  gap: 20px;
}

.modal img {
  width: 200px;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}
.modal-details { flex: 1; }

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  cursor: pointer;
}

/* иконки сторов */
.store-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.store-links img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.2s;

  /* делаем иконки одноцветными */
  filter: brightness(0) invert(1); /* белый цвет */
}

.store-links img:hover {
  opacity: 1;
  transform: scale(1.1);

  /* можно слегка подсветить */
  filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255,255,255,0.5));
}

.store-links img:hover {
  opacity: 1;
  transform: scale(1.1);
}