/* ── Auth widget — shared across all pages ─────────────────────────────── */
#auth-widget { position: relative; }

/* Fixed fallback for game pages */
.auth-widget--fixed {
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 1000;
}

/* Avatar button */
.aw-avatar-btn {
  background: none;
  border: 2px solid transparent;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  transition: border-color 0.15s;
}
.aw-avatar-btn:hover { border-color: #a855f7; }

.aw-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  display: flex; align-items: center; justify-content: center;
}
.aw-avatar--initial {
  background: #7c3aed;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Sign-in button */
.aw-signin-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #e8e9f5;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.aw-signin-btn:hover { background: rgba(255,255,255,0.15); }

/* Dropdown */
.aw-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: #1a1b30;
  border: 1px solid #2e2f52;
  border-radius: 12px;
  min-width: 180px;
  z-index: 1001;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  overflow: hidden;
}

.aw-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid #252640;
}
.aw-name { color: #e8e9f5; font-weight: 600; font-size: 0.875rem; }

.aw-signout {
  display: block;
  padding: 10px 16px;
  color: #7778a0;
  text-decoration: none;
  font-size: 0.875rem;
}
.aw-signout:hover { background: #252640; color: #e8e9f5; }

.aw-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #e8e9f5;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}
.aw-provider:hover { background: #252640; }
.aw-provider--disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.aw-soon {
  font-size: 0.7em;
  background: #252640;
  color: #7778a0;
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 2px;
}
