body {
  margin: 0;
  overflow: hidden;
}

.a-enter-vr,
.a-enter-vr-button,
a-entervr,
[name="Enter VR"] {
  display: none !important;
  visibility:
    hidden !important;
  opacity: 0 !important;
}

body.no-license #scene-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

#edition-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 30px;
  box-sizing: border-box;
  z-index: 9999;
  transition: opacity 0.5s ease;
  opacity: 0.95;
  user-select: none;
}
body.hide-cursor {
  cursor: none;
}
#edition-bar .left-content {
  display: flex;
  align-items: center;
  gap: 30px;
}
#edition-text {
  font-family: 'Courier New', Courier, monospace;
  font-size: 22px;
  color: #fff;
  letter-spacing: 2px;
  user-select: none;
}
#edition-info {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
  margin-right: 20px;
  user-select: none;
}
#error-text {
  font-family: 'Courier New', Courier, monospace;
  font-size: 24px;
  color: #ff3333;
  letter-spacing: 2px;
}
a-scene {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: saturate(1.1);
}
#ar-button {
  background: transparent;
  border: 1px solid #666;
  color: #666;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  padding: 8px 16px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 10px;
  border-radius: 5px;
  user-select: none;
  transition: color 0.2s, border-color 0.2s;
}
#ar-button:hover {
  border-color: #999;
  color: #999;
}
#edition-bar .right-content {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: opacity 0.5s ease;
}
#pinned-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: color 0.2s;
}
#pinned-label:hover {
  color: #999;
}
#pinned-checkbox {
  cursor: pointer;
  width: 24px;
  height: 24px;
  accent-color: transparent;
  border: 1px solid #666;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 5px;
  transition: border-color 0.2s;
}
#pinned-checkbox:hover {
  border-color: #999;
}
#pinned-checkbox:checked {
  background: rgba(102, 102, 102, 0.5);
}
.a-enter-vr {
  display: none !important;
}