:root {
  /* Theme Colors */
  --hm-color-primary-amber: #f5b51b;
  --hm-color-success-green: #10b981;
  --hm-color-error-red: #ef4444;
  --hm-color-info-blue: #38bdf8;
  
  /* Motion Constants */
  --hm-transition-speed-fast: 0.15s;
  --hm-transition-speed-normal: 0.3s;
  --hm-transition-speed-slow: 0.6s;
  --hm-transition-bezier: cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Interactive HUD States */
  --streak-intensity: 0;
}

.hm-game-mode-check-wrapper {
  position: absolute;
  top: 102px !important;
  right: 197px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 5px;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hm-game-mode-check-wrapper:hover {
  background: rgba(18, 30, 64, 0.08);
}

.hm-game-mode-check-wrapper i {
  color: #16213e;
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.hm-game-mode-check-wrapper p {
  color: #16213e;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

.hm-game-mode-check-wrapper.checking i {
  animation: hm-game-mode-pulse 1.1s infinite;
}

.hm-game-mode-available-alert {
  background: #101828;
  border: 0;
  color: #fff;
}

.hm-game-mode-join-btn {
  background: #f5b51b;
  border-color: #f5b51b;
  color: #111827;
  font-weight: 700;
}

