/* ================================================================
   Game Page — game-page.css
   Uses design tokens from tokens.css. Mobile-first.
   Prefix: gp-
   ================================================================ */

/* Override app container for game page (wider than default 28rem) */
.gp-body .app {
  max-width: none;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
}

.gp-body .ds-main {
  max-width: 64rem;
  margin-inline: auto;
  gap: 0;
}

/* ---- Breadcrumb ---- */
.gp-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-breadcrumb__list > li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.gp-breadcrumb__list > li:not(:last-child)::after {
  content: '/';
  font-size: 0.6rem;
  opacity: 0.5;
}

.gp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0 0.75rem;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.gp-breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}

.gp-breadcrumb a:hover {
  color: var(--primary);
}

.gp-breadcrumb__sep {
  font-size: 0.6rem;
  opacity: 0.5;
}

.gp-breadcrumb__current {
  color: var(--text-muted);
}

/* ---- Hero Banner ---- */
.gp-hero-banner {
  position: relative;
  margin: 0 -1.125rem 0;
  padding: 0 1.125rem;
  overflow: hidden;
}

.gp-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gp-cover-bg);
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.45) saturate(1.6);
  transform: scale(1.1);
  z-index: 0;
}

.gp-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(10,10,18,0.85) 100%);
  z-index: 1;
}

.gp-hero-banner > .gp-hero {
  position: relative;
  z-index: 2;
}

/* ---- Hero ---- */
.gp-hero {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0 1rem;
}

/* Badge above title */
.gp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.45);
  font-size: 0.65rem;
  font-weight: 700;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gp-hero__badge .ds-mso {
  font-size: 0.9rem;
  color: #d4af37;
}

.gp-hero__badge-sep {
  opacity: 0.6;
  font-weight: 400;
}

/* Right column (hidden on mobile) */
.gp-hero__right {
  display: none;
}

/* Stats inside hero (desktop only) — hidden on mobile */
.gp-stats.gp-stats--hero {
  display: none;
}

/* Mobile-only stats/ctas (shown below hero) */
.gp-stats--mobile {
  display: grid;
  padding-top: 1rem;
}

.gp-hero-ctas--mobile {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

/* Secondary CTA (Ler veredicto) — compound selector beats base .gp-main-cta */
.gp-main-cta.gp-main-cta--secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  box-shadow: none;
}

.gp-main-cta.gp-main-cta--secondary:hover {
  background: var(--surface-2);
  border-color: var(--primary-border);
  color: var(--text);
}

/* Hero action buttons (desktop) */
.gp-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.gp-hero__action-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.72rem 1.1rem;
  border-radius: var(--radius-lg);
  background: var(--primary);
  color: var(--primary-btn-text);
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
  box-shadow: var(--shadow-btn-primary);
  white-space: nowrap;
}

.gp-hero__action-primary:hover {
  background: var(--primary-hover);
  text-decoration: none;
}

.gp-hero__action-price {
  font-weight: 400;
  opacity: 0.85;
  font-size: 0.78rem;
}

.gp-hero__action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.gp-hero__action-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: var(--text);
  text-decoration: none;
}

.gp-hero__action-secondary .ds-mso {
  font-size: 1rem;
}

/* Force light text inside hero banner (always dark background) */
.gp-hero-banner .gp-hero__title {
  color: #fff;
}

.gp-hero-banner .gp-hero__sub {
  color: rgba(255,255,255,0.65);
}

.gp-hero-banner .gp-hero__pill {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
}

.gp-hero-banner .gp-cover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

.gp-cover {
  flex-shrink: 0;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #2d6a4f, #40916c, #74c69d);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.gp-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-conic-gradient(rgba(255,255,255,0.04) 0% 25%, transparent 0% 50%) 0 0 / 1.2rem 1.2rem;
  opacity: 0.5;
}

.gp-cover--has-img::before {
  display: none;
}

.gp-cover--has-img {
  background: #12121a;
  padding: 0;
  cursor: zoom-in;
}

.gp-cover__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 1;
  border-radius: inherit;
  display: block;
}

.gp-cover--has-img .gp-cover__name {
  display: none;
}

.gp-cover__name {
  position: relative;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  line-height: 1.2;
}

.gp-hero__info {
  flex: 1;
  min-width: 0;
}

.gp-hero__title {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
}

.gp-hero__sub {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.gp-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.gp-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
}

.gp-hero__pill .ds-mso {
  font-size: 0.85rem;
}

.gp-hero__pill-best {
  color: #4ade80;
  font-weight: 700;
}

/* ---- Page Anchors ---- */
.gp-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 0 1.25rem;
}

.gp-page-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.38rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.gp-page-nav__link:hover {
  background: var(--surface-2);
  border-color: var(--primary-border);
  color: var(--text);
  text-decoration: none;
}

.gp-page-nav__link .ds-mso {
  font-size: 0.95rem;
}

/* ---- Stat Cards ---- */
.gp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  padding-bottom: 1.5rem;
}

.gp-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  justify-content: center;
  min-height: 5.35rem;
  box-sizing: border-box;
}

.gp-stat-card__value {
  font-family: var(--font-headline);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--text);
}

.gp-stat-card__label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.gp-stat-card__sub {
  font-size: 0.6rem;
  color: var(--text-dim);
}

/* ---- Main CTA ---- */
.gp-main-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--primary);
  color: var(--primary-btn-text);
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.08s;
  box-shadow: var(--shadow-btn-primary);
}

.gp-main-cta:hover {
  background: var(--primary-hover);
  text-decoration: none;
}

.gp-main-cta:active {
  transform: scale(0.98);
}

/* ---- Sections ---- */
.gp-section {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.gp-section--return-card {
  padding-top: 1.875rem;
}

.gp-eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

.gp-section__body {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.gp-section__body p {
  margin: 0 0 0.85rem;
}

.gp-section__body p:last-child {
  margin-bottom: 0;
}

/* ---- Verdict Callout ---- */
.gp-verdict {
  position: relative;
  padding: 1.125rem 1.25rem;
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: linear-gradient(90deg, var(--primary-soft), transparent 70%);
}

.gp-verdict__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b9bbff;
}

.gp-verdict__eyebrow .ds-mso {
  font-size: 0.9rem;
  color: var(--primary);
}

.gp-verdict__body {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Structured verdict */
.gp-verdict__summary {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.gp-verdict__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (max-width: 540px) {
  .gp-verdict__cols { grid-template-columns: 1fr; }
}

.gp-verdict__col-title {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gp-verdict__col-title--pos { color: var(--success); }
.gp-verdict__col-title--att { color: #f59e0b; }

.gp-verdict__col-title .ds-mso {
  font-size: 0.85rem;
}

.gp-verdict__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gp-verdict__item {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.gp-verdict__item .ds-mso {
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.gp-verdict__item--pos .ds-mso { color: var(--success); }
.gp-verdict__item--att .ds-mso { color: #f59e0b; }

.gp-verdict__badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gp-verdict__badge--green  { background: var(--success-soft);           border: 1px solid var(--success-border); color: var(--success); }
.gp-verdict__badge--blue   { background: var(--primary-soft);           border: 1px solid var(--primary-border); color: var(--primary); }
.gp-verdict__badge--yellow { background: rgba(245,158,11,0.12);         border: 1px solid rgba(245,158,11,0.3);  color: #f59e0b; }
.gp-verdict__badge--orange { background: rgba(239,68,68,0.10);          border: 1px solid rgba(239,68,68,0.25);  color: #ef4444; }

/* ---- Manual Row ---- */
.gp-manual {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.gp-manual--highlight {
  background: var(--primary-soft);
  border-color: var(--primary-border);
}

.gp-manual--highlight .gp-manual__icon {
  background: var(--premium-soft);
  color: var(--premium);
}

.gp-manual__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-md);
  background: rgba(236, 79, 156, 0.18);
  color: var(--premium);
}

.gp-manual__icon .ds-mso {
  font-size: 1.15rem;
}

.gp-manual__info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.gp-manual__info span {
  font-size: 0.65rem;
  color: var(--text-dim);
}

.gp-manual__badge {
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-pill);
  background: var(--success-soft);
  border: 1px solid var(--success-border);
  color: var(--success);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gp-manual__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}

.gp-manual__link:hover {
  background: rgba(124, 127, 247, 0.2);
}

.gp-manual__link--primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-btn-text);
  box-shadow: var(--shadow-btn-primary);
}

.gp-manual__link--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--primary-btn-text);
  text-decoration: none;
}

/* ---- Rules videos (BGG / Ludopedia) ---- */
.gp-rules-videos__locale {
  margin: 0 0 0.65rem;
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.gp-rules-videos {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.gp-rules-videos__card {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.55rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-elevated, var(--surface));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}

.gp-rules-videos__card:hover {
  border-color: var(--primary);
  text-decoration: none;
}

.gp-rules-videos__thumb {
  width: 7.5rem;
  height: 4.25rem;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--border);
}

.gp-rules-videos__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
}

.gp-rules-videos__thumb--placeholder .ds-mso {
  font-size: 2rem;
}

.gp-rules-videos__title {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.gp-rules-videos__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  color: var(--text-dim);
}

.gp-rules-videos__source {
  padding: 0.12rem 0.4rem;
  border-radius: var(--radius-pill);
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
}

.gp-rules-videos__cta {
  color: var(--primary);
  font-weight: 600;
}

@media (min-width: 40rem) {
  .gp-rules-videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gp-bgg-poll__meta {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  color: var(--text-dim);
}

.gp-player-count {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(4.25rem, 1fr));
  gap: 0.45rem;
}

.gp-player-count__item {
  display: grid;
  grid-template-rows: 1rem 2rem;
  gap: 0.25rem;
  min-width: 0;
}

.gp-player-count__num {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-dim);
  text-align: center;
}

.gp-player-count__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 2rem;
  padding: 0 0.45rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  color: #06110c;
  white-space: nowrap;
}

.gp-player-count__pill--best {
  background: var(--best, #2fa172);
}

.gp-player-count__pill--recommended {
  background: #65be4d;
}

.gp-player-count__pill--ok {
  background: var(--surface-3);
  color: var(--text-muted);
}

.gp-player-count__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  margin-top: 0.65rem;
  font-size: 0.62rem;
  color: var(--text-dim);
}

.gp-player-count__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.gp-player-count__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 99px;
}

.gp-player-count__dot--best {
  background: var(--best, #2fa172);
}

.gp-player-count__dot--recommended {
  background: #65be4d;
}

.gp-player-count__dot--ok {
  background: var(--surface-3);
  border: 1px solid var(--border-2);
}

/* ---- Tags ---- */
.gp-taxonomy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gp-tag-group__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-headline);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
}

.gp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gp-tag {
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
}
a.gp-tag:hover {
  opacity: 0.8;
}

.gp-tag--mechanic {
  background: var(--surface-3);
}

.gp-tag--category {
  background: var(--primary-soft);
  border-color: var(--primary-border);
  color: #b9bbff;
}

.gp-tag--family {
  background: rgba(236, 79, 156, 0.12);
  border-color: rgba(236, 79, 156, 0.28);
  color: #ffc1df;
}

/* ---- Credits (publisher, designers, artists) ---- */
.gp-credits {
  margin: 1.25rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 0.6rem;
}

.gp-credits__card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.2rem;
  padding: 0.75rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  min-width: 0;
}

.gp-credits__icon {
  font-size: 1.05rem;
  color: var(--primary);
  opacity: 0.7;
  margin-bottom: 0.15rem;
}

.gp-credits__label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  line-height: 1;
}

.gp-credits__value {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ---- Where to Buy ---- */
.gp-store-toggle {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.gp-store-toggle__btn {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.gp-store-toggle__btn--active {
  background: var(--surface-3);
  color: var(--text);
  border-color: var(--border-2);
}

.gp-stores {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gp-store-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.gp-store-row__info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.gp-store-row__info span {
  font-size: 0.65rem;
  color: var(--text-dim);
}

.gp-store-row__price {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.gp-store-row__link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--primary-btn-text);
  font-size: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.gp-store-row__link:hover {
  background: var(--primary-hover);
}

/* ---- Community Stats ---- */
.gp-community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.gp-community-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1rem;
  text-align: center;
}

.gp-community-card__value {
  display: block;
  font-family: var(--font-headline);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}

.gp-community-card__label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* ---- FAQ Accordion ---- */
.gp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gp-faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gp-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}

.gp-faq-item__q:hover {
  background: var(--surface-2);
}

.gp-faq-item__q .ds-mso {
  font-size: 1.1rem;
  color: var(--text-dim);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.gp-faq-item[open] .gp-faq-item__q .ds-mso {
  transform: rotate(180deg);
}

.gp-faq-item__a {
  padding: 0 1rem 0.85rem;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ---- Sidebar: Rules Assistant ---- */
.gp-assistant {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gp-assistant__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gp-assistant__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-md);
  background: rgba(74, 222, 128, 0.15);
  color: var(--success);
  flex-shrink: 0;
}

.gp-assistant__icon .ds-mso {
  font-size: 1.15rem;
}

.gp-assistant__title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.gp-assistant__desc {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.gp-assistant__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--primary-btn-text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: var(--shadow-btn-primary);
}

.gp-assistant__cta:hover {
  background: var(--primary-hover);
}

.gp-assistant__input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.gp-assistant__input-wrap span {
  font-size: 0.72rem;
  color: var(--text-dim);
  flex: 1;
}

.gp-assistant__input-wrap .ds-mso {
  font-size: 1rem;
  color: var(--primary);
}

.gp-assistant-chat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gp-assistant-chat__messages {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 16rem;
  overflow-y: auto;
  padding-right: 0.1rem;
}

.gp-assistant-chat__message {
  max-width: 92%;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-md);
  font-size: 0.74rem;
  line-height: 1.5;
  white-space: pre-wrap;
}

.gp-assistant-chat__message--user {
  align-self: flex-end;
  background: var(--primary);
  color: var(--primary-btn-text);
}

.gp-assistant-chat__message--assistant {
  align-self: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.gp-assistant-chat__message--rendered {
  white-space: normal;
}
.gp-assistant-chat__message--rendered p            { margin: 0 0 0.5rem; }
.gp-assistant-chat__message--rendered p:last-child { margin-bottom: 0; }
.gp-assistant-chat__message--rendered ul,
.gp-assistant-chat__message--rendered ol           { margin: 0.2rem 0 0.5rem 1.1rem; padding: 0; }
.gp-assistant-chat__message--rendered li           { margin-bottom: 0.2rem; }
.gp-assistant-chat__message--rendered strong       { font-weight: 700; color: var(--text); }
.gp-assistant-chat__message--rendered em           { font-style: italic; }
.gp-assistant-chat__message--rendered a            { color: var(--primary); text-decoration: underline; word-break: break-all; }
.gp-assistant-chat__message--rendered h3,
.gp-assistant-chat__message--rendered h4           { margin: 0.5rem 0 0.2rem; font-size: 0.85rem; font-weight: 700; color: var(--text); }
.gp-assistant-chat__message--rendered img          { max-width: 100%; max-height: 180px; border-radius: var(--radius-md); display: block; margin: 0.5rem 0; object-fit: contain; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); }

.gp-assistant-chat__message--typing {
  color: var(--text-dim);
}

.gp-assistant-chat__question {
  width: 100%;
  min-height: 5.25rem;
  max-height: 9.5rem;
  resize: none;
  padding: 0.65rem 0.7rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.45;
}

.gp-assistant-chat__question:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.gp-assistant-chat__question::placeholder {
  color: var(--text-dim);
}

.gp-assistant-chat__meta,
.gp-assistant-chat__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.gp-assistant-chat__meta {
  justify-content: space-between;
  font-size: 0.62rem;
  color: var(--text-dim);
}

.gp-assistant-chat__tts {
  min-height: 0;
}

.bgbot-assistant-tts-bar--game {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.bgbot-assistant-tts-action--game {
  margin-top: 0.45rem;
}

.gp-assistant .bgbot-assistant-tts-play,
.gp-assistant .bgbot-assistant-tts-toggle,
.gp-assistant .bgbot-assistant-tts-voice,
.gp-assistant .bgbot-assistant-tts-speed {
  min-height: 1.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.68rem;
}

.gp-assistant .bgbot-assistant-tts-play,
.gp-assistant .bgbot-assistant-tts-toggle,
.gp-assistant .bgbot-assistant-tts-voice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.32rem 0.48rem;
  cursor: pointer;
}

.gp-assistant .bgbot-assistant-tts-speed {
  padding: 0.32rem 0.38rem;
}

.gp-assistant .bgbot-assistant-tts-toggle.is-on {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--text);
}

.gp-assistant .bgbot-assistant-tts-play .ds-mso,
.gp-assistant .bgbot-assistant-tts-toggle .ds-mso,
.gp-assistant .bgbot-assistant-tts-voice .ds-mso {
  font-size: 0.95rem;
}

.gp-assistant-chat__actions {
  flex-wrap: wrap;
}

.gp-assistant-chat__send {
  flex: 1 1 8rem;
}

.gp-assistant-chat__new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
}

.gp-assistant-chat__new[hidden] {
  display: none;
}

.gp-assistant-chat__new:hover {
  background: var(--surface-3);
  color: var(--text);
}

/* ---- Quick Actions ---- */
.gp-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gp-quick-action {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.gp-quick-action:hover {
  background: var(--surface-2);
}

.gp-quick-action .ds-mso {
  font-size: 1.1rem;
  color: var(--primary);
}

/* ---- Premium Banner ---- */
.gp-premium-banner {
  background: linear-gradient(135deg, rgba(124, 127, 247, 0.12), rgba(236, 79, 156, 0.08));
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  text-align: center;
}

.gp-premium-banner__title {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.gp-premium-banner__desc {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.gp-premium-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.55rem 1.25rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--premium);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.gp-premium-banner__cta:hover {
  opacity: 0.88;
}

/* ---- Layout: Two-Column (Desktop) ---- */
.gp-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0;
}

.gp-content {
  min-width: 0;
}

.gp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* ---- Price History ---- */
.gp-price-history__label {
  margin: 1rem 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.gp-price-history {
  display: flex;
  gap: 0.3rem;
  align-items: flex-end;
  height: 6rem;
  padding: 0.5rem 0;
}

.gp-price-bar {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: rgba(124, 127, 247, 0.25);
  transition: background 0.15s;
}

.gp-price-bar--current {
  background: var(--primary);
}

.gp-price-range {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--text-dim);
  padding-top: 0.35rem;
}

.gp-price-range__min {
  color: var(--success);
  font-weight: 700;
}

/* ---- Footer ---- */
.gp-footer {
  padding: 1.5rem 0 0.5rem;
  text-align: center;
  font-size: 0.65rem;
  color: var(--text-dim);
}

.gp-footer a {
  color: var(--primary);
  text-decoration: none;
}

.gp-footer a:hover {
  text-decoration: underline;
}

/* ---- Gallery ---- */
.gp-gallery__hdr {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.gp-gallery__hdr-count {
  font-size: 0.65rem;
  color: var(--text-dim);
}

.gp-gallery__hdr-count .gp-gallery__hdr-community {
  display: none;
}

.gp-gallery__main-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  background: #12121a;
  overflow: hidden;
  cursor: zoom-in;
  margin-bottom: 0.65rem;
}

.gp-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.12s;
}


.gp-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.1rem;
  margin-bottom: 0.65rem;
}

.gp-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.gp-gallery__thumbs-nav {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.gp-gallery__tnav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}

.gp-gallery__tnav:hover {
  background: var(--surface-2);
  border-color: var(--primary);
}

.gp-gallery__thumb {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: #12121a;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s, opacity 0.15s;
  opacity: 0.65;
}

.gp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gp-gallery__thumb--active {
  border-color: var(--primary);
  opacity: 1;
}

.gp-gallery__thumb:hover {
  opacity: 1;
}

.gp-gallery__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gp-gallery__caption {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.gp-gallery__counter {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.gp-gallery__see-all {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.15s;
}

.gp-gallery__see-all:hover {
  background: var(--surface-2);
}

.gp-gallery__attr {
  margin-top: 0.75rem;
  font-size: 0.65rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.gp-gallery__attr--center {
  text-align: center;
}

/* ---- Lightbox ---- */
.gp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gp-lightbox[hidden] {
  display: none;
}

.gp-lightbox__img {
  max-width: 100%;
  max-height: calc(100dvh - 5rem);
  object-fit: contain;
  border-radius: var(--radius-xl);
  display: block;
}

.gp-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  padding: 0;
}

.gp-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.gp-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  padding: 0;
}

.gp-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.gp-lightbox__prev {
  left: 1rem;
}

.gp-lightbox__next {
  right: 1rem;
}

/* ================================================================
   Desktop (≥900px)
   ================================================================ */
@media (min-width: 900px) {
  .gp-body .app {
    padding-left: clamp(2rem, 4vw, 3.5rem);
    padding-right: clamp(2rem, 4vw, 3.5rem);
  }

  .gp-layout {
    flex-direction: row;
    gap: 2.5rem;
  }

  .gp-content {
    flex: 1;
    min-width: 0;
  }

  .gp-sidebar {
    flex: 0 0 23.75rem;
    position: sticky;
    top: calc(var(--top-bar-h, 4rem) + 1.5rem);
    align-self: flex-start;
    max-height: calc(100dvh - var(--top-bar-h, 4rem) - 3rem);
  }

  .gp-community-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gp-section {
    padding: 2rem 0;
  }

  .gp-gallery__hdr-community {
    display: inline;
  }

  .gp-gallery__main-wrap {
    aspect-ratio: 16 / 9;
  }

  .gp-gallery__thumb {
    width: 5.5rem;
    height: 5.5rem;
  }

  .gp-gallery__see-all {
    display: none;
  }

  .gp-gallery__attr {
    display: none;
  }

  /* Hero banner desktop */
  .gp-hero-banner {
    margin: 0 clamp(-3.5rem, -4vw, -2rem);
    padding: 0 clamp(2rem, 4vw, 3.5rem);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }

  .gp-hero {
    align-items: center;
    padding: 2rem 0 1.75rem;
    gap: 1.75rem;
  }

  .gp-hero__title {
    font-size: 2.5rem;
  }

  .gp-cover {
    width: 9rem;
    height: 9rem;
    flex-shrink: 0;
  }

  .gp-cover__name {
    font-size: 1rem;
  }

  .gp-hero__info {
    flex: 1;
  }

  /* Right column appears on desktop */
  .gp-hero__right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-shrink: 0;
    width: 13.5rem;
  }

  .gp-stats.gp-stats--hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .gp-stats--hero .gp-stat-card {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
    padding: 0.65rem 0.75rem;
    width: 100%;
  }

  .gp-stats--hero .gp-stat-card--active {
    background: rgba(124,127,247,0.18);
    border-color: rgba(124,127,247,0.35);
  }

  .gp-stats--hero .gp-stat-card__value {
    font-size: 1.35rem;
  }

  .gp-stats--hero .gp-stat-card__label,
  .gp-stats--hero .gp-stat-card__sub {
    font-size: 0.55rem;
  }

  /* Hide mobile-only elements on desktop */
  .gp-stats--mobile,
  .gp-hero-ctas--mobile {
    display: none;
  }

  .gp-layout {
    margin-top: 1.5rem;
  }
}

/* ================================================================
   Prices section — gp-prices-
   ================================================================ */

.gp-prices__loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.gp-prices__loading[hidden] {
  display: none;
}

.gp-prices__loading-icon {
  font-size: 1.1rem;
  animation: gp-spin 1.4s linear infinite;
}

@keyframes gp-spin {
  to { transform: rotate(360deg); }
}

.gp-prices__not-found {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  padding: 0.25rem 0;
}

.gp-prices__unavailable {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  padding: 0.25rem 0;
}

.gp-prices__unavailable[hidden] {
  display: none;
}

.gp-prices__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gp-prices__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gp-prices__region-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.gp-prices__offer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.gp-prices__offers-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.35rem 0 0.6rem;
}

.gp-prices__list-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.gp-prices__list-item--link {
  text-decoration: none;
  border-radius: var(--radius-md, 0.375rem);
  padding: 0.45rem 0.5rem;
  margin: 0 -0.5rem;
  min-height: 2.9rem;
  transition: background 0.12s, border-color 0.12s;
}

.gp-prices__list-item--link:hover,
.gp-prices__list-item--link:focus-visible {
  background: var(--surface-2, rgba(255,255,255,0.06));
}

.gp-prices__list-item--link .gp-prices__price {
  color: var(--text-primary, #fff);
}

.gp-prices__meta--dim {
  opacity: 0.6;
  margin-right: auto;
}

.gp-prices__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary, #fff);
  line-height: 1;
  margin-left: auto;
  white-space: nowrap;
}

.gp-prices__meta {
  font-size: 0.75rem;
  color: var(--text-dim);
  align-self: center;
}

.gp-prices__store {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1 1 auto;
}

.gp-prices__store-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 1.7rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.375rem;
  background: var(--surface-3, rgba(255,255,255,0.08));
  color: var(--text-muted);
  font-size: 1rem;
}

.gp-prices__store-logo {
  flex: 0 0 1.7rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.375rem;
  object-fit: contain;
}

.gp-prices__store-icon--amazon {
  background: #ff9900;
  color: #111827;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

.gp-prices__store-name {
  overflow: hidden;
  color: var(--text-primary, #fff);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gp-prices__stock {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15em 0.45em;
  border-radius: 0.25rem;
  white-space: nowrap;
}

.gp-prices__stock--y {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.gp-prices__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent, #7c3aed);
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--accent, #7c3aed);
  border-radius: 0.375rem;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.gp-prices__cta:hover {
  background: var(--accent, #7c3aed);
  color: #fff;
}

.gp-prices__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex: 0 0 auto;
  min-width: 5.7rem;
  padding: 0.38rem 0.65rem;
  border-radius: var(--radius-md, 0.375rem);
  background: var(--primary, var(--accent, #7c3aed));
  color: var(--primary-btn-text, #fff);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translateX(0.25rem);
  transition: opacity 0.14s, transform 0.14s, background 0.14s;
  white-space: nowrap;
}

.gp-prices__buy .ds-mso {
  font-size: 0.95rem;
}

.gp-prices__list-item--link:hover .gp-prices__buy,
.gp-prices__list-item--link:focus-visible .gp-prices__buy {
  opacity: 1;
  transform: translateX(0);
}

@media (hover: none) {
  .gp-prices__buy {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  .gp-prices__list-item {
    flex-wrap: wrap;
  }

  .gp-prices__store {
    flex-basis: calc(100% - 6.5rem);
  }

  .gp-prices__price {
    margin-left: 0;
  }

  .gp-prices__buy {
    margin-left: auto;
  }
}

/* ---- @mention dropdown (shared with bgbot.css pattern) ---- */
/* bgbot-mention-* classes are used by bgbot-mention.js on game and collection pages */
.bgbot-mention-dropdown {
  position: fixed;
  z-index: 9999;
  background: var(--ds-surface-container-high, #1e1e1e);
  border: 1px solid var(--border-2);
  border-radius: var(--ds-radius-md, 12px);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  min-width: 240px;
  max-width: 320px;
  overflow: hidden;
}
.bgbot-mention-dropdown.hidden { display: none; }

.bgbot-mention-option {
  display: flex;
  align-items: center;
  gap: .625rem;
  width: 100%;
  background: transparent;
  border: none;
  padding: .625rem .875rem;
  text-align: left;
  cursor: pointer;
  transition: background .1s;
  color: var(--ds-on-surface);
  font-size: .875rem;
}
.bgbot-mention-option:hover,
.bgbot-mention-option.bgbot-dd-active { background: var(--ds-surface-container-highest, rgba(255,255,255,.1)); }

.bgbot-mention-option__img {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.bgbot-mention-option__img--ph {
  background: var(--ds-surface-container-high);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--ds-on-surface-variant);
}

/* Sidebar Rules Assistant Attachment Controls */
.gp-assistant-chat__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.12s, color 0.12s;
}
.gp-assistant-chat__icon-btn:hover {
  background: var(--surface-3);
  color: var(--text);
}
.gp-assistant-chat__icon-btn .ds-mso {
  font-size: 1.15rem;
}

.gp-assistant-chat__attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.gp-assistant-chat__attachments:empty {
  display: none;
}

.gp-assistant-chat__attachments .bgbot-attachment {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.25rem 0.5rem 0.25rem 0.25rem;
  font-size: 0.68rem;
  color: var(--text-muted);
}
.gp-assistant-chat__attachments .bgbot-attachment img {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.gp-assistant-chat__attachments .bgbot-attachment button {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dim);
  padding: 0;
  margin-left: auto;
}
.gp-assistant-chat__attachments .bgbot-attachment button .ds-mso {
  font-size: 0.85rem;
}

