/* ── Games hero ── */
.games-hero {
  position: relative; padding: 120px 0 60px; overflow: hidden; text-align: center;
}
.games-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 40%, rgba(124,109,250,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 60%, rgba(250,109,138,0.08) 0%, transparent 60%);
}
.games-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
  opacity: 0.3;
}
.games-hero__inner { position: relative; }
.games-hero__title {
  font-size: clamp(38px, 6vw, 66px); font-weight: 900;
  line-height: 1.07; letter-spacing: -0.03em; margin: 14px 0 20px;
}
.games-hero__sub {
  color: var(--text-muted); font-size: 16px; max-width: 540px;
  margin: 0 auto 32px; line-height: 1.7;
}
.games-hero__sub strong { color: var(--green); }

/* Quick nav chips */
.games-hero__chips {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; padding: 0 16px;
}
.game-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 999px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.game-chip:hover { border-color: var(--accent); color: var(--accent); background: rgba(124,109,250,0.08); }
.game-chip__icon { font-size: 14px; }

/* ── How it works strip ── */
.games-how {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg2); padding: 20px 0;
}
.games-how__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.games-how__step {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted); font-weight: 500;
}
.games-how__num {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--accent); background: rgba(124,109,250,0.1);
  border-radius: 999px; padding: 3px 8px;
}
.games-how__arrow { color: var(--text-dim); font-size: 16px; }

/* ── Skeleton ── */
.games-skeleton {
  height: 120px; border-radius: 18px; margin-bottom: 12px;
  background: linear-gradient(90deg, var(--bg2) 25%, var(--bg3) 50%, var(--bg2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ── Game card ── */
.game-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; margin-bottom: 12px; overflow: hidden;
  transition: border-color 0.25s;
}
.game-card:hover { border-color: var(--border2); }
.game-card.open { border-color: var(--border2); }

.game-card__header {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer; user-select: none;
  transition: background 0.2s;
}
.game-card__header:hover { background: rgba(255,255,255,0.02); }

.game-card__icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0; border: 1px solid var(--border2);
}
.game-card__meta { flex: 1; min-width: 0; }
.game-card__name { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.game-card__req {
  font-size: 12px; color: var(--text-muted); font-weight: 500;
}

.game-card__right { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }
.game-card__from {
  text-align: right;
}
.game-card__from-label { font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.game-card__from-price { font-size: 18px; font-weight: 900; color: var(--green); }
.game-card__chevron {
  color: var(--text-dim); font-size: 18px; transition: transform 0.3s;
  width: 24px; text-align: center;
}
.game-card.open .game-card__chevron { transform: rotate(180deg); }

/* ── Expanded body ── */
.game-card__body {
  border-top: 1px solid var(--border); padding: 24px;
  display: none; flex-direction: column; gap: 20px;
}
.game-card.open .game-card__body { display: flex; }

/* ── Tier grid ── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

/* ── Price tile ── */
.price-tile {
  position: relative;
  background: var(--bg3); border: 1.5px solid var(--border2);
  border-radius: 14px; padding: 14px 12px;
  display: flex; flex-direction: column; gap: 3px;
  cursor: pointer; transition: all 0.2s cubic-bezier(.22,1,.36,1);
  overflow: hidden; user-select: none;
}
.price-tile:hover {
  border-color: var(--accent); transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.price-tile.selected {
  border-color: var(--accent); background: rgba(124,109,250,0.08);
  box-shadow: 0 0 0 3px rgba(124,109,250,0.2), 0 8px 24px rgba(0,0,0,0.25);
}
.price-tile--best { border-color: var(--green); background: rgba(74,222,128,0.05); }
.price-tile--best:hover,
.price-tile--best.selected {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2), 0 8px 24px rgba(0,0,0,0.25);
}

/* Badges */
.tile-badge {
  position: absolute; top: 8px; right: 8px;
  font-size: 9px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em; padding: 2px 7px; border-radius: 999px;
}
.tile-badge--best { background: var(--green); color: var(--bg); }
.tile-badge--disc { background: var(--accent); color: #fff; }

/* Tile content */
.tile-unit {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 2px;
}
.tile-amount {
  font-size: 19px; font-weight: 900; letter-spacing: -0.02em; color: var(--text);
  display: flex; align-items: baseline; gap: 3px;
}
.tile-plus { font-size: 11px; font-weight: 800; color: var(--green); }
.tile-bonus {
  font-size: 10px; font-weight: 700; color: var(--green);
  background: rgba(74,222,128,0.1); border-radius: 999px;
  padding: 1px 7px; display: inline-block; width: fit-content;
}
.tile-orig {
  font-size: 11px; color: var(--text-dim); text-decoration: line-through; margin-top: 4px;
}
.tile-price {
  font-size: 15px; font-weight: 900; color: var(--green); margin-top: 1px;
}

/* ── Extras section ── */
.extras-section { margin-top: 0; }
.extras-title {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.extras-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px;
}
.extra-tile {
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  transition: border-color 0.2s;
}
.extra-tile:hover { border-color: var(--border2); }
.extra-tile__label { font-size: 12px; font-weight: 600; color: var(--text); flex: 1; }
.extra-tile__price-row { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.extra-tile__orig { font-size: 11px; color: var(--text-dim); text-decoration: line-through; }
.extra-tile__price { font-size: 13px; font-weight: 800; color: var(--green); }
.extra-tile__disc {
  font-size: 10px; font-weight: 800; background: var(--accent);
  color: #fff; padding: 1px 6px; border-radius: 999px;
}

/* Price section title (Fortnite grouped) */
.price-section__title {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); margin-bottom: 10px;
  padding-bottom: 7px; border-bottom: 1px solid rgba(124,109,250,0.15);
}

/* ── Delivery badge on card header ── */
.game-card__delivery-badge {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 999px; padding: 4px 10px; white-space: nowrap;
}

/* ── Note & Warning ── */
.game-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(124,109,250,0.06); border: 1px solid rgba(124,109,250,0.15);
  border-radius: 10px; padding: 12px 14px; margin-bottom: 16px;
  font-size: 13px; color: var(--text-muted); line-height: 1.6;
}
.game-note__icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }

.game-warning {
  background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.2);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 16px;
  font-size: 12px; font-weight: 600; color: var(--yellow);
}

/* ── Price sections (Fortnite groups) ── */
.price-section { margin-bottom: 20px; }
.price-section__title {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent);
  margin-bottom: 8px; padding-bottom: 6px;
  border-bottom: 1px solid rgba(124,109,250,0.2);
}

/* ── Order bar */
.game-order-bar {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.game-order-bar__note { font-size: 12px; color: var(--text-muted); }
.game-order-bar__note strong { color: var(--green); }
.game-order-selected { color: var(--accent); font-weight: 700; }

@media (max-width: 640px) {
  .game-card__header { padding: 16px; gap: 12px; }
  .game-card__body { padding: 16px; }
  .game-card__from { display: none; }
  .games-how__arrow { display: none; }
  .games-how__inner { flex-direction: column; gap: 10px; }
}
