.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.gallery-card {
  background: #111;
  border: 1px solid #00ff88;
  padding: 0px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.catgf-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-bottom: 1px solid #00ff88;
}

.gallery-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
}

.profile-pic {
  width: 32px;
  height: 32px;
  border-radius: 0;
  object-fit: cover;
  border: 1px solid #00ff88;
}

.user-info {
  flex: 1;
}

.username {
  font-size: 0.75rem;
  color: #00ff88;
}

.persona-name {
  font-size: 0.7rem;
  color: #aaa;
  line-height: 1.2;
}

#loadMoreGallery {
  background: #00ff88;
  color: black;
  font-family: monospace;
  font-size: 0.9rem;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin: 10px auto 20px auto;
  display: block;
}

.detail-view {
  padding: 20px;
  text-align: center;
  color: white;
}

.detail-view h2 {
  color: #00ff88;
}

.detail-view button {
  background: #00ff88;
  color: black;
  border: none;
  padding: 10px 15px;
  margin-bottom: 20px;
  cursor: pointer;
  font-family: monospace;
}
