/* LOTORA — all games page styles */

/* Section 4 — game catalogue */
.catalogue {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.category { display: flex; flex-direction: column; gap: 24px; }
.category__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 12px;
}
.category__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--primary);
}
.category__rule { height: 1px; background: var(--primary); opacity: 0.1; }
.catalogue__grid { display: flex; flex-direction: column; gap: 24px; }
.catalogue__row { display: flex; gap: 24px; }

/* Catalogue draw game cards (400x320, white) */
.game-card--cat {
  flex: none;
  width: 400px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(27, 43, 107, 0.04);
  gap: 20px;
}
.game-card--cat .game-card__name { font-size: 20px; }
.game-card--cat .game-card__price { font-size: 16px; }
.game-card__title-row { display: flex; align-items: center; gap: 8px; }
.game-badge {
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--navy-deep);
  font-size: 10px;
  font-weight: 700;
}
.game-card--cat .game-card__balls { gap: 8px; }
.game-card--cat .game-card__claim {
  width: 180px;
  font-size: 10px;
  color: var(--muted);
}
.game-card--cat .game-card__bottom .btn {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
}

/* Catalogue balls */
.ball--36 { width: 36px; height: 36px; font-size: 15px; }
.ball--lead {
  width: 42px;
  height: 42px;
  border-radius: 18px;
  font-size: 18px;
}

/* Catalogue instant cards (400x258) */
.catalogue .instant-card { flex: none; width: 400px; }
.catalogue .instant-card .game-card__facts { gap: 6px; }
.catalogue .instant-card .game-card__fact { font-size: 12px; }

/* Pagination */
.pagination {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ebedf2;
  color: #8c94a6;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-btn:hover { background: #dfe2ea; }
.page-btn.active { background: #1c2145; color: #ffffff; font-weight: 700; }
.page-ellipsis {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c94a6;
  font-size: 14px;
}
