/* Screenshots grid styles */
.screenshot-item {
  position: relative;
  background-color: #1e293b;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.screenshot-item:hover {
  transform: scale(1.05);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Lightbox styles */
.lightbox-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.lightbox-close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}