.games-shared-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  background: #211440;
  border-bottom: 1px solid #3a2568;
  color: #f4f1fb;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
}
.games-shared-header a {
  color: #f4f1fb;
  text-decoration: none;
}
.games-shared-header a:hover {
  color: #f5b942;
}
.games-shared-header__back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.games-shared-header__logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: block;
}
.games-shared-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.games-shared-header__user {
  white-space: nowrap;
  color: #b6a8d9;
}
.games-shared-header__logout {
  background: transparent;
  color: #f4f1fb;
  border: 1px solid #6b7280;
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 13px;
}
.games-shared-header__logout:hover {
  background: #3a2568;
  border-color: #8b5cf6;
}
.games-shared-header__logout:disabled {
  opacity: 0.6;
  cursor: default;
}
