/* Shared brand, game-card, and editorial refinements. */
.brand-logo {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  object-fit: contain;
  padding: 2px;
  background: #ffffff;
  border: 1px solid #d4d4d8;
  border-radius: 6px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #09090b;
  font-size: 15px;
  font-weight: 800;
}

.footer-brand .brand-logo {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}

a.group > div.relative.aspect-square {
  overflow: hidden;
  border: 1px solid #d4d4d8;
  border-radius: 8px !important;
  background: #f4f4f5 !important;
  box-shadow: 0 2px 8px rgba(9, 9, 11, 0.08);
}

a.group > div.relative.aspect-square > img {
  transition: transform 180ms ease;
}

a.group:hover > div.relative.aspect-square > img {
  transform: scale(1.025);
}

.game-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  max-width: calc(100% - 20px);
  overflow: hidden;
  padding: 4px 8px;
  color: #ffffff;
  background: rgba(9, 9, 11, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-copy {
  max-width: 860px;
}

.game-copy p {
  margin-top: 10px;
}

.game-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.game-guide-item {
  min-height: 132px;
  padding: 18px;
  background: #f4f4f5;
  border: 1px solid #d4d4d8;
  border-radius: 8px;
}

.game-guide-item h3 {
  margin-bottom: 8px;
  color: #09090b;
  font-size: 14px;
  font-weight: 800;
}

.game-guide-item p,
.game-guide-item ol {
  color: #52525b;
  font-size: 14px;
  line-height: 1.65;
}

.game-guide-item ol {
  padding-left: 20px;
}

.legal-copy {
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 24px 52px;
}

.legal-copy section + section {
  margin-top: 28px;
}

.legal-copy h2 {
  margin-bottom: 8px;
  color: #09090b;
  font-size: 20px;
  font-weight: 800;
}

.legal-copy p,
.legal-copy li {
  color: #3f3f46;
  font-size: 15px;
  line-height: 1.75;
}

.legal-copy ul {
  padding-left: 20px;
  list-style: disc;
}

.legal-copy a {
  color: #15803d;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .brand-logo {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .game-guide-grid {
    grid-template-columns: 1fr;
  }

  .game-guide-item {
    min-height: auto;
  }

  .legal-copy {
    padding: 28px 16px 40px;
  }
}
