body {
  background: linear-gradient(180deg, #ffffff, #faf7f2);
  font-family: 'Poppins', sans-serif;
}

.vsgp-header {
  text-align: center;
  margin: 20px 0;
}

.vsgp-header h1 {
  color: #d4af37;
  margin-bottom: 10px;
}

#vsgp-search {
  width: 60%;
  padding: 10px;
  border: 1px solid #d4af37;
  border-radius: 20px;
  text-align: center;
}

.vsgp-filters {
  margin-top: 15px;
}

.vsgp-filters button {
  background: #fff;
  border: 1px solid #d4af37;
  color: #d4af37;
  border-radius: 20px;
  padding: 8px 16px;
  margin: 0 4px;
  cursor: pointer;
  transition: 0.3s;
}

.vsgp-filters button:hover {
  background: #d4af37;
  color: #fff;
}

.vsgp-gallery {
  columns: 4 250px;
  column-gap: 1rem;
  padding: 20px;
}

.vsgp-item {
  position: relative;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #d4af37;
  display: none;
}

.vsgp-item img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.vsgp-download {
  display: block;
  text-align: center;
  background: #d4af37;
  color: #fff;
  font-weight: 600;
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 12px 12px;
  transition: all 0.3s;
}

.vsgp-download:hover {
  background: #fff;
  color: #d4af37;
  border: 1px solid #d4af37;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.vsgp-footer {
  text-align: center;
  margin: 30px 0;
  color: #d4af37;
  font-weight: 500;
}
