/* =============================================
   GAMEBIOV1 - CSS Perfil Público
   Totalmente responsivo: 360px → Desktop
   ============================================= */

/* ---- Página ---- */
.profile-page {
  padding-top: 0;
  padding-bottom: 1rem;
}

/* ---- Banner ---- */
.profile-banner {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.profile-banner--placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #0f0f2e, #1a1a3e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.3;
}

/* ---- Wrapper central ---- */
.profile-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

/* ---- Cabeçalho ---- */
/* ---- Cabeçalho ---- */
.profile-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}

/* ---- Avatar com dot ---- */
.profile-avatar-wrap {
  flex-shrink: 0;
  position: relative;
  margin-top: -55px;
}
.profile-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--bg-main);
  object-fit: cover;
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}
.profile-avatar__dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--bg-main);
}
.avatar-dot--active {
  background: #22c55e;
  animation: pulse 1.5s infinite;
}
.avatar-dot--recent {
  background: #22c55e;
}
.avatar-dot--away {
  background: #f59e0b;
}
.avatar-dot--offline {
  background: #4b5563;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
  }
}

/* ---- Info ao lado do avatar ---- */
.profile-head__info {
  flex: 1;
  padding-top: 0;
  min-width: 0;
}
.profile-head__namerow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}

/* ---- Botão seguir ---- */
.btn-follow {
  min-width: 90px;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 0.82rem;
  padding: 0.35rem 0.9rem;
}
.follow-form {
  display: inline-flex;
}
.btn-follow--following {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-follow--following:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: var(--danger);
  color: var(--danger);
  opacity: 1;
}

/* ---- Nome e info ---- */
.profile-name {
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.profile-verified {
  font-size: 1rem;
}
.profile-username {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.profile-tagline {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
}
.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.profile-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---- Stats bar ---- */
.profile-stats-bar {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
}
.profile-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  border-right: 1px solid var(--border);
  gap: 0.15rem;
}
.profile-stat:last-child {
  border-right: none;
}
.profile-stat__value {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.profile-stat__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.profile-stat--status .profile-stat__dot {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.profile-stats__online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.profile-stats_online--active .profile-stats_online-dot {
  background: #22c55e;
  animation: pulse 1.5s infinite;
}
.profile-stats_online--recent .profile-stats_online-dot {
  background: #22c55e;
}
.profile-stats_online--away .profile-stats_online-dot {
  background: #f59e0b;
}
.profile-stats_online--offline .profile-stats_online-dot {
  background: #4b5563;
}
.profile-stats__online--active {
  color: #22c55e;
}
.profile-stats__online--recent {
  color: #22c55e;
}
.profile-stats__online--away {
  color: #f59e0b;
}
.profile-stats__online--offline {
  color: var(--text-muted);
}

/* ---- Info (bio) ---- */
.profile-info {
  margin-bottom: 1.25rem;
}
.profile-bio {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---- Seções ---- */
.profile-section {
  margin-bottom: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  position: relative;
}
/* Primeira seção não tem linha acima */
.profile-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.profile-section__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---- Links públicos ---- */
.pub-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pub-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  text-decoration: none;
}
.pub-link:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--primary);
  transform: translateX(4px);
  opacity: 1;
  color: var(--text);
}
.pub-link__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.pub-link__title {
  flex: 1;
}
.pub-link__arrow {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ---- Plataformas ---- */
.pub-platforms {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pub-platform {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
}
.pub-platform:hover {
  border-color: var(--primary);
  opacity: 1;
  color: var(--text);
}

/* Ícone Font Awesome da plataforma */
.pub-platform__icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  color: #fff;
}

/* Cores de fundo por plataforma */
.pub-platform__icon--xbox {
  background: #107c10;
}
.pub-platform__icon--psn {
  background: #003087;
}
.pub-platform__icon--steam {
  background: #1b2838;
}
.pub-platform__icon--nintendo {
  background: #e4000f;
}
.pub-platform__icon--epicgames {
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pub-platform__icon--battlenet {
  background: #148eff;
}
.pub-platform__icon--roblox {
  background: #cc0000;
}
.pub-platform__icon--valorant {
  background: #ff4655;
}
.pub-platform__icon--default {
  background: rgba(255, 255, 255, 0.1);
}

.pub-platform__name {
  font-weight: 700;
  flex: 1;
}
.pub-platform__user {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-left: auto;
}

/* Dot antigo — mantido por compatibilidade mas oculto */
.pub-platform__dot {
  display: none;
}

/* ---- Jogos Recentes ---- */
.pub-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.pub-game {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card2);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.pub-game:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow:
    0 0 0 2px var(--glow-color, var(--border)),
    0 0 20px var(--glow-color, transparent);
}
.pub-game__cover {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pub-game__placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--bg-card2);
}
.pub-game__info {
  padding: 0.5rem 0.6rem;
}
.pub-game__name {
  font-size: 0.78rem;
  font-weight: 700;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pub-game__plat {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ---- Dica ---- */
.profile-tip {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* ---- Tablet: 768px ---- */
@media (max-width: 768px) {
  .profile-wrap {
    padding: 0 1.25rem 2.5rem;
  }

  .profile-banner,
  .profile-banner--placeholder {
    height: 220px;
  }
  .profile-avatar {
    width: 82px;
    height: 82px;
    font-size: 2.2rem;
  }
  .profile-avatar-wrap {
    margin-top: -47px;
  }
  .profile-name {
    font-size: 1.2rem;
  }
  .profile-stat__value {
    font-size: 1.1rem;
  }
  .pub-games {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }
}

/* ---- Mobile Grande: 480-600px ---- */
@media (max-width: 600px) {
  .profile-wrap {
    padding: 0 1rem 2rem;
  }

  .profile-banner,
  .profile-banner--placeholder {
    height: 180px;
  }

  .profile-avatar {
    width: 72px;
    height: 72px;
    font-size: 2rem;
  }
  .profile-avatar-wrap {
    margin-top: -36px;
  }

  .profile-banner,
  .profile-banner--placeholder {
    height: 130px;
  }
  .profile-avatar {
    width: 72px;
    height: 72px;
  }
  .profile-avatar-wrap {
    margin-top: -40px;
  }
  .profile-name {
    font-size: 1.1rem;
  }
  .profile-stat {
    padding: 0.6rem 0.25rem;
  }
  .profile-stat__value {
    font-size: 1rem;
  }
  .profile-stat__label {
    font-size: 0.6rem;
  }
  .profile-tagline {
    font-size: 0.85rem;
  }
  .profile-bio {
    font-size: 0.9rem;
  }

  /* Links: padding menor */
  .pub-link {
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
    gap: 0.6rem;
  }
  .pub-link__arrow {
    display: none;
  }

  /* Plataformas */
  .pub-platform {
    padding: 0.55rem 0.85rem;
    font-size: 0.84rem;
  }
  .pub-platform__icon {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
    border-radius: 5px;
  }
  .pub-platform__user {
    font-size: 0.75rem;
  }

  /* Jogos: 2 colunas */
  .pub-games {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  /* Seção título */
  .profile-section__title {
    font-size: 0.72rem;
    margin-bottom: 0.6rem;
  }

  /* Twitch widget */
  .twitch-widget__info {
    padding: 0.75rem;
  }
  .twitch-widget__title {
    font-size: 0.8rem;
  }
  .twitch-widget__cta {
    font-size: 0.78rem;
    padding: 0.45rem;
  }
}

/* ---- Mobile Pequeno: 360-480px ---- */
@media (max-width: 480px) {
  .profile-wrap {
    padding: 0 0.75rem 1.5rem;
  }

  .profile-banner,
  .profile-banner--placeholder {
    height: 110px;
  }

  .profile-avatar {
    width: 62px;
    height: 62px;
    font-size: 1.8rem;
    border-width: 2px;
  }
  .profile-avatar-wrap {
    margin-top: -30px;
  }

  .profile-name {
    font-size: 1.05rem;
  }
  .profile-username {
    font-size: 0.78rem;
  }
  .profile-tagline {
    font-size: 0.82rem;
  }
  .profile-bio {
    font-size: 0.85rem;
  }
  .profile-meta {
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  /* Botão seguir menor */
  .btn-follow {
    min-width: 80px;
    font-size: 0.82rem;
    padding: 0.4rem 0.8rem;
  }

  /* Links */
  .pub-link {
    padding: 0.6rem 0.75rem;
    font-size: 0.84rem;
    gap: 0.5rem;
  }
  .pub-link__icon {
    font-size: 1rem;
  }

  /* Plataformas */
  .pub-platform {
    padding: 0.5rem 0.75rem;
    gap: 0.6rem;
  }
  .pub-platform__icon {
    width: 22px;
    height: 22px;
    font-size: 0.78rem;
  }
  .pub-platform__name {
    font-size: 0.82rem;
  }
  .pub-platform__user {
    font-size: 0.7rem;
  }

  /* Jogos: ainda 2 colunas mas menores */
  .pub-games {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
  .pub-game__name {
    font-size: 0.72rem;
  }

  /* Seção título */
  .profile-section {
    margin-bottom: 1.1rem;
  }
  .profile-section__title {
    font-size: 0.68rem;
    margin-bottom: 0.5rem;
  }

  /* Twitch widget */
  .twitch-widget__name {
    font-size: 0.82rem;
  }
  .twitch-widget__avatar {
    width: 30px;
    height: 30px;
  }
  .twitch-widget__tags {
    gap: 0.3rem;
  }
  .twitch-widget__tag {
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
  }
  .twitch-widget__cta {
    font-size: 0.75rem;
  }
}

/* ---- Muito pequeno: abaixo de 360px ---- */
@media (max-width: 360px) {
  .profile-wrap {
    padding: 0 0.5rem 1.5rem;
  }
  .profile-name {
    font-size: 0.95rem;
  }
  .pub-games {
    grid-template-columns: repeat(2, 1fr);
  }
  .pub-link {
    padding: 0.55rem 0.65rem;
  }
}
/* Compartilhar */
.profile-share {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}
.profile-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.profile-share__btn:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--accent);
  color: var(--accent);
}
/* Ícones ao lado do nome */
.profile-name__icon-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.2rem 0.3rem;
  cursor: pointer;
  transition:
    color 0.2s,
    transform 0.2s;
  vertical-align: middle;
  line-height: 1;
}
.profile-name__icon-btn:hover {
  color: var(--accent);
  transform: scale(1.2);
}

/* ============================================================
   LEGIBILIDADE DESKTOP — ajustes de fonte apenas
   ============================================================ */

/* Perfil geral */
.profile-name {
  font-size: 1.45rem;
}
.profile-tagline {
  font-size: 0.97rem;
  color: var(--text-dim);
}
.profile-bio {
  font-size: 0.97rem;
  line-height: 1.7;
}
.profile-username {
  font-size: 0.88rem;
}
.profile-meta {
  font-size: 0.83rem;
}

/* Stats bar */
.profile-stat__value {
  font-size: 1.25rem;
  font-weight: 900;
}
.profile-stat__label {
  font-size: 0.68rem;
  color: var(--text-dim);
}

/* Seção título */
.profile-section__title {
  font-size: 0.83rem;
  color: var(--text-dim);
}

/* Links */
.pub-link {
  font-size: 0.97rem;
}
.pub-platform {
  font-size: 0.92rem;
}
.pub-platform__name {
  font-size: 0.92rem;
}
.pub-platform__user {
  font-size: 0.83rem;
  color: var(--text-dim);
}

/* Jogos recentes */
.pub-game__name {
  font-size: 0.82rem;
}
.pub-game__plat {
  font-size: 0.73rem;
}

/* PSN widget */
.psn-widget__game-name {
  font-size: 0.9rem;
  font-weight: 700;
}
.psn-widget__game-platform {
  font-size: 0.77rem;
  color: var(--text-dim);
}
.psn-widget__summary-val {
  font-size: 1.15rem;
  font-weight: 800;
}
.psn-widget__summary-lbl {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Xbox widget */
.xbox-widget__game-name {
  font-size: 0.9rem;
  font-weight: 700;
}
.xbox-widget__game-platform {
  font-size: 0.77rem;
  color: var(--text-dim);
}

/* Steam widget */
.steam-widget__game-name {
  font-size: 0.9rem;
  font-weight: 700;
}
.steam-widget__game-time {
  font-size: 0.79rem;
  color: var(--text-dim);
}
.steam-widget__name {
  font-size: 0.97rem;
  font-weight: 700;
}

/* ---- Responsivo: reduzir em mobile ---- */
@media (max-width: 600px) {
  .profile-name {
    font-size: 1.1rem;
  }
  .profile-tagline {
    font-size: 0.85rem;
  }
  .profile-bio {
    font-size: 0.9rem;
  }
  .pub-link {
    font-size: 0.88rem;
  }
  .pub-platform {
    font-size: 0.84rem;
  }
  .profile-section__title {
    font-size: 0.72rem;
  }
}
@media (max-width: 480px) {
  .profile-name {
    font-size: 1.05rem;
  }
  .profile-tagline {
    font-size: 0.82rem;
  }
  .profile-bio {
    font-size: 0.85rem;
  }
  .pub-link {
    font-size: 0.84rem;
  }
  .pub-platform__name {
    font-size: 0.82rem;
  }
  .profile-section__title {
    font-size: 0.68rem;
  }
}

/* ============================================================
   ATIVIDADE RECENTE
   ============================================================ */
.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity-feed--loading {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 1rem 0;
}

.activity-feed__loader {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.2s;
}

.activity-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.activity-item__icon {
  font-size: 1.15rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.activity-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.activity-item__text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}

.activity-item__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-item__source {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.activity-item__source--psn {
  background: rgba(0, 112, 209, 0.15);
  color: #0070d1;
  border: 1px solid rgba(0, 112, 209, 0.25);
}

.activity-item__source--xbox {
  background: rgba(16, 124, 16, 0.15);
  color: #4ade80;
  border: 1px solid rgba(16, 124, 16, 0.3);
}

.activity-item__source--twitch {
  background: rgba(145, 70, 255, 0.15);
  color: #9146ff;
  border: 1px solid rgba(145, 70, 255, 0.25);
}

@media (max-width: 480px) {
  .activity-item {
    padding: 0.55rem 0.75rem;
    gap: 0.6rem;
  }
  .activity-item__text {
    font-size: 0.82rem;
  }
  .activity-item__sub {
    font-size: 0.7rem;
  }
  .activity-item__source {
    font-size: 0.62rem;
    padding: 0.15rem 0.4rem;
  }
}

/* ================================================
   GAMEBIO — ADIÇÕES: Game Cards Premium + Features
   ================================================ */

/* ---- Banner wrap ---- */
.profile-banner-wrap {
  position: relative;
  line-height: 0;
  display: block;
}
.profile-banner-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent, #6366f1),
    transparent
  );
  z-index: 10;
  pointer-events: none;
}

/* ---- Visitantes visual ---- */
.profile-stat--views .profile-stat__value {
  color: var(--accent, #6366f1);
}

/* ---- Game Cards Premium ---- */
.pub-game__cover-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 100%;
  background: var(--bg-card2);
}
.pub-game__cover-wrap .pub-game__cover,
.pub-game__cover-wrap .pub-game__placeholder {
  transition: transform 0.35s ease;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.pub-game:hover .pub-game__cover-wrap .pub-game__cover,
.pub-game:hover .pub-game__cover-wrap .pub-game__placeholder {
  transform: scale(1.04);
}
.pub-game__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.5rem;
  gap: 0.3rem;
  pointer-events: none;
}
.pub-game:hover .pub-game__overlay {
  opacity: 1;
}

.pub-game__plat-badge {
  display: none;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 20px;
  border: 1px solid transparent;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pub-game__platinum {
  display: none;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}
.pub-game__glow {
  display: none;
}

.pub-game__progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
  padding: 0 0.5rem 0.5rem;
}
.pub-game__progress-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.pub-game__progress-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--accent, #6366f1);
  transition: width 0.6s ease;
}
.pub-game__progress-pct {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  min-width: 2.5ch;
  text-align: right;
}

/* ---- Badge 100% completo ---- */
.pub-game--completed .pub-game__progress-fill {
  background: linear-gradient(90deg, #ffd700, #ff9500) !important;
}

/* ---- Conquistas Recentes ---- */
.recent-trophies {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.recent-trophy {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  background: var(--bg-card2);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.recent-trophy:hover {
  border-color: var(--accent, #6366f1);
}
.recent-trophy__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.recent-trophy__icon--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border);
  font-size: 1.2rem;
  border-radius: 8px;
}
.recent-trophy__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.recent-trophy__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recent-trophy__desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recent-trophy__source {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.recent-trophy__source--psn {
  background: rgba(0, 112, 255, 0.15);
  color: #0070ff;
}
.recent-trophy__source--xbox {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
