.sponsor-sticker-wrapper {
  position: fixed;
  right: 20px;
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px; /* space between sticker and icon */
  z-index: 999;
  opacity: 0.9;
}

.sponsor-sticker-link {
  background-color: var(--base-color);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.sponsor-sticker-link:hover {
  background-color: hsl(var(--base-h), var(--base-s), calc(var(--base-l) - 10%));
}

.sponsor-sticker-text {
  display: inline-block;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticker-info-icon {
  cursor: pointer;
  font-size: 14px; /* adjust icon size */
}
