body {
  font-family: 'Segoe UI', sans-serif;
  background: #f0f2f5;
  margin: 0;
  padding: 20px;
}
h1 {
  text-align: center;
  color: #333;
}
.pack-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.pack {
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s;
}
.pack:hover {
  transform: translateY(-5px);
}
.pack img {
  width: 100%;
  border-radius: 8px;
}
.pack h2 {
  margin: 10px 0 5px;
  font-size: 1.1em;
  color: #222;
}
.pack a {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  transition: background 0.2s;
}
.pack a.github {
  background: #4CAF50;
}
.pack a.modrinth {
  background: #FF6600;
}
.pack a:hover {
  opacity: 0.9;
}