/* GLB Language Continuity — top Smart Suggestion banner (public surface) */
.glb-lang-suggestion-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10050;
  border-bottom: 1px solid rgba(0, 255, 204, 0.35);
  background: rgba(12, 12, 16, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.glb-banner-inside {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  max-width: 720px;
  margin: 0 auto;
  color: #fff;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}
.glb-banner-suggest-text {
  flex: 1;
  min-width: 0;
}
.glb-banner-buttons {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}
.glb-banner-yes {
  background: #00ffcc;
  color: #000;
  border: none;
  padding: 6px 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.85rem;
}
.glb-banner-no {
  background: transparent;
  color: #aaa;
  border: 1px solid #444;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.85rem;
}
body.glb-lang-banner-active {
  padding-top: 52px;
}
.glb-lang-change-mini {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #9aa8bc;
  background: transparent;
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
}
