.info-link {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: var(--text-lg);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.info-link:hover {
  opacity: 1;
  color: var(--accent);
  border-color: var(--accent);
  background: var(--bg-elevated);
  box-shadow: 0 4px 12px rgba(var(--user-accent-rgb), 0.2);
  transform: scale(1.05);
}

.info-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .info-link {
    width: 40px;
    height: 40px;
    bottom: var(--space-md);
    right: var(--space-md);
    font-size: var(--text-base);
  }
}
