.ui-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  flex-direction: column;
  pointer-events: none;
}

.header-card {
  align-self: flex-start;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.5);
  padding: 16px;
  border-radius: 8px;
  pointer-events: auto;
}

.header-card h1 {
  font-weight: 900;
  font-size: 20px;
  margin: 0 0 4px 0;
}

.header-card p {
  margin: 0;
  font-size: 14px;
}

.controls {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}

.control-btn {
  pointer-events: auto;
  background: #ec4899;
  border: none;
  color: white;
  padding: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  background: #db2777;
}

.control-btn.active {
  background: #ec4899;
}

.control-btn.active:hover {
  background: #db2777;
}

.control-btn .icon {
  width: 24px;
  height: 24px;
}
