/* css/images.css
   Контейнеры для изображений (игры/товары/карусель/фон)
   Вынесено из style.css без изменения содержимого правил. */

/* ===== КВАДРАТНЫЕ КОНТЕЙНЕРЫ ДЛЯ ИЗОБРАЖЕНИЙ ===== */
.game-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2f5a;
}
.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  background: #2a2f5a;
  border-radius: 16px;
  overflow: hidden;
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.product-detail-image {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 8px;
  background: transparent;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}

.quick-game-img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
}

.admin-game-img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
}
.logo-img {
  height: 80px;
  vertical-align: middle;
  border-radius: 12px;
}


/* ===== ФОНОВЫЕ ИЗОБРАЖЕНИЯ ===== */
.bg-image-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-image-contain {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

