/* Native Hero Account launcher.
   Account state remains in the DOM for runtime synchronization,
   but visual state is represented by the status dot. */

body.theater-mode .otl-account-launcher {
  display: none !important;
}

.hero-card .otl-account-launcher {
  position: absolute;
  z-index: 4;
  top: 20px !important;
  right: 24px !important;
  display: inline-flex;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 0 !important;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 999px;
  color: #e5e7eb;
  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.84),
      rgba(2, 6, 23, 0.72)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 10px 28px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hero-card .otl-account-launcher:hover {
  border-color: rgba(147, 197, 253, 0.6);
  background: rgba(15, 23, 42, 0.92);
}

.hero-card .otl-account-launcher-label {
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transform: none;
}

.hero-card .otl-account-launcher-label svg {
  display: block;
  width: 22px;
  height: 22px;
  transform: translate(-1.5px, -0.5px);
}



@media (max-width: 680px) {
  .hero-card .otl-account-launcher {
    top: 14px !important;
    right: 14px !important;
    margin-top: 0 !important;
  }
}
