/* Shared lobby kit. Prefix pbn- is not salted / not in CMS Skin::CLASSES. */
.pbn-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.1rem 1.35rem;
  text-align: left;
  padding: 1.35rem 1.5rem;
}
.pbn-cta .pbn-cta-logo,
.pbn-cta > a:has(img) {
  line-height: 0;
  justify-self: start;
}
.pbn-cta-logo-img,
.pbn-cta img[alt$="logo"] {
  width: 88px;
  height: 88px;
  margin: 0;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 6px 16px rgba(0,0,0,.28);
}
.pbn-cta-copy { min-width: 0; }
.pbn-cta-copy h3,
.pbn-cta h3 {
  margin: 0 0 .28rem;
  text-align: left;
  line-height: 1.25;
}
.pbn-cta-copy p,
.pbn-cta p {
  margin: 0;
  max-width: none;
  text-align: left;
  line-height: 1.5;
}
.pbn-cta .pbn-play { justify-self: end; min-width: 168px; margin: 0; }

.pbn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f3d98a 0%, #d4a63a 42%, #a87416 100%);
  color: #2a1408 !important;
  text-shadow: 0 1px 0 rgba(255,236,180,.55);
  border: 1px solid #8a5a12;
  border-radius: 11px;
  font-weight: 800;
  letter-spacing: .4px;
  text-decoration: none;
  padding: .85rem 1.6rem;
  box-shadow:
    inset 0 1px 0 rgba(255,245,200,.85),
    inset 0 -3px 0 rgba(90,48,6,.38),
    0 4px 0 #6a4510,
    0 10px 18px rgba(70,22,8,.28);
  transform: translateY(0);
  transition: transform .12s ease, box-shadow .12s ease;
}
.pbn-play:hover {
  background: linear-gradient(180deg, #ffe9a4 0%, #e0b445 48%, #b7831c 100%);
  transform: translateY(-2px);
  color: #2a1408 !important;
}
.pbn-play:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 1px 0 rgba(255,245,200,.5),
    inset 0 -2px 0 rgba(90,48,6,.4),
    0 1px 0 #6a4510,
    0 4px 8px rgba(70,22,8,.22);
}

.pbn-games { margin: 1.4rem 0; }
.pbn-games-grid { display: grid; gap: 1rem; }
.pbn-game-card {
  display: grid;
  grid-template-columns: 168px 1fr;
  grid-template-rows: auto auto 1fr auto;
  column-gap: 1.15rem;
  align-items: start;
  padding: 1rem 1.15rem 1.1rem;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(128,128,128,.22);
}
.pbn-game-shot {
  display: block;
  grid-row: 1 / 5;
  width: 168px;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: #140c0a;
}
.pbn-game-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pbn-game-card h3 {
  grid-column: 2;
  margin: 0 0 .4rem;
  font-size: 1.12rem;
  line-height: 1.25;
}
.pbn-game-card p {
  grid-column: 2;
  margin: 0 0 .55rem;
  font-size: .92rem;
  line-height: 1.6;
}
.pbn-game-card .pbn-play { grid-column: 2; justify-self: start; min-width: 0; }

@media (max-width: 768px) {
  .pbn-cta { grid-template-columns: 72px minmax(0,1fr); padding: 1.15rem 1.1rem 1.25rem; }
  .pbn-cta-logo-img, .pbn-cta img[alt$="logo"] { width: 72px; height: 72px; }
  .pbn-cta .pbn-play { grid-column: 1 / -1; justify-self: stretch; width: 100%; min-width: 0; }
  .pbn-game-card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .pbn-game-shot { grid-row: auto; width: min(220px, 70%); }
  .pbn-game-card h3, .pbn-game-card p, .pbn-game-card .pbn-play { grid-column: 1; }
  .pbn-game-card .pbn-play { justify-self: stretch; width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .pbn-play, .pbn-play:hover { transform: none; }
}
