.overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 36px;
  pointer-events: auto;
}

.brand {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.bottom-bar {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 36px 36px;
  pointer-events: auto;
  gap: 24px;
}

.credit {
  position: fixed;
  right: 12px;
  bottom: 8px;
  z-index: 10;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  pointer-events: auto;
}

.credit:hover {
  color: rgba(255, 255, 255, 0.7);
}
