/* Guild game hub — layout A (corner profile + center stack) */

.guild-hub {
  position: relative;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 45%, var(--stage-glow) 0%, transparent 70%),
    var(--stage);
  color: var(--ink);
}

.guild-hub__theme {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.profile-zone {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
  max-width: min(16rem, calc(100% - 10rem));
}

.profile-zone__avatar {
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: var(--chip);
  flex: 0 0 auto;
}

.profile-zone__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.profile-zone__name {
  font-weight: 700;
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-zone__channel {
  color: var(--muted);
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guild-hub__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 5rem;
}

.guild-hub__title {
  margin: 0 0 1rem;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
}

.guild-hub__games {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.guild-hub__game-link {
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.1rem;
}

.guild-hub__game-link:hover {
  color: var(--accent);
}

.guild-hub__coming-soon {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 22rem;
  line-height: 1.4;
}
