* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  padding: 1rem;
  background: #131313;
  color: #111;
}

/* Статичный каунтер */
.counter {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Галерея Grid */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

/* Изображения */
.gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

/* Адаптивность */
@media (min-width: 480px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  touch-action: none;
  transform-origin: 0 0; /* Важно для свободного зума */
  transition: transform 0.2s ease;
  will-change: transform;
}
