/* Control buttons: language, audio, ticket */

#language-buttons {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 400;
}

#controls-left,
#controls-right {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

/* Shared sizing for ALL top controls */
.control-btn {
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  background: rgba(248, 250, 252, 0.1);
  border: 1px solid rgba(248, 250, 252, 0.3);
  color: rgba(248, 250, 252, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  background: rgba(248, 250, 252, 0.2);
  color: rgba(248, 250, 252, 0.9);
  border-color: rgba(248, 250, 252, 0.6);
}

.lang-btn {
  font-size: 0.325rem;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  font-family: 'IBM Plex Mono', 'Inter', system-ui, sans-serif;
  font-weight: 600;
}

.lang-btn.compact {
  font-size: 0.3rem;
  font-weight: 500;
}

.lang-btn.active {
  background: rgba(248, 250, 252, 0.3);
  color: #ffffff;
  border-color: rgba(248, 250, 252, 0.9);
}

#audio-btn {
  font-size: 0.4rem;
}

#audio-btn.playing {
  background: rgba(248, 250, 252, 0.3);
  color: #ffffff;
  border-color: rgba(248, 250, 252, 0.9);
}

#tix-top-btn {
  font-size: 0.5rem;
}
