@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  background-color: #121212; /* Fallback dark background */
}

/* Glassmorphism UI Container */
.ui-container {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: none; /* Hidden by default, shown when target found */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  /* Glass effect */
  background: rgba(20, 20, 25, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 16px 32px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease-in-out;
}

/* Branding/Info Text */
.ui-title {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
}

/* Instructional Banner */
.glass-banner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 24px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
}

/* A-Frame loading screen fix for dark theme */
.a-loader-title {
  color: #fff !important;
}
